From d3ed64e8ee5a489ac658ecb5ef7582b00639deac Mon Sep 17 00:00:00 2001 From: sedusch Date: Tue, 16 Feb 2016 17:15:39 +0100 Subject: [PATCH 1/7] Add commandlets for installing, removing, getting and testing the Azure Enhanced Monitoring extension --- .../Commands.Compute.Test.csproj | 16 + .../ScenarioTests/AEMExtensionTests.cs | 41 + .../ScenarioTests/AEMExtensionTests.ps1 | 388 + .../TestAEMExtensionAdvancedLinux.json | 5757 ++++++++++++++ .../TestAEMExtensionAdvancedWindows.json | 6873 +++++++++++++++++ .../TestAEMExtensionBasicLinux.json | 5833 ++++++++++++++ .../TestAEMExtensionBasicWindows.json | 6737 ++++++++++++++++ .../Commands.Compute/Commands.Compute.csproj | 12 + .../Common/ConstantStringTypes.cs | 1 + .../Extension/AEM/AEMExtensionConstants.cs | 117 + .../Extension/AEM/AEMHelper.cs | 694 ++ .../Extension/AEM/AEMStringExtensions.cs | 27 + .../Extension/AEM/AEMTestResult.cs | 62 + .../Extension/AEM/AzureSLA.cs | 15 + .../Extension/AEM/ExtensionConfig.cs | 15 + .../Extension/AEM/GetAzureRmVMAEMExtension.cs | 145 + .../Extension/AEM/KeyValuePair.cs | 26 + .../Extension/AEM/PerformanceCounter.cs | 14 + .../AEM/RemoveAzureRmVMAEMExtension.cs | 117 + .../Extension/AEM/SetAzureRmVMAEMExtension.cs | 486 ++ .../AEM/TestAzureRmVMAEMExtension.cs | 492 ++ .../Properties/Resources.Designer.cs | 9 + .../Properties/Resources.resx | 4 + 23 files changed, 27881 insertions(+) create mode 100644 src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/AEMExtensionTests.cs create mode 100644 src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/AEMExtensionTests.ps1 create mode 100644 src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.AEMExtensionTests/TestAEMExtensionAdvancedLinux.json create mode 100644 src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.AEMExtensionTests/TestAEMExtensionAdvancedWindows.json create mode 100644 src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.AEMExtensionTests/TestAEMExtensionBasicLinux.json create mode 100644 src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.AEMExtensionTests/TestAEMExtensionBasicWindows.json create mode 100644 src/ResourceManager/Compute/Commands.Compute/Extension/AEM/AEMExtensionConstants.cs create mode 100644 src/ResourceManager/Compute/Commands.Compute/Extension/AEM/AEMHelper.cs create mode 100644 src/ResourceManager/Compute/Commands.Compute/Extension/AEM/AEMStringExtensions.cs create mode 100644 src/ResourceManager/Compute/Commands.Compute/Extension/AEM/AEMTestResult.cs create mode 100644 src/ResourceManager/Compute/Commands.Compute/Extension/AEM/AzureSLA.cs create mode 100644 src/ResourceManager/Compute/Commands.Compute/Extension/AEM/ExtensionConfig.cs create mode 100644 src/ResourceManager/Compute/Commands.Compute/Extension/AEM/GetAzureRmVMAEMExtension.cs create mode 100644 src/ResourceManager/Compute/Commands.Compute/Extension/AEM/KeyValuePair.cs create mode 100644 src/ResourceManager/Compute/Commands.Compute/Extension/AEM/PerformanceCounter.cs create mode 100644 src/ResourceManager/Compute/Commands.Compute/Extension/AEM/RemoveAzureRmVMAEMExtension.cs create mode 100644 src/ResourceManager/Compute/Commands.Compute/Extension/AEM/SetAzureRmVMAEMExtension.cs create mode 100644 src/ResourceManager/Compute/Commands.Compute/Extension/AEM/TestAzureRmVMAEMExtension.cs 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 fb7009a17fb5..35480278c336 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/Commands.Compute.Test.csproj +++ b/src/ResourceManager/Compute/Commands.Compute.Test/Commands.Compute.Test.csproj @@ -164,6 +164,7 @@ + @@ -219,6 +220,9 @@ Always + + Always + Always @@ -269,6 +273,18 @@ Always + + Always + + + Always + + + Always + + + Always + Always diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/AEMExtensionTests.cs b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/AEMExtensionTests.cs new file mode 100644 index 000000000000..981c8b0c7d0f --- /dev/null +++ b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/AEMExtensionTests.cs @@ -0,0 +1,41 @@ +using Microsoft.WindowsAzure.Commands.ScenarioTest; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using Xunit; + +namespace Microsoft.Azure.Commands.Compute.Test.ScenarioTests +{ + public class AEMExtensionTests + { + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestAEMExtensionBasicWindows() + { + ComputeTestController.NewInstance.RunPsTest("Test-AEMExtensionBasicWindows"); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestAEMExtensionBasicLinux() + { + ComputeTestController.NewInstance.RunPsTest("Test-AEMExtensionBasicLinux"); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestAEMExtensionAdvancedWindows() + { + ComputeTestController.NewInstance.RunPsTest("Test-AEMExtensionAdvancedWindows"); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestAEMExtensionAdvancedLinux() + { + ComputeTestController.NewInstance.RunPsTest("Test-AEMExtensionAdvancedLinux"); + } + } +} diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/AEMExtensionTests.ps1 b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/AEMExtensionTests.ps1 new file mode 100644 index 000000000000..d71fe2fcb71b --- /dev/null +++ b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/AEMExtensionTests.ps1 @@ -0,0 +1,388 @@ +# ---------------------------------------------------------------------------------- +# +# Copyright Microsoft Corporation +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ---------------------------------------------------------------------------------- + +<# +.SYNOPSIS +Test the basic usage of the Set/Get/Test/Remove virtual machine Azure Enhanced Monitoring extension command +#> + +function Test-AEMExtensionBasicWindows +{ + $rgname = Get-ComputeTestResourceName + $loc = Get-ComputeVMLocation + + try + { + # Setup + $vm = Create-AdvancedVM -rgname $rgname -loc $loc + $vmname = $vm.Name + + # Get with not extension + $extension = Get-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname + Assert-Null $extension + # Test with not extension + $testResult = Test-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname + Assert-False { $testResult.Result } + + # Set and Get command. + Set-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname + $extension = Get-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname + + Assert-NotNull $extension + Assert-AreEqual $extension.Publisher 'Microsoft.AzureCAT.AzureEnhancedMonitoring' + Assert-AreEqual $extension.ExtensionType 'AzureCATExtensionHandler' + Assert-AreEqual $extension.Name 'AzureCATExtensionHandler' + $settings = $extension.PublicSettings | ConvertFrom-Json + Assert-NotNull $settings.cfg + + $stoname = 'sto' + $rgname; + $tempFile = [System.IO.Path]::GetTempFileName() + "new file content" | Out-File $tempFile + $ctxt = (New-AzureStorageContext -StorageAccountName $stoname -StorageAccountKey (Get-AzureRmStorageAccountKey -ResourceGroupName $rgname -Name $stoname).Key1) + $container = New-AzureStorageContainer -Name "uploadtest" -Context $ctxt + Set-AzureStorageBlobContent -File $tempFile -Context $ctxt -Container "uploadtest" -Blob "filtemp.txt" + Restart-AzureRmVM -ResourceGroupName $rgname -Name $vmname + + + # Test command. + $testResult = Test-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname -WaitTimeInMinutes 50 + Assert-True { $testResult.Result } + Assert-True { ($testResult.PartialResults.Count -gt 0) } + + # Remove command. + Remove-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname + $extension = Get-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname + Assert-Null $extension + } + finally + { + # Cleanup + Clean-ResourceGroup $rgname + } +} + +function Test-AEMExtensionAdvancedWindows +{ + $rgname = Get-ComputeTestResourceName + $loc = Get-ComputeVMLocation + + try + { + Write-Verbose "Start the test Test-AEMExtensionAdvancedWindows" + # Setup + $vm = Create-AdvancedVM -rgname $rgname -loc $loc -vmsize 'Standard_DS2' -stotype 'Premium_LRS' -nicCount 2 + $vmname = $vm.Name + Write-Verbose "Test-AEMExtensionAdvancedWindows: VM created" + + # Get with not extension + Write-Verbose "Test-AEMExtensionAdvancedWindows: Get with no extension" + $extension = Get-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname + Assert-Null $extension + + # Test with not extension + Write-Verbose "Test-AEMExtensionAdvancedWindows: Test with no extension" + $res = Test-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname + Assert-False { $res.Result } + Write-Verbose "Test-AEMExtensionAdvancedWindows: Test done" + + $stoname = 'sto' + $rgname + "2"; + New-AzureRmStorageAccount -ResourceGroupName $rgname -Name $stoname -Location $loc -Type 'Standard_LRS'; + + # Set and Get command. + Write-Verbose "Test-AEMExtensionAdvancedWindows: Set with no extension" + Set-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname -WADStorageAccountName $stoname + Write-Verbose "Test-AEMExtensionAdvancedWindows: Set done" + Write-Verbose "Test-AEMExtensionAdvancedWindows: Get with extension" + $extension = Get-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname + + + Assert-NotNull $extension + Assert-AreEqual $extension.Publisher 'Microsoft.AzureCAT.AzureEnhancedMonitoring' + Assert-AreEqual $extension.ExtensionType 'AzureCATExtensionHandler' + Assert-AreEqual $extension.Name 'AzureCATExtensionHandler' + $settings = $extension.PublicSettings | ConvertFrom-Json + Assert-NotNull $settings.cfg + Write-Verbose "Test-AEMExtensionAdvancedWindows: Get done" + + # Test command. + Write-Verbose "Test-AEMExtensionAdvancedWindows: Test with extension" + $res = Test-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname + Assert-True { $res.Result } + Assert-True { ($res.PartialResults.Count -gt 0) } + Write-Verbose "Test-AEMExtensionAdvancedWindows: Test done" + + # Remove command. + Write-Verbose "Test-AEMExtensionAdvancedWindows: Remove with extension" + Remove-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname + Write-Verbose "Test-AEMExtensionAdvancedWindows: Remove done" + + Write-Verbose "Test-AEMExtensionAdvancedWindows: Get after remove" + $extension = Get-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname + Assert-Null $extension + Write-Verbose "Test-AEMExtensionAdvancedWindows: Get after remove done" + } + finally + { + # Cleanup + Clean-ResourceGroup $rgname + } +} + +function Test-AEMExtensionBasicLinux +{ + $rgname = Get-ComputeTestResourceName + $loc = Get-ComputeVMLocation + + try + { + # Setup + $vm = Create-AdvancedVM -rgname $rgname -loc $loc -linux + $vmname = $vm.Name + + # Get with not extension + $extension = Get-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname + Assert-Null $extension + # Test with not extension + $testResult = Test-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname + Assert-False { $testResult.Result } + + # Set and Get command. + Set-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname + $extension = Get-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname + + Assert-NotNull $extension + Assert-AreEqual $extension.Publisher 'Microsoft.OSTCExtensions' + Assert-AreEqual $extension.ExtensionType 'AzureEnhancedMonitorForLinux' + Assert-AreEqual $extension.Name 'AzureEnhancedMonitorForLinux' + $settings = $extension.PublicSettings | ConvertFrom-Json + Assert-NotNull $settings.cfg + + $stoname = 'sto' + $rgname; + $tempFile = [System.IO.Path]::GetTempFileName() + "new file content" | Out-File $tempFile + $ctxt = (New-AzureStorageContext -StorageAccountName $stoname -StorageAccountKey (Get-AzureRmStorageAccountKey -ResourceGroupName $rgname -Name $stoname).Key1) + $container = New-AzureStorageContainer -Name "uploadtest" -Context $ctxt + Set-AzureStorageBlobContent -File $tempFile -Context $ctxt -Container "uploadtest" -Blob "filtemp.txt" + Restart-AzureRmVM -ResourceGroupName $rgname -Name $vmname + + # Test command. + $testResult = Test-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname -WaitTimeInMinutes 50 + Assert-True { $testResult.Result } + Assert-True { ($testResult.PartialResults.Count -gt 0) } + + # Remove command. + Remove-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname + $extension = Get-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname + Assert-Null $extension + } + finally + { + # Cleanup + Clean-ResourceGroup $rgname + } +} + +function Test-AEMExtensionAdvancedLinux +{ + $rgname = Get-ComputeTestResourceName + $loc = Get-ComputeVMLocation + + try + { + Write-Verbose "Start the test Test-AEMExtensionAdvancedLinux" + # Setup + $vm = Create-AdvancedVM -rgname $rgname -loc $loc -vmsize 'Standard_DS2' -stotype 'Premium_LRS' -nicCount 2 -linux + $vmname = $vm.Name + Write-Verbose "Test-AEMExtensionAdvancedLinux: VM created" + + # Get with not extension + Write-Verbose "Test-AEMExtensionAdvancedLinux: Get with no extension" + $extension = Get-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname + Assert-Null $extension + + # Test with not extension + Write-Verbose "Test-AEMExtensionAdvancedLinux: Test with no extension" + $res = Test-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname + Write-Verbose ("Test-AEMExtensionAdvancedLinux: Test result " + $res.Result) + Assert-False { $res.Result } + Write-Verbose "Test-AEMExtensionAdvancedLinux: Test done" + + $stoname = 'sto' + $rgname + "2"; + New-AzureRmStorageAccount -ResourceGroupName $rgname -Name $stoname -Location $loc -Type 'Standard_LRS'; + + # Set and Get command. + Write-Verbose "Test-AEMExtensionAdvancedLinux: Set with no extension" + Set-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname -WADStorageAccountName $stoname + Write-Verbose "Test-AEMExtensionAdvancedLinux: Set done" + Write-Verbose "Test-AEMExtensionAdvancedLinux: Get with extension" + $extension = Get-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname + + + Assert-NotNull $extension + Assert-AreEqual $extension.Publisher 'Microsoft.OSTCExtensions' + Assert-AreEqual $extension.ExtensionType 'AzureEnhancedMonitorForLinux' + Assert-AreEqual $extension.Name 'AzureEnhancedMonitorForLinux' + $settings = $extension.PublicSettings | ConvertFrom-Json + Assert-NotNull $settings.cfg + Write-Verbose "Test-AEMExtensionAdvancedLinux: Get done" + + # Test command. + Write-Verbose "Test-AEMExtensionAdvancedLinux: Test with extension" + $res = Test-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname + Assert-True { $res.Result } + Assert-True { ($res.PartialResults.Count -gt 0) } + Write-Verbose "Test-AEMExtensionAdvancedLinux: Test done" + + # Remove command. + Write-Verbose "Test-AEMExtensionAdvancedLinux: Remove with extension" + Remove-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname + Write-Verbose "Test-AEMExtensionAdvancedLinux: Remove done" + + Write-Verbose "Test-AEMExtensionAdvancedLinux: Get after remove" + $extension = Get-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname + Assert-Null $extension + Write-Verbose "Test-AEMExtensionAdvancedLinux: Get after remove done" + } + finally + { + # Cleanup + Clean-ResourceGroup $rgname + } +} + +function Create-AdvancedVM($rgname, $vmname, $loc, $vmsize, $stotype, $nicCount, [Switch] $linux) +{ + # Initialize parameters + $rgname = if ([string]::IsNullOrEmpty($rgname)) { Get-ComputeTestResourceName } else { $rgname } + $vmname = if ([string]::IsNullOrEmpty($vmname)) { 'vm' + $rgname } else { $vmname } + $loc = if ([string]::IsNullOrEmpty($loc)) { Get-ComputeVMLocation } else { $loc } + $vmsize = if ([string]::IsNullOrEmpty($vmsize)) { 'Standard_A2' } else { $vmsize } + $stotype = if ([string]::IsNullOrEmpty($stotype)) { 'Standard_LRS' } else { $stotype } + $nicCount = if ([string]::IsNullOrEmpty($nicCount)) { 1 } else { [int]$nicCount } + + # Common + New-AzureRmResourceGroup -Name $rgname -Location $loc -Force; + + # VM Profile & Hardware + $p = New-AzureRmVMConfig -VMName $vmname -VMSize $vmsize; + Assert-AreEqual $p.HardwareProfile.VmSize $vmsize; + + # NRP + $subnet = New-AzureRmVirtualNetworkSubnetConfig -Name ('subnet' + $rgname) -AddressPrefix "10.0.0.0/24"; + $vnet = New-AzureRmVirtualNetwork -Force -Name ('vnet' + $rgname) -ResourceGroupName $rgname -Location $loc -AddressPrefix "10.0.0.0/16" -Subnet $subnet; + $vnet = Get-AzureRmVirtualNetwork -Name ('vnet' + $rgname) -ResourceGroupName $rgname; + $subnetId = $vnet.Subnets[0].Id; + $pubip = New-AzureRmPublicIpAddress -Force -Name ('pubip' + $rgname) -ResourceGroupName $rgname -Location $loc -AllocationMethod Dynamic -DomainNameLabel ('pubip' + $rgname); + $pubip = Get-AzureRmPublicIpAddress -Name ('pubip' + $rgname) -ResourceGroupName $rgname; + $pubipId = $pubip.Id; + + $pibparams = @{} + $pibparams.Add("PublicIpAddressId", $pubip.Id) + $nicPrimParams = @{} + $nicPrimParams.Add("Primary", $true) + for ($i = 0;$i -lt $nicCount;$i++) + { + $nic = New-AzureRmNetworkInterface -Force -Name ('nic' + $i + $rgname) -ResourceGroupName $rgname -Location $loc -SubnetId $subnetId @pibparams + $nic = Get-AzureRmNetworkInterface -Name ('nic' + $i + $rgname) -ResourceGroupName $rgname; + $nicId = $nic.Id; + + $p = Add-AzureRmVMNetworkInterface -VM $p -Id $nicId @nicPrimParams; + Assert-AreEqual $p.NetworkProfile.NetworkInterfaces[$i].Id $nicId; + + $pibparams = @{} + $nicPrimParams = @{} + } + Assert-AreEqual $p.NetworkProfile.NetworkInterfaces.Count $nicCount; + + # Storage Account (SA) + $stoname = 'sto' + $rgname; + New-AzureRmStorageAccount -ResourceGroupName $rgname -Name $stoname -Location $loc -Type $stotype; + Retry-IfException { $global:stoaccount = Get-AzureRmStorageAccount -ResourceGroupName $rgname -Name $stoname; } + $stokey = (Get-AzureRmStorageAccountKey -ResourceGroupName $rgname -Name $stoname).Key1; + + $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-AzureRmVMOSDisk -VM $p -Name $osDiskName -VhdUri $osDiskVhdUri -Caching $osDiskCaching -CreateOption FromImage; + + $p = Add-AzureRmVMDataDisk -VM $p -Name 'testDataDisk1' -Caching 'ReadOnly' -DiskSizeInGB 10 -Lun 1 -VhdUri $dataDiskVhdUri1 -CreateOption Empty; + $p = Add-AzureRmVMDataDisk -VM $p -Name 'testDataDisk2' -Caching 'ReadOnly' -DiskSizeInGB 11 -Lun 2 -VhdUri $dataDiskVhdUri2 -CreateOption Empty; + $p = Add-AzureRmVMDataDisk -VM $p -Name 'testDataDisk3' -Caching 'ReadOnly' -DiskSizeInGB 12 -Lun 3 -VhdUri $dataDiskVhdUri3 -CreateOption Empty; + $p = Remove-AzureRmVMDataDisk -VM $p -Name 'testDataDisk3'; + + Assert-AreEqual $p.StorageProfile.OsDisk.Caching $osDiskCaching; + Assert-AreEqual $p.StorageProfile.OsDisk.Name $osDiskName; + Assert-AreEqual $p.StorageProfile.OsDisk.Vhd.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].Vhd.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].Vhd.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"; + + if ($linux) + { + $p = Set-AzureRmVMOperatingSystem -VM $p -Linux -ComputerName $computerName -Credential $cred; + + $imgRef = Get-LinuxImage; + $p = ($imgRef | Set-AzureRmVMSourceImage -VM $p); + } + else + { + $p = Set-AzureRmVMOperatingSystem -VM $p -Windows -ComputerName $computerName -Credential $cred -ProvisionVMAgent; + + $imgRef = Get-DefaultCRPWindowsImageOffline; + $p = ($imgRef | Set-AzureRmVMSourceImage -VM $p); + } + + Assert-AreEqual $p.OSProfile.AdminUsername $user; + Assert-AreEqual $p.OSProfile.ComputerName $computerName; + Assert-AreEqual $p.OSProfile.AdminPassword $password; + if (-not $linux) + { + Assert-AreEqual $p.OSProfile.WindowsConfiguration.ProvisionVMAgent $true; + } + + Assert-AreEqual $p.StorageProfile.ImageReference.Offer $imgRef.Offer; + Assert-AreEqual $p.StorageProfile.ImageReference.Publisher $imgRef.PublisherName; + Assert-AreEqual $p.StorageProfile.ImageReference.Sku $imgRef.Skus; + Assert-AreEqual $p.StorageProfile.ImageReference.Version $imgRef.Version; + + # Virtual Machine + $p = Set-AzureRmVMBootDiagnostics -VM $p -Disable + New-AzureRmVM -ResourceGroupName $rgname -Location $loc -VM $p; + + $vm = Get-AzureRmVM -ResourceGroupName $rgname -VMName $vmname + return $vm +} + +function Get-LinuxImage +{ + return Create-ComputeVMImageObject 'SUSE' 'SLES' '12' 'latest'; +} \ No newline at end of file diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.AEMExtensionTests/TestAEMExtensionAdvancedLinux.json b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.AEMExtensionTests/TestAEMExtensionAdvancedLinux.json new file mode 100644 index 000000000000..da7e4a9ebb57 --- /dev/null +++ b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.AEMExtensionTests/TestAEMExtensionAdvancedLinux.json @@ -0,0 +1,5757 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "5199" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-request-id": [ + "a0db155e-d43a-425a-b8c9-93df4376e056" + ], + "x-ms-correlation-request-id": [ + "a0db155e-d43a-425a-b8c9-93df4376e056" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T100544Z:a0db155e-d43a-425a-b8c9-93df4376e056" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 10:05:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourcegroups/crptestps4190?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczQxOTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "105" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" + ], + "x-ms-request-id": [ + "41c2c770-b4bc-4d22-8abf-d000f74f2d2e" + ], + "x-ms-correlation-request-id": [ + "41c2c770-b4bc-4d22-8abf-d000f74f2d2e" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T100544Z:41c2c770-b4bc-4d22-8abf-d000f74f2d2e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 10:05:44 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourcegroups/crptestps4190?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczQxOTA/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": [ + "14988" + ], + "x-ms-request-id": [ + "2c905ea2-714a-4860-8efa-91d5c28e62e9" + ], + "x-ms-correlation-request-id": [ + "2c905ea2-714a-4860-8efa-91d5c28e62e9" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T101547Z:2c905ea2-714a-4860-8efa-91d5c28e62e9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 10:15:47 GMT" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourcegroups/crptestps4190?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczQxOTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190\",\r\n \"name\": \"crptestps4190\",\r\n \"location\": \"eastus\",\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": [ + "05dd2880-0c0a-4b09-a617-52bcefc0260c" + ], + "x-ms-correlation-request-id": [ + "05dd2880-0c0a-4b09-a617-52bcefc0260c" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T100546Z:05dd2880-0c0a-4b09-a617-52bcefc0260c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 10:05:45 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "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": [ + "14990" + ], + "x-ms-request-id": [ + "c0394b89-0762-4e65-a233-a9fbc3fdd8fd" + ], + "x-ms-correlation-request-id": [ + "c0394b89-0762-4e65-a233-a9fbc3fdd8fd" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T100546Z:c0394b89-0762-4e65-a233-a9fbc3fdd8fd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 10:05:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/virtualnetworks/vnetcrptestps4190?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNDE5MD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e253bbfe-0ade-49e0-bc8a-1e1efa38b99f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/vnetcrptestps4190' under resource group 'crptestps4190' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "168" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "f921852f-6f98-4d1c-98a4-c30a3ef000c7" + ], + "x-ms-correlation-request-id": [ + "f921852f-6f98-4d1c-98a4-c30a3ef000c7" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T100547Z:f921852f-6f98-4d1c-98a4-c30a3ef000c7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 10:05:46 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/virtualnetworks/vnetcrptestps4190?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNDE5MD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps4190\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4190\",\r\n \"etag\": \"W/\\\"9e046959-2e2f-4584-bfa0-a92ca9fa1179\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"84f17b7a-a025-466c-ad3d-e4e2114fd48d\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps4190\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4190/subnets/subnetcrptestps4190\",\r\n \"etag\": \"W/\\\"9e046959-2e2f-4584-bfa0-a92ca9fa1179\\\"\",\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}", + "ResponseHeaders": { + "Content-Length": [ + "994" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "954c07f9-47a7-4340-abde-f59a91e7d6c9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"9e046959-2e2f-4584-bfa0-a92ca9fa1179\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14956" + ], + "x-ms-correlation-request-id": [ + "51fafa5f-6db4-47b4-8be7-a43da6edfa63" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T100559Z:51fafa5f-6db4-47b4-8be7-a43da6edfa63" + ], + "Date": [ + "Tue, 16 Feb 2016 10:05:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/virtualnetworks/vnetcrptestps4190?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNDE5MD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cc2f8a24-0ae1-4e9d-aa75-d3c61932ae48" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps4190\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4190\",\r\n \"etag\": \"W/\\\"9e046959-2e2f-4584-bfa0-a92ca9fa1179\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"84f17b7a-a025-466c-ad3d-e4e2114fd48d\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps4190\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4190/subnets/subnetcrptestps4190\",\r\n \"etag\": \"W/\\\"9e046959-2e2f-4584-bfa0-a92ca9fa1179\\\"\",\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}", + "ResponseHeaders": { + "Content-Length": [ + "994" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e8f819fd-43d4-4fbd-85e1-1a126aa6bad0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"9e046959-2e2f-4584-bfa0-a92ca9fa1179\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14955" + ], + "x-ms-correlation-request-id": [ + "3a0dc465-bcd5-45aa-95cf-3a6272a10216" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T100600Z:3a0dc465-bcd5-45aa-95cf-3a6272a10216" + ], + "Date": [ + "Tue, 16 Feb 2016 10:05:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/virtualnetworks/vnetcrptestps4190?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNDE5MD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c82caae0-2945-43e9-996f-293373f3a5b5" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps4190\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4190\",\r\n \"etag\": \"W/\\\"9e046959-2e2f-4584-bfa0-a92ca9fa1179\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"84f17b7a-a025-466c-ad3d-e4e2114fd48d\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps4190\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4190/subnets/subnetcrptestps4190\",\r\n \"etag\": \"W/\\\"9e046959-2e2f-4584-bfa0-a92ca9fa1179\\\"\",\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}", + "ResponseHeaders": { + "Content-Length": [ + "994" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "0c40fcdc-ee3c-4c7f-87d8-a85f89936850" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"9e046959-2e2f-4584-bfa0-a92ca9fa1179\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14954" + ], + "x-ms-correlation-request-id": [ + "882953e5-d0cd-4e76-89c2-c97d121e8911" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T100600Z:882953e5-d0cd-4e76-89c2-c97d121e8911" + ], + "Date": [ + "Tue, 16 Feb 2016 10:05:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/virtualnetworks/vnetcrptestps4190?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNDE5MD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps4190\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "341" + ], + "x-ms-client-request-id": [ + "93c2d975-b9da-4c4c-a11d-a33e82b04c31" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps4190\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4190\",\r\n \"etag\": \"W/\\\"9924119e-0d86-4830-8497-d3d8dd61d368\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"84f17b7a-a025-466c-ad3d-e4e2114fd48d\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps4190\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4190/subnets/subnetcrptestps4190\",\r\n \"etag\": \"W/\\\"9924119e-0d86-4830-8497-d3d8dd61d368\\\"\",\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}", + "ResponseHeaders": { + "Content-Length": [ + "992" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "70241e29-e3df-4f5d-bd9c-419cb8bf60a9" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Network/locations/eastus/operations/70241e29-e3df-4f5d-bd9c-419cb8bf60a9?api-version=2015-06-15" + ], + "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": [ + "91b9fb44-fb51-40f9-b148-b1fb1be03e0e" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T100549Z:91b9fb44-fb51-40f9-b148-b1fb1be03e0e" + ], + "Date": [ + "Tue, 16 Feb 2016 10:05:48 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Network/locations/eastus/operations/70241e29-e3df-4f5d-bd9c-419cb8bf60a9?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNzAyNDFlMjktZTNkZi00ZjVkLWJkOWMtNDE5Y2I4YmY2MGE5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkManagementClient/3.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": [ + "9a5d5263-119f-4e03-bdc4-730037a1217b" + ], + "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": [ + "14957" + ], + "x-ms-correlation-request-id": [ + "6e708331-3c5b-4a1a-b6a9-0064931daa8f" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T100559Z:6e708331-3c5b-4a1a-b6a9-0064931daa8f" + ], + "Date": [ + "Tue, 16 Feb 2016 10:05:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4190?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNDE5MD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d794f130-6285-4118-93a3-c5df5cfd22c0" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/pubipcrptestps4190' under resource group 'crptestps4190' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "171" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "cba6013c-321f-4152-9e0c-4a372948430d" + ], + "x-ms-correlation-request-id": [ + "cba6013c-321f-4152-9e0c-4a372948430d" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T100600Z:cba6013c-321f-4152-9e0c-4a372948430d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 10:05:59 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4190?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNDE5MD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps4190\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4190\",\r\n \"etag\": \"W/\\\"dcd6112c-48ad-45ea-8eeb-9920493a7840\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"fd1fbe22-1d78-4dd4-beb7-5ac159ec7e4b\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps4190\",\r\n \"fqdn\": \"pubipcrptestps4190.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "666" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "78073901-7c62-4df5-b5f9-e0e1ed608f40" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"dcd6112c-48ad-45ea-8eeb-9920493a7840\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14951" + ], + "x-ms-correlation-request-id": [ + "c20d6883-cf16-4a3f-be2d-02e0df7ac964" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T100612Z:c20d6883-cf16-4a3f-be2d-02e0df7ac964" + ], + "Date": [ + "Tue, 16 Feb 2016 10:06:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4190?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNDE5MD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cfc531c0-bb2e-45e5-a286-2f2a25f44678" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps4190\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4190\",\r\n \"etag\": \"W/\\\"dcd6112c-48ad-45ea-8eeb-9920493a7840\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"fd1fbe22-1d78-4dd4-beb7-5ac159ec7e4b\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps4190\",\r\n \"fqdn\": \"pubipcrptestps4190.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "666" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "5f19f913-2d7f-44d4-8811-d7a3ecf1d0c0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"dcd6112c-48ad-45ea-8eeb-9920493a7840\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14950" + ], + "x-ms-correlation-request-id": [ + "6d510fe6-3833-4b97-9b3a-d6fc1a44a151" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T100612Z:6d510fe6-3833-4b97-9b3a-d6fc1a44a151" + ], + "Date": [ + "Tue, 16 Feb 2016 10:06:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4190?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNDE5MD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b5eb6f9c-6fe1-4e58-b942-bf2a8dee3ca3" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps4190\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4190\",\r\n \"etag\": \"W/\\\"dcd6112c-48ad-45ea-8eeb-9920493a7840\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"fd1fbe22-1d78-4dd4-beb7-5ac159ec7e4b\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps4190\",\r\n \"fqdn\": \"pubipcrptestps4190.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "666" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "83ea989c-3913-4520-b2c3-9d820ac5fb2e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"dcd6112c-48ad-45ea-8eeb-9920493a7840\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14949" + ], + "x-ms-correlation-request-id": [ + "c6876f73-559d-4747-92f3-e38a14a16ba1" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T100612Z:c6876f73-559d-4747-92f3-e38a14a16ba1" + ], + "Date": [ + "Tue, 16 Feb 2016 10:06:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4190?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNDE5MD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps4190\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "174" + ], + "x-ms-client-request-id": [ + "e2be0c65-0ef3-4a2c-93ac-16c4923ee020" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps4190\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4190\",\r\n \"etag\": \"W/\\\"f7862567-0c15-4b2b-ac0f-7ebcc008ba45\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"fd1fbe22-1d78-4dd4-beb7-5ac159ec7e4b\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps4190\",\r\n \"fqdn\": \"pubipcrptestps4190.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "665" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "98de918a-e49c-4bcb-9c1e-877ccdc96223" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Network/locations/eastus/operations/98de918a-e49c-4bcb-9c1e-877ccdc96223?api-version=2015-06-15" + ], + "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": [ + "cd1b082c-4cdb-4fd1-84ae-b77247bba8e8" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T100601Z:cd1b082c-4cdb-4fd1-84ae-b77247bba8e8" + ], + "Date": [ + "Tue, 16 Feb 2016 10:06:01 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Network/locations/eastus/operations/98de918a-e49c-4bcb-9c1e-877ccdc96223?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOThkZTkxOGEtZTQ5Yy00YmNiLTljMWUtODc3Y2NkYzk2MjIzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkManagementClient/3.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": [ + "32943839-42df-485f-bc7d-ab20b8e46450" + ], + "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": [ + "14952" + ], + "x-ms-correlation-request-id": [ + "3f1b5a4c-dca6-466f-b665-2b91e959c3b5" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T100612Z:3f1b5a4c-dca6-466f-b665-2b91e959c3b5" + ], + "Date": [ + "Tue, 16 Feb 2016 10:06:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic0crptestps4190?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzBjcnB0ZXN0cHM0MTkwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "72be595a-0e84-4b73-ab44-3add866d1ef6" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/nic0crptestps4190' under resource group 'crptestps4190' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "170" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "ff9afe61-1b4c-4293-8b0b-f30157ef5f36" + ], + "x-ms-correlation-request-id": [ + "ff9afe61-1b4c-4293-8b0b-f30157ef5f36" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T100613Z:ff9afe61-1b4c-4293-8b0b-f30157ef5f36" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 10:06:12 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic0crptestps4190?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzBjcnB0ZXN0cHM0MTkwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "937546c9-11ca-4249-9232-52277f305725" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"nic0crptestps4190\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic0crptestps4190\",\r\n \"etag\": \"W/\\\"66f9a19d-5f24-471a-a2f6-6d259b014f9a\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"54744804-b4f2-4c77-b8d3-4a29c5f2b76d\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic0crptestps4190/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"66f9a19d-5f24-471a-a2f6-6d259b014f9a\\\"\",\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/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4190\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4190/subnets/subnetcrptestps4190\"\r\n },\r\n \"primary\": true\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1548" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2ec83bd1-9c15-40d2-b8fc-a7fcb4dfa97d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"66f9a19d-5f24-471a-a2f6-6d259b014f9a\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14947" + ], + "x-ms-correlation-request-id": [ + "bf648c14-45eb-4664-92fa-8fbdbeca0dfd" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T100615Z:bf648c14-45eb-4664-92fa-8fbdbeca0dfd" + ], + "Date": [ + "Tue, 16 Feb 2016 10:06:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic0crptestps4190?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzBjcnB0ZXN0cHM0MTkwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "afd9baeb-31a4-4fd9-a2fa-45c72c0648cb" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"nic0crptestps4190\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic0crptestps4190\",\r\n \"etag\": \"W/\\\"66f9a19d-5f24-471a-a2f6-6d259b014f9a\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"54744804-b4f2-4c77-b8d3-4a29c5f2b76d\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic0crptestps4190/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"66f9a19d-5f24-471a-a2f6-6d259b014f9a\\\"\",\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/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4190\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4190/subnets/subnetcrptestps4190\"\r\n },\r\n \"primary\": true\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1548" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "5c821af3-b33a-4e0a-8611-3800341e9be1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"66f9a19d-5f24-471a-a2f6-6d259b014f9a\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14946" + ], + "x-ms-correlation-request-id": [ + "259d6fbb-cabe-4802-a8c3-96a0c5626f1f" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T100615Z:259d6fbb-cabe-4802-a8c3-96a0c5626f1f" + ], + "Date": [ + "Tue, 16 Feb 2016 10:06:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic0crptestps4190?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzBjcnB0ZXN0cHM0MTkwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"properties\": {\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": [],\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4190/subnets/subnetcrptestps4190\",\r\n \"properties\": {\r\n \"ipConfigurations\": []\r\n }\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4190\"\r\n }\r\n }\r\n }\r\n ],\r\n \"primary\": false,\r\n \"enableIPForwarding\": false\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "900" + ], + "x-ms-client-request-id": [ + "98853e84-9720-4d90-aed0-67ab8fc7486f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"nic0crptestps4190\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic0crptestps4190\",\r\n \"etag\": \"W/\\\"66f9a19d-5f24-471a-a2f6-6d259b014f9a\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"54744804-b4f2-4c77-b8d3-4a29c5f2b76d\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic0crptestps4190/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"66f9a19d-5f24-471a-a2f6-6d259b014f9a\\\"\",\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/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4190\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4190/subnets/subnetcrptestps4190\"\r\n },\r\n \"primary\": true\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1548" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ae0d8ef6-fbef-4184-a2e8-549e0074ce0a" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Network/locations/eastus/operations/ae0d8ef6-fbef-4184-a2e8-549e0074ce0a?api-version=2015-06-15" + ], + "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": [ + "abfb4ab9-42af-4a38-916e-9972a8dea8e5" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T100614Z:abfb4ab9-42af-4a38-916e-9972a8dea8e5" + ], + "Date": [ + "Tue, 16 Feb 2016 10:06:14 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic1crptestps4190?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzFjcnB0ZXN0cHM0MTkwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2fd19e49-753a-4d4a-a8a9-d0420ad242fb" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/nic1crptestps4190' under resource group 'crptestps4190' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "170" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "07c41425-ad8e-4aad-909b-ada0ea78631c" + ], + "x-ms-correlation-request-id": [ + "07c41425-ad8e-4aad-909b-ada0ea78631c" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T100615Z:07c41425-ad8e-4aad-909b-ada0ea78631c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 10:06:14 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic1crptestps4190?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzFjcnB0ZXN0cHM0MTkwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8922c6d4-29c2-4364-b4f5-e438a89f738d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"nic1crptestps4190\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic1crptestps4190\",\r\n \"etag\": \"W/\\\"00e1d9cd-8588-426e-93aa-7a8b9c6a1331\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5b47fd1c-62c4-42e2-a8b4-cfa9e1bfca88\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic1crptestps4190/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"00e1d9cd-8588-426e-93aa-7a8b9c6a1331\\\"\",\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/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4190/subnets/subnetcrptestps4190\"\r\n },\r\n \"primary\": true\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1335" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ee387190-15fd-4cc8-9490-0490c8d472f5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"00e1d9cd-8588-426e-93aa-7a8b9c6a1331\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14944" + ], + "x-ms-correlation-request-id": [ + "dd6ea3bf-7dcd-47d2-be56-f3c0f7701781" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T100616Z:dd6ea3bf-7dcd-47d2-be56-f3c0f7701781" + ], + "Date": [ + "Tue, 16 Feb 2016 10:06:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic1crptestps4190?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzFjcnB0ZXN0cHM0MTkwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "500dcbd8-00b3-44da-978b-661106a8aecf" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"nic1crptestps4190\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic1crptestps4190\",\r\n \"etag\": \"W/\\\"00e1d9cd-8588-426e-93aa-7a8b9c6a1331\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5b47fd1c-62c4-42e2-a8b4-cfa9e1bfca88\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic1crptestps4190/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"00e1d9cd-8588-426e-93aa-7a8b9c6a1331\\\"\",\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/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4190/subnets/subnetcrptestps4190\"\r\n },\r\n \"primary\": true\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1335" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "1a903ce5-230a-40a2-b218-bc479cc7d8e9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"00e1d9cd-8588-426e-93aa-7a8b9c6a1331\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14943" + ], + "x-ms-correlation-request-id": [ + "40c2a890-5d82-4812-8ae8-505e34e8ff9f" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T100617Z:40c2a890-5d82-4812-8ae8-505e34e8ff9f" + ], + "Date": [ + "Tue, 16 Feb 2016 10:06:16 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic1crptestps4190?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzFjcnB0ZXN0cHM0MTkwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"properties\": {\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": [],\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4190/subnets/subnetcrptestps4190\",\r\n \"properties\": {\r\n \"ipConfigurations\": []\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"primary\": false,\r\n \"enableIPForwarding\": false\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "687" + ], + "x-ms-client-request-id": [ + "5c2f9ce9-b031-40a9-95bd-99c9476dd9f1" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"nic1crptestps4190\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic1crptestps4190\",\r\n \"etag\": \"W/\\\"00e1d9cd-8588-426e-93aa-7a8b9c6a1331\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5b47fd1c-62c4-42e2-a8b4-cfa9e1bfca88\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic1crptestps4190/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"00e1d9cd-8588-426e-93aa-7a8b9c6a1331\\\"\",\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/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4190/subnets/subnetcrptestps4190\"\r\n },\r\n \"primary\": true\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1335" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "4da20bc3-737d-4c07-9d32-15105f214336" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Network/locations/eastus/operations/4da20bc3-737d-4c07-9d32-15105f214336?api-version=2015-06-15" + ], + "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": [ + "a86ee9f1-9313-4fc6-9ef1-5b601ba84719" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T100616Z:a86ee9f1-9313-4fc6-9ef1-5b601ba84719" + ], + "Date": [ + "Tue, 16 Feb 2016 10:06:15 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Storage/storageAccounts/stocrptestps4190?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM0MTkwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "88" + ], + "x-ms-client-request-id": [ + "80f36a43-088e-4708-ae8d-3725fd056190" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "25" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "4df9f7ea-d144-4526-9ab7-2d7edecc3d2c" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Storage/operations/54b412a4-6f27-4631-b849-31d46461757c?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "4df9f7ea-d144-4526-9ab7-2d7edecc3d2c" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T100620Z:4df9f7ea-d144-4526-9ab7-2d7edecc3d2c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Tue, 16 Feb 2016 10:06:20 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Storage/operations/54b412a4-6f27-4631-b849-31d46461757c?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzU0YjQxMmE0LTZmMjctNDYzMS1iODQ5LTMxZDQ2NDYxNzU3Yz9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3fca459f-a1e1-4e68-b6de-14d04e13341b" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "25" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-request-id": [ + "b46a3dc4-aaf0-4890-a8e1-c2981cf78d9d" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Storage/operations/54b412a4-6f27-4631-b849-31d46461757c?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "b46a3dc4-aaf0-4890-a8e1-c2981cf78d9d" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T100620Z:b46a3dc4-aaf0-4890-a8e1-c2981cf78d9d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Tue, 16 Feb 2016 10:06:20 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Storage/operations/54b412a4-6f27-4631-b849-31d46461757c?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzU0YjQxMmE0LTZmMjctNDYzMS1iODQ5LTMxZDQ2NDYxNzU3Yz9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "491702f3-fa64-4053-b3f9-06c0fc040240" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "88" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "eabe2f34-ad96-4075-9617-f60ff597e9bb" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-correlation-request-id": [ + "eabe2f34-ad96-4075-9617-f60ff597e9bb" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T100646Z:eabe2f34-ad96-4075-9617-f60ff597e9bb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Tue, 16 Feb 2016 10:06:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Storage/storageAccounts/stocrptestps4190?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM0MTkwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ef0c548c-8e24-4d25-966c-e24f51a9f081" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Storage/storageAccounts/stocrptestps4190\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps4190\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-16T10:06:19.4280887Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps4190.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "506" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "5c935f92-2389-419f-b255-2f501c78a69b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" + ], + "x-ms-correlation-request-id": [ + "5c935f92-2389-419f-b255-2f501c78a69b" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T100646Z:5c935f92-2389-419f-b255-2f501c78a69b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Tue, 16 Feb 2016 10:06:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Storage/storageAccounts/stocrptestps4190?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM0MTkwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "26356fd3-5c3e-4c68-827d-a838fb08bd1f" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Storage/storageAccounts/stocrptestps4190\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps4190\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-16T10:06:19.4280887Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps4190.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "506" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "08c179ad-8e7c-472e-985a-b421f16b7d28" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14990" + ], + "x-ms-correlation-request-id": [ + "08c179ad-8e7c-472e-985a-b421f16b7d28" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T100646Z:08c179ad-8e7c-472e-985a-b421f16b7d28" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Tue, 16 Feb 2016 10:06:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Storage/storageAccounts/stocrptestps4190/listKeys?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM0MTkwL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "38e1caec-d240-401f-87ed-35fbfe1e480f" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"key1\": \"/Zm8UBabw8d7sDw7bMDiVaUf1xh0a/WT9l5kE3mb5sciCJOzKRQErgpgUD0iHsmtmTfLbJX5Ua8Xtt+MxAG46g==\",\r\n \"key2\": \"WUuFbh/qf3OfdikS7GUShmc1BGJGS1BfPProxXLeQDd+U1aKP4sV4azDLvPl27GgpOtac15qJUwODjcOi3g0vA==\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "198" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "fae56ec5-e6c5-4eb1-b657-8286dba2a13e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "fae56ec5-e6c5-4eb1-b657-8286dba2a13e" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T100646Z:fae56ec5-e6c5-4eb1-b657-8286dba2a13e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Tue, 16 Feb 2016 10:06:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Storage/storageAccounts/stocrptestps4190/listKeys?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM0MTkwL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c8c5f518-e997-4d84-a59d-e67dcd5e11c3" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"key1\": \"/Zm8UBabw8d7sDw7bMDiVaUf1xh0a/WT9l5kE3mb5sciCJOzKRQErgpgUD0iHsmtmTfLbJX5Ua8Xtt+MxAG46g==\",\r\n \"key2\": \"WUuFbh/qf3OfdikS7GUShmc1BGJGS1BfPProxXLeQDd+U1aKP4sV4azDLvPl27GgpOtac15qJUwODjcOi3g0vA==\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "198" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7133dfe5-ba37-4a4d-9715-c60502207618" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "7133dfe5-ba37-4a4d-9715-c60502207618" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T101029Z:7133dfe5-ba37-4a4d-9715-c60502207618" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Tue, 16 Feb 2016 10:10:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Storage/storageAccounts/stocrptestps4190/listKeys?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM0MTkwL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "493593eb-6dbc-44da-8e1b-76438c5dfaa8" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"key1\": \"/Zm8UBabw8d7sDw7bMDiVaUf1xh0a/WT9l5kE3mb5sciCJOzKRQErgpgUD0iHsmtmTfLbJX5Ua8Xtt+MxAG46g==\",\r\n \"key2\": \"WUuFbh/qf3OfdikS7GUShmc1BGJGS1BfPProxXLeQDd+U1aKP4sV4azDLvPl27GgpOtac15qJUwODjcOi3g0vA==\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "198" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "0d88c6ef-5340-4e1a-8b46-3c05433170d4" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "0d88c6ef-5340-4e1a-8b46-3c05433170d4" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T101029Z:0d88c6ef-5340-4e1a-8b46-3c05433170d4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Tue, 16 Feb 2016 10:10:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Storage/storageAccounts/stocrptestps4190/listKeys?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM0MTkwL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "219ab969-02fe-41ba-af20-fb9775d061a6" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"key1\": \"/Zm8UBabw8d7sDw7bMDiVaUf1xh0a/WT9l5kE3mb5sciCJOzKRQErgpgUD0iHsmtmTfLbJX5Ua8Xtt+MxAG46g==\",\r\n \"key2\": \"WUuFbh/qf3OfdikS7GUShmc1BGJGS1BfPProxXLeQDd+U1aKP4sV4azDLvPl27GgpOtac15qJUwODjcOi3g0vA==\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "198" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c71e8143-50c6-463b-b8c3-487f0b3b0aaa" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "c71e8143-50c6-463b-b8c3-487f0b3b0aaa" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T101413Z:c71e8143-50c6-463b-b8c3-487f0b3b0aaa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Tue, 16 Feb 2016 10:14:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQxOTA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4190.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 \"name\": \"testDataDisk1\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4190.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"Empty\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4190.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"Empty\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123crptestps4190\",\r\n \"linuxConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic0crptestps4190\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic1crptestps4190\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "2011" + ], + "x-ms-client-request-id": [ + "ec2aa46e-804d-43b3-bf91-bc7cdbfba1cb" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"8db75222-3391-47ad-9403-a276eeb31769\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4190.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4190.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4190.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic0crptestps4190\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic1crptestps4190\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190\",\r\n \"name\": \"vmcrptestps4190\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2221" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/5a11659a-fe67-4ce8-b712-622a9cf7c4af?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "5a11659a-fe67-4ce8-b712-622a9cf7c4af" + ], + "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": [ + "7dbe2b2f-9604-4a00-b4c6-4265f66d0210" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T100656Z:7dbe2b2f-9604-4a00-b4c6-4265f66d0210" + ], + "Date": [ + "Tue, 16 Feb 2016 10:06:55 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/5a11659a-fe67-4ce8-b712-622a9cf7c4af?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNWExMTY1OWEtZmU2Ny00Y2U4LWI3MTItNjIyYTljZjdjNGFmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"5a11659a-fe67-4ce8-b712-622a9cf7c4af\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T11:06:55.4644094+01: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-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "d3a3a1ce-6ba6-474a-aaa3-22eff91868f2" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14990" + ], + "x-ms-correlation-request-id": [ + "540aff5b-976e-42e1-abdc-652f06233227" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T100726Z:540aff5b-976e-42e1-abdc-652f06233227" + ], + "Date": [ + "Tue, 16 Feb 2016 10:07:26 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/5a11659a-fe67-4ce8-b712-622a9cf7c4af?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNWExMTY1OWEtZmU2Ny00Y2U4LWI3MTItNjIyYTljZjdjNGFmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"5a11659a-fe67-4ce8-b712-622a9cf7c4af\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T11:06:55.4644094+01: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-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "1ebdd5cd-bc9e-44a6-a91f-0a1880020a55" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14989" + ], + "x-ms-correlation-request-id": [ + "8d1d39c4-7c0b-4754-a8b9-20215f2bd48d" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T100757Z:8d1d39c4-7c0b-4754-a8b9-20215f2bd48d" + ], + "Date": [ + "Tue, 16 Feb 2016 10:07:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/5a11659a-fe67-4ce8-b712-622a9cf7c4af?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNWExMTY1OWEtZmU2Ny00Y2U4LWI3MTItNjIyYTljZjdjNGFmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"5a11659a-fe67-4ce8-b712-622a9cf7c4af\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T11:06:55.4644094+01: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-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "5064909e-3d98-4593-b83e-69e4a7c74b76" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14988" + ], + "x-ms-correlation-request-id": [ + "b02c281c-2fbb-4c19-a3d1-18be1040c755" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T100827Z:b02c281c-2fbb-4c19-a3d1-18be1040c755" + ], + "Date": [ + "Tue, 16 Feb 2016 10:08:26 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/5a11659a-fe67-4ce8-b712-622a9cf7c4af?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNWExMTY1OWEtZmU2Ny00Y2U4LWI3MTItNjIyYTljZjdjNGFmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"5a11659a-fe67-4ce8-b712-622a9cf7c4af\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T11:06:55.4644094+01: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-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "5b0ec95f-85ed-46bd-98d4-095f879fd17a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14987" + ], + "x-ms-correlation-request-id": [ + "844f9d75-ab9e-4d8b-a661-cfb38e3d8af0" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T100857Z:844f9d75-ab9e-4d8b-a661-cfb38e3d8af0" + ], + "Date": [ + "Tue, 16 Feb 2016 10:08:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/5a11659a-fe67-4ce8-b712-622a9cf7c4af?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNWExMTY1OWEtZmU2Ny00Y2U4LWI3MTItNjIyYTljZjdjNGFmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"5a11659a-fe67-4ce8-b712-622a9cf7c4af\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T11:06:55.4644094+01: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-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "b346211f-fe54-47ff-b2b2-ea771d2a6f10" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14986" + ], + "x-ms-correlation-request-id": [ + "f60c6ecd-82bc-4995-ba62-1d2fe1086d22" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T100927Z:f60c6ecd-82bc-4995-ba62-1d2fe1086d22" + ], + "Date": [ + "Tue, 16 Feb 2016 10:09:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/5a11659a-fe67-4ce8-b712-622a9cf7c4af?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNWExMTY1OWEtZmU2Ny00Y2U4LWI3MTItNjIyYTljZjdjNGFmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"5a11659a-fe67-4ce8-b712-622a9cf7c4af\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-02-16T11:06:55.4644094+01:00\",\r\n \"endTime\": \"2016-02-16T11:09:50.6832001+01: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-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "6bca0da4-9a26-4a6a-9339-2f6acd59c880" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14985" + ], + "x-ms-correlation-request-id": [ + "8a7c1178-6a58-4be3-8912-98a81071b7ad" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T100957Z:8a7c1178-6a58-4be3-8912-98a81071b7ad" + ], + "Date": [ + "Tue, 16 Feb 2016 10:09:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQxOTA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"8db75222-3391-47ad-9403-a276eeb31769\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4190.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4190.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4190.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic0crptestps4190\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic1crptestps4190\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190\",\r\n \"name\": \"vmcrptestps4190\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2222" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "e8f01b50-9d29-4b2b-b035-26210772fe67" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14984" + ], + "x-ms-correlation-request-id": [ + "b0bc0134-a0d1-470d-9f44-71685e938bad" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T100958Z:b0bc0134-a0d1-470d-9f44-71685e938bad" + ], + "Date": [ + "Tue, 16 Feb 2016 10:09:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQxOTA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b126e01b-22b2-4be6-a95d-fa69ce5246e7" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"8db75222-3391-47ad-9403-a276eeb31769\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4190.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4190.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4190.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic0crptestps4190\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic1crptestps4190\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190\",\r\n \"name\": \"vmcrptestps4190\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2222" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "c825c371-5c8c-4f52-a9a5-653b4112e943" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14983" + ], + "x-ms-correlation-request-id": [ + "1db5e67c-8d3a-4576-a4cd-c8ab89acc21e" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T100958Z:1db5e67c-8d3a-4576-a4cd-c8ab89acc21e" + ], + "Date": [ + "Tue, 16 Feb 2016 10:09:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQxOTA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e2ceba31-a7df-415b-9483-df323d6c8c8b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"8db75222-3391-47ad-9403-a276eeb31769\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4190.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4190.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4190.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic0crptestps4190\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic1crptestps4190\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190\",\r\n \"name\": \"vmcrptestps4190\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2222" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "df0a10bb-be57-4949-9cc0-b832ad6fa2fe" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14982" + ], + "x-ms-correlation-request-id": [ + "016782fd-f331-4216-9277-51e2d74581eb" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T100958Z:016782fd-f331-4216-9277-51e2d74581eb" + ], + "Date": [ + "Tue, 16 Feb 2016 10:09:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQxOTA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "261ca321-8724-4655-a6e2-42e30201b0a4" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"8db75222-3391-47ad-9403-a276eeb31769\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4190.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4190.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4190.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic0crptestps4190\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic1crptestps4190\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190\",\r\n \"name\": \"vmcrptestps4190\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2222" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "876fe745-d929-4dff-895c-80204c77fccc" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14981" + ], + "x-ms-correlation-request-id": [ + "05f83b3c-daf6-4f54-b6d7-d76513bfb2d0" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T100958Z:05f83b3c-daf6-4f54-b6d7-d76513bfb2d0" + ], + "Date": [ + "Tue, 16 Feb 2016 10:09:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQxOTA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f01c9b01-de45-4167-897a-00d1b90d9e09" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"8db75222-3391-47ad-9403-a276eeb31769\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4190.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4190.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4190.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic0crptestps4190\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic1crptestps4190\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190\",\r\n \"name\": \"vmcrptestps4190\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2222" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "3c50f5c0-7e49-4d98-8656-63f2e3a76de6" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14980" + ], + "x-ms-correlation-request-id": [ + "9cf3de40-bb32-4263-a20a-853c61d8945f" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T101028Z:9cf3de40-bb32-4263-a20a-853c61d8945f" + ], + "Date": [ + "Tue, 16 Feb 2016 10:10:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQxOTA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f6529d45-6693-4b67-95b5-bb7ef39b0de4" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"8db75222-3391-47ad-9403-a276eeb31769\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4190.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4190.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4190.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic0crptestps4190\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic1crptestps4190\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRQcm9jZXNzb3JUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRJZGxlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50UHJpdmlsZWdlZFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudEludGVycnVwdFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudERQQ1RpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudFVzZXJUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnROaWNlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50SU9XYWl0VGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZE1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxVc2VkTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRBdmFpbGFibGVNZW1vcnkiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRVc2VkQnlDYWNoZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcVXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1BlclNlYyIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1JlYWRQZXJTZWMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcUGFnZXNXcml0dGVuUGVyU2VjIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VUcmFuc2ZlclRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQXZlcmFnZVJlYWRUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VXcml0ZVRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcVHJhbnNmZXJzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFJlYWRzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFdyaXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xCeXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xXcml0ZUJ5dGVzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VEaXNrUXVldWVMZW5ndGgiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVG90YWwiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVHJhbnNtaXR0ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzUmVjZWl2ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXFBhY2tldHNUcmFuc21pdHRlZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcUGFja2V0c1JlY2VpdmVkIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFJ4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFR4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbENvbGxpc2lvbnMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190/extensions/LinuxDiagnostic\",\r\n \"name\": \"LinuxDiagnostic\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190\",\r\n \"name\": \"vmcrptestps4190\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "7987" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "d3455857-ff07-4649-a8f0-59e8390550c1" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14973" + ], + "x-ms-correlation-request-id": [ + "1960bd1e-0345-4db7-bf72-6b35c61c863f" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T101235Z:1960bd1e-0345-4db7-bf72-6b35c61c863f" + ], + "Date": [ + "Tue, 16 Feb 2016 10:12:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQxOTA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b5145643-d773-4679-9c80-780b456149fb" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"8db75222-3391-47ad-9403-a276eeb31769\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4190.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4190.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4190.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic0crptestps4190\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic1crptestps4190\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_DS2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.2\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.2\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"stocrptestps4190.hour.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"stocrptestps4190.minute.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps41902\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps41902.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190/extensions/AzureEnhancedMonitorForLinux\",\r\n \"name\": \"AzureEnhancedMonitorForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRQcm9jZXNzb3JUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRJZGxlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50UHJpdmlsZWdlZFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudEludGVycnVwdFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudERQQ1RpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudFVzZXJUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnROaWNlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50SU9XYWl0VGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZE1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxVc2VkTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRBdmFpbGFibGVNZW1vcnkiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRVc2VkQnlDYWNoZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcVXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1BlclNlYyIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1JlYWRQZXJTZWMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcUGFnZXNXcml0dGVuUGVyU2VjIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VUcmFuc2ZlclRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQXZlcmFnZVJlYWRUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VXcml0ZVRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcVHJhbnNmZXJzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFJlYWRzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFdyaXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xCeXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xXcml0ZUJ5dGVzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VEaXNrUXVldWVMZW5ndGgiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVG90YWwiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVHJhbnNtaXR0ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzUmVjZWl2ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXFBhY2tldHNUcmFuc21pdHRlZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcUGFja2V0c1JlY2VpdmVkIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFJ4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFR4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbENvbGxpc2lvbnMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190/extensions/LinuxDiagnostic\",\r\n \"name\": \"LinuxDiagnostic\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190\",\r\n \"name\": \"vmcrptestps4190\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "9959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "08004705-9ab4-4733-b19f-3c4f7675f19f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14968" + ], + "x-ms-correlation-request-id": [ + "88623240-2ab5-4a2e-811a-11a7c120fd12" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T101408Z:88623240-2ab5-4a2e-811a-11a7c120fd12" + ], + "Date": [ + "Tue, 16 Feb 2016 10:14:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQxOTA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2d0406f6-0117-4ad1-bc08-be1a1b4fc418" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"8db75222-3391-47ad-9403-a276eeb31769\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4190.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4190.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4190.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic0crptestps4190\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic1crptestps4190\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_DS2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.2\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.2\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"stocrptestps4190.hour.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"stocrptestps4190.minute.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps41902\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps41902.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190/extensions/AzureEnhancedMonitorForLinux\",\r\n \"name\": \"AzureEnhancedMonitorForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRQcm9jZXNzb3JUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRJZGxlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50UHJpdmlsZWdlZFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudEludGVycnVwdFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudERQQ1RpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudFVzZXJUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnROaWNlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50SU9XYWl0VGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZE1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxVc2VkTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRBdmFpbGFibGVNZW1vcnkiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRVc2VkQnlDYWNoZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcVXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1BlclNlYyIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1JlYWRQZXJTZWMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcUGFnZXNXcml0dGVuUGVyU2VjIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VUcmFuc2ZlclRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQXZlcmFnZVJlYWRUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VXcml0ZVRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcVHJhbnNmZXJzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFJlYWRzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFdyaXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xCeXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xXcml0ZUJ5dGVzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VEaXNrUXVldWVMZW5ndGgiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVG90YWwiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVHJhbnNtaXR0ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzUmVjZWl2ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXFBhY2tldHNUcmFuc21pdHRlZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcUGFja2V0c1JlY2VpdmVkIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFJ4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFR4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbENvbGxpc2lvbnMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190/extensions/LinuxDiagnostic\",\r\n \"name\": \"LinuxDiagnostic\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190\",\r\n \"name\": \"vmcrptestps4190\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "9959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "6e928767-da30-4b53-bac7-53313c46dae6" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14966" + ], + "x-ms-correlation-request-id": [ + "ef701a95-0c98-4130-a7cc-c5a95e005a1d" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T101408Z:ef701a95-0c98-4130-a7cc-c5a95e005a1d" + ], + "Date": [ + "Tue, 16 Feb 2016 10:14:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQxOTA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f2f6b917-75d2-4ede-898b-aaab5e773d6b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"8db75222-3391-47ad-9403-a276eeb31769\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4190.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4190.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4190.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic0crptestps4190\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic1crptestps4190\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_DS2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.2\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.2\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"stocrptestps4190.hour.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"stocrptestps4190.minute.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps41902\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps41902.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190/extensions/AzureEnhancedMonitorForLinux\",\r\n \"name\": \"AzureEnhancedMonitorForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRQcm9jZXNzb3JUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRJZGxlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50UHJpdmlsZWdlZFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudEludGVycnVwdFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudERQQ1RpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudFVzZXJUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnROaWNlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50SU9XYWl0VGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZE1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxVc2VkTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRBdmFpbGFibGVNZW1vcnkiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRVc2VkQnlDYWNoZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcVXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1BlclNlYyIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1JlYWRQZXJTZWMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcUGFnZXNXcml0dGVuUGVyU2VjIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VUcmFuc2ZlclRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQXZlcmFnZVJlYWRUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VXcml0ZVRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcVHJhbnNmZXJzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFJlYWRzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFdyaXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xCeXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xXcml0ZUJ5dGVzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VEaXNrUXVldWVMZW5ndGgiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVG90YWwiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVHJhbnNtaXR0ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzUmVjZWl2ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXFBhY2tldHNUcmFuc21pdHRlZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcUGFja2V0c1JlY2VpdmVkIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFJ4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFR4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbENvbGxpc2lvbnMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190/extensions/LinuxDiagnostic\",\r\n \"name\": \"LinuxDiagnostic\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190\",\r\n \"name\": \"vmcrptestps4190\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "9959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "c6a1ba4b-f06e-47dc-9124-513a45790b94" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14964" + ], + "x-ms-correlation-request-id": [ + "68548fb0-4aef-4be8-a17d-503e941a6427" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T101415Z:68548fb0-4aef-4be8-a17d-503e941a6427" + ], + "Date": [ + "Tue, 16 Feb 2016 10:14:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQxOTA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bb7b57b8-4229-4772-bbc0-e30ae72b0566" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"8db75222-3391-47ad-9403-a276eeb31769\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4190.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4190.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4190.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic0crptestps4190\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic1crptestps4190\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRQcm9jZXNzb3JUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRJZGxlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50UHJpdmlsZWdlZFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudEludGVycnVwdFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudERQQ1RpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudFVzZXJUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnROaWNlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50SU9XYWl0VGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZE1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxVc2VkTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRBdmFpbGFibGVNZW1vcnkiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRVc2VkQnlDYWNoZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcVXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1BlclNlYyIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1JlYWRQZXJTZWMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcUGFnZXNXcml0dGVuUGVyU2VjIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VUcmFuc2ZlclRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQXZlcmFnZVJlYWRUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VXcml0ZVRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcVHJhbnNmZXJzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFJlYWRzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFdyaXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xCeXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xXcml0ZUJ5dGVzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VEaXNrUXVldWVMZW5ndGgiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVG90YWwiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVHJhbnNtaXR0ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzUmVjZWl2ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXFBhY2tldHNUcmFuc21pdHRlZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcUGFja2V0c1JlY2VpdmVkIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFJ4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFR4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbENvbGxpc2lvbnMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190/extensions/LinuxDiagnostic\",\r\n \"name\": \"LinuxDiagnostic\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190\",\r\n \"name\": \"vmcrptestps4190\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "7987" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "eb4de531-112b-49c5-a3e1-d30b50a1a369" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14961" + ], + "x-ms-correlation-request-id": [ + "8a6bd97a-6cd9-4fe0-b405-e9e03ac428c6" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T101547Z:8a6bd97a-6cd9-4fe0-b405-e9e03ac428c6" + ], + "Date": [ + "Tue, 16 Feb 2016 10:15:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190?$expand=instanceView&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQxOTA/JGV4cGFuZD1pbnN0YW5jZVZpZXcmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d33162ae-5b9b-4257-929b-2a913a68f907" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"8db75222-3391-47ad-9403-a276eeb31769\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4190.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4190.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4190.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic0crptestps4190\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic1crptestps4190\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"WALinuxAgent-2.0.14\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"GuestAgent is running and accepting new configurations.\",\r\n \"time\": \"2016-02-16T11:09:45+01:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"osDisk\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T11:06:56.558167+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T11:06:56.4956556+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T11:06:56.417526+01:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T11:09:50.6206599+01:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n }\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190\",\r\n \"name\": \"vmcrptestps4190\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "4060" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "c6ad93c8-2386-442f-a42a-263157a02951" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14980" + ], + "x-ms-correlation-request-id": [ + "3111dbed-0468-42c8-b3e3-6884e6c88c9e" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T100959Z:3111dbed-0468-42c8-b3e3-6884e6c88c9e" + ], + "Date": [ + "Tue, 16 Feb 2016 10:09:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190?$expand=instanceView&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQxOTA/JGV4cGFuZD1pbnN0YW5jZVZpZXcmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "648ac80c-edb8-47a5-893c-918bab588f31" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"8db75222-3391-47ad-9403-a276eeb31769\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4190.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4190.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4190.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic0crptestps4190\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic1crptestps4190\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"WALinuxAgent-2.0.14\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"GuestAgent is running and accepting new configurations.\",\r\n \"time\": \"2016-02-16T11:10:10+01:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"osDisk\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T11:06:56.558167+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T11:06:56.4956556+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T11:06:56.417526+01:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T11:09:50.6206599+01:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n }\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190\",\r\n \"name\": \"vmcrptestps4190\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "4060" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "ad8979fd-a37a-436e-833b-e372987a0e70" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14979" + ], + "x-ms-correlation-request-id": [ + "11e3015d-e2ef-4da8-8e16-f6b6028e55a5" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T101028Z:11e3015d-e2ef-4da8-8e16-f6b6028e55a5" + ], + "Date": [ + "Tue, 16 Feb 2016 10:10:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190?$expand=instanceView&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQxOTA/JGV4cGFuZD1pbnN0YW5jZVZpZXcmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "134951d8-4b31-4ed2-bb2b-97442af35dd4" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"8db75222-3391-47ad-9403-a276eeb31769\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4190.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4190.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4190.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic0crptestps4190\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic1crptestps4190\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"WALinuxAgent-2.0.14\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"GuestAgent is running and accepting new configurations.\",\r\n \"time\": \"2016-02-16T11:13:45+01:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": [\r\n {\r\n \"type\": \"Microsoft.OSTCExtensions.AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0.0.5\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.OSTCExtensions.LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.2.0\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\"\r\n }\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"osDisk\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T11:12:36.7612867+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T11:12:36.7612867+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T11:12:36.7612867+01:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"extensions\": [\r\n {\r\n \"name\": \"AzureEnhancedMonitorForLinux\",\r\n \"type\": \"Microsoft.OSTCExtensions.AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0.0.5\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"deploymentId=ae601cf5-f3bc-483d-b9b1-7c955bc202ec roleInstance=_vmcrptestps4190 OK\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"LinuxDiagnostic\",\r\n \"type\": \"Microsoft.OSTCExtensions.LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.2.0\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"Enable succeeded\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T11:13:53.6987691+01:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_DS2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.2\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.2\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"stocrptestps4190.hour.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"stocrptestps4190.minute.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps41902\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps41902.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190/extensions/AzureEnhancedMonitorForLinux\",\r\n \"name\": \"AzureEnhancedMonitorForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRQcm9jZXNzb3JUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRJZGxlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50UHJpdmlsZWdlZFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudEludGVycnVwdFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudERQQ1RpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudFVzZXJUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnROaWNlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50SU9XYWl0VGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZE1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxVc2VkTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRBdmFpbGFibGVNZW1vcnkiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRVc2VkQnlDYWNoZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcVXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1BlclNlYyIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1JlYWRQZXJTZWMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcUGFnZXNXcml0dGVuUGVyU2VjIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VUcmFuc2ZlclRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQXZlcmFnZVJlYWRUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VXcml0ZVRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcVHJhbnNmZXJzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFJlYWRzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFdyaXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xCeXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xXcml0ZUJ5dGVzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VEaXNrUXVldWVMZW5ndGgiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVG90YWwiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVHJhbnNtaXR0ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzUmVjZWl2ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXFBhY2tldHNUcmFuc21pdHRlZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcUGFja2V0c1JlY2VpdmVkIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFJ4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFR4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbENvbGxpc2lvbnMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190/extensions/LinuxDiagnostic\",\r\n \"name\": \"LinuxDiagnostic\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190\",\r\n \"name\": \"vmcrptestps4190\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "13399" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "2dea594b-2132-4b32-afe7-803dc04aa69b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14965" + ], + "x-ms-correlation-request-id": [ + "89433ab4-f192-4b3e-8f46-a1aafa4598cb" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T101408Z:89433ab4-f192-4b3e-8f46-a1aafa4598cb" + ], + "Date": [ + "Tue, 16 Feb 2016 10:14:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "86ebe7f3-8c46-4b77-b88c-f4f314ea4ee0" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/ase/providers/Microsoft.Storage/storageAccounts/ase7745\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"ase7745\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-08-22T12:09:54.6487474Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ase7745.blob.core.windows.net/\",\r\n \"file\": \"https://ase7745.file.core.windows.net/\",\r\n \"queue\": \"https://ase7745.queue.core.windows.net/\",\r\n \"table\": \"https://ase7745.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/benolwtlz6gcrtv2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"benolwtlz6gcrtv2\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-02T15:37:42.4160913Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://benolwtlz6gcrtv2.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/sapresourcegroup/providers/Microsoft.Storage/storageAccounts/de8da241d96f400ba8791029\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"de8da241d96f400ba8791029\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-09-18T13:22:47.5628749Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://de8da241d96f400ba8791029.blob.core.windows.net/\",\r\n \"file\": \"https://de8da241d96f400ba8791029.file.core.windows.net/\",\r\n \"queue\": \"https://de8da241d96f400ba8791029.queue.core.windows.net/\",\r\n \"table\": \"https://de8da241d96f400ba8791029.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/group-4/providers/Microsoft.Storage/storageAccounts/dsdevstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"dsdevstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-22T21:10:41.790448Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://dsdevstorage.blob.core.windows.net/\",\r\n \"file\": \"https://dsdevstorage.file.core.windows.net/\",\r\n \"queue\": \"https://dsdevstorage.queue.core.windows.net/\",\r\n \"table\": \"https://dsdevstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduscherp/providers/Microsoft.Storage/storageAccounts/erpio6r4un3ewfnm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"erpio6r4un3ewfnm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-08T12:41:16.6105852Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://erpio6r4un3ewfnm.blob.core.windows.net/\",\r\n \"file\": \"https://erpio6r4un3ewfnm.file.core.windows.net/\",\r\n \"queue\": \"https://erpio6r4un3ewfnm.queue.core.windows.net/\",\r\n \"table\": \"https://erpio6r4un3ewfnm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmpremstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmpremstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:21.7378841Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmpremstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmpremstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmpremstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmpremstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmstdstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmstdstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:22.2160008Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmstdstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmstdstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmstdstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmstdstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-test2/providers/Microsoft.Storage/storageAccounts/gortestacc2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gortestacc2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-08T21:18:17.9028388Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gortestacc2.blob.core.windows.net/\",\r\n \"file\": \"https://gortestacc2.file.core.windows.net/\",\r\n \"queue\": \"https://gortestacc2.queue.core.windows.net/\",\r\n \"table\": \"https://gortestacc2.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-04-16T13:50:52.0015725Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspacepremium\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspacepremium\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-10-23T10:22:10.7216809Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspacepremium.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvmtest/providers/Microsoft.Storage/storageAccounts/lvmtestspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmtestspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T16:56:41.5005505Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmtestspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmtestspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmtestspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmtestspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-eml2/providers/Microsoft.Storage/storageAccounts/rgeml2stacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"rgeml2stacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T08:00:29.8670815Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://rgeml2stacc.blob.core.windows.net/\",\r\n \"file\": \"https://rgeml2stacc.file.core.windows.net/\",\r\n \"queue\": \"https://rgeml2stacc.queue.core.windows.net/\",\r\n \"table\": \"https://rgeml2stacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/sapcalrg/providers/Microsoft.Storage/storageAccounts/sapcalrg8522\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"sapcalrg8522\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-28T06:54:16.0456896Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sapcalrg8522.blob.core.windows.net/\",\r\n \"file\": \"https://sapcalrg8522.file.core.windows.net/\",\r\n \"queue\": \"https://sapcalrg8522.queue.core.windows.net/\",\r\n \"table\": \"https://sapcalrg8522.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/saperpdemo859644\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"saperpdemo859644\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-01-26T11:02:43.8634331Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saperpdemo859644.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1prstacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1prstacc\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-12-10T17:35:29.0415914Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1prstacc.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1ststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1ststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-10T17:36:26.4810072Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1ststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saphana1ststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saphana1ststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saphana1ststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-linux-docu-tests/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saplinuxdocuststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-24T09:25:04.4473982Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-linux-docu-tests-we/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststaccwe\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saplinuxdocuststaccwe\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-25T13:11:50.5477032Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststaccwe.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststaccwe.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststaccwe.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststaccwe.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/sappseduscsape012612030\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"sappseduscsape012612030\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2016-01-26T11:03:56.0307387Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sappseduscsape012612030.blob.core.windows.net/\",\r\n \"file\": \"https://sappseduscsape012612030.file.core.windows.net/\",\r\n \"queue\": \"https://sappseduscsape012612030.queue.core.windows.net/\",\r\n \"table\": \"https://sappseduscsape012612030.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"westeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/saptesiarm/providers/Microsoft.Storage/storageAccounts/saptesiarm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saptesiarm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-08-27T12:13:00.4049179Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptesiarm.blob.core.windows.net/\",\r\n \"file\": \"https://saptesiarm.file.core.windows.net/\",\r\n \"queue\": \"https://saptesiarm.queue.core.windows.net/\",\r\n \"table\": \"https://saptesiarm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/saptestrajrg/providers/Microsoft.Storage/storageAccounts/saptestrajrg4518\",\r\n \"location\": \"westus\",\r\n \"name\": \"saptestrajrg4518\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-07-22T19:24:21.1065762Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptestrajrg4518.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Storage/storageAccounts/stocrptestps4190\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps4190\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-16T10:06:19.4280887Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps4190.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/temptestsap\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"temptestsap\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-10T14:03:58.3799849Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://temptestsap.blob.core.windows.net/\",\r\n \"file\": \"https://temptestsap.file.core.windows.net/\",\r\n \"queue\": \"https://temptestsap.queue.core.windows.net/\",\r\n \"table\": \"https://temptestsap.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "14858" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e7a74d56-61e2-46f0-b8bd-e553fe6b6557" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14954" + ], + "x-ms-correlation-request-id": [ + "e7a74d56-61e2-46f0-b8bd-e553fe6b6557" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T101001Z:e7a74d56-61e2-46f0-b8bd-e553fe6b6557" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Tue, 16 Feb 2016 10:10:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1dce9e85-36c6-4aa6-8b7e-0482a7a791ca" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/ase/providers/Microsoft.Storage/storageAccounts/ase7745\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"ase7745\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-08-22T12:09:54.6487474Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ase7745.blob.core.windows.net/\",\r\n \"file\": \"https://ase7745.file.core.windows.net/\",\r\n \"queue\": \"https://ase7745.queue.core.windows.net/\",\r\n \"table\": \"https://ase7745.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/benolwtlz6gcrtv2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"benolwtlz6gcrtv2\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-02T15:37:42.4160913Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://benolwtlz6gcrtv2.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/sapresourcegroup/providers/Microsoft.Storage/storageAccounts/de8da241d96f400ba8791029\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"de8da241d96f400ba8791029\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-09-18T13:22:47.5628749Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://de8da241d96f400ba8791029.blob.core.windows.net/\",\r\n \"file\": \"https://de8da241d96f400ba8791029.file.core.windows.net/\",\r\n \"queue\": \"https://de8da241d96f400ba8791029.queue.core.windows.net/\",\r\n \"table\": \"https://de8da241d96f400ba8791029.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/group-4/providers/Microsoft.Storage/storageAccounts/dsdevstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"dsdevstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-22T21:10:41.790448Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://dsdevstorage.blob.core.windows.net/\",\r\n \"file\": \"https://dsdevstorage.file.core.windows.net/\",\r\n \"queue\": \"https://dsdevstorage.queue.core.windows.net/\",\r\n \"table\": \"https://dsdevstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduscherp/providers/Microsoft.Storage/storageAccounts/erpio6r4un3ewfnm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"erpio6r4un3ewfnm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-08T12:41:16.6105852Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://erpio6r4un3ewfnm.blob.core.windows.net/\",\r\n \"file\": \"https://erpio6r4un3ewfnm.file.core.windows.net/\",\r\n \"queue\": \"https://erpio6r4un3ewfnm.queue.core.windows.net/\",\r\n \"table\": \"https://erpio6r4un3ewfnm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmpremstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmpremstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:21.7378841Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmpremstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmpremstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmpremstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmpremstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmstdstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmstdstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:22.2160008Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmstdstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmstdstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmstdstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmstdstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-test2/providers/Microsoft.Storage/storageAccounts/gortestacc2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gortestacc2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-08T21:18:17.9028388Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gortestacc2.blob.core.windows.net/\",\r\n \"file\": \"https://gortestacc2.file.core.windows.net/\",\r\n \"queue\": \"https://gortestacc2.queue.core.windows.net/\",\r\n \"table\": \"https://gortestacc2.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-04-16T13:50:52.0015725Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspacepremium\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspacepremium\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-10-23T10:22:10.7216809Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspacepremium.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvmtest/providers/Microsoft.Storage/storageAccounts/lvmtestspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmtestspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T16:56:41.5005505Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmtestspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmtestspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmtestspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmtestspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-eml2/providers/Microsoft.Storage/storageAccounts/rgeml2stacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"rgeml2stacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T08:00:29.8670815Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://rgeml2stacc.blob.core.windows.net/\",\r\n \"file\": \"https://rgeml2stacc.file.core.windows.net/\",\r\n \"queue\": \"https://rgeml2stacc.queue.core.windows.net/\",\r\n \"table\": \"https://rgeml2stacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/sapcalrg/providers/Microsoft.Storage/storageAccounts/sapcalrg8522\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"sapcalrg8522\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-28T06:54:16.0456896Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sapcalrg8522.blob.core.windows.net/\",\r\n \"file\": \"https://sapcalrg8522.file.core.windows.net/\",\r\n \"queue\": \"https://sapcalrg8522.queue.core.windows.net/\",\r\n \"table\": \"https://sapcalrg8522.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/saperpdemo859644\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"saperpdemo859644\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-01-26T11:02:43.8634331Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saperpdemo859644.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1prstacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1prstacc\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-12-10T17:35:29.0415914Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1prstacc.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1ststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1ststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-10T17:36:26.4810072Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1ststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saphana1ststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saphana1ststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saphana1ststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-linux-docu-tests/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saplinuxdocuststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-24T09:25:04.4473982Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-linux-docu-tests-we/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststaccwe\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saplinuxdocuststaccwe\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-25T13:11:50.5477032Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststaccwe.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststaccwe.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststaccwe.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststaccwe.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/sappseduscsape012612030\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"sappseduscsape012612030\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2016-01-26T11:03:56.0307387Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sappseduscsape012612030.blob.core.windows.net/\",\r\n \"file\": \"https://sappseduscsape012612030.file.core.windows.net/\",\r\n \"queue\": \"https://sappseduscsape012612030.queue.core.windows.net/\",\r\n \"table\": \"https://sappseduscsape012612030.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"westeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/saptesiarm/providers/Microsoft.Storage/storageAccounts/saptesiarm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saptesiarm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-08-27T12:13:00.4049179Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptesiarm.blob.core.windows.net/\",\r\n \"file\": \"https://saptesiarm.file.core.windows.net/\",\r\n \"queue\": \"https://saptesiarm.queue.core.windows.net/\",\r\n \"table\": \"https://saptesiarm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/saptestrajrg/providers/Microsoft.Storage/storageAccounts/saptestrajrg4518\",\r\n \"location\": \"westus\",\r\n \"name\": \"saptestrajrg4518\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-07-22T19:24:21.1065762Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptestrajrg4518.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Storage/storageAccounts/stocrptestps4190\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps4190\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-16T10:06:19.4280887Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps4190.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Storage/storageAccounts/stocrptestps41902\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps41902\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T10:10:01.8371302Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps41902.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps41902.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps41902.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps41902.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/temptestsap\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"temptestsap\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-10T14:03:58.3799849Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://temptestsap.blob.core.windows.net/\",\r\n \"file\": \"https://temptestsap.file.core.windows.net/\",\r\n \"queue\": \"https://temptestsap.queue.core.windows.net/\",\r\n \"table\": \"https://temptestsap.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "15546" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "43441199-5c03-42bd-90a2-dab3e8051b6d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14950" + ], + "x-ms-correlation-request-id": [ + "43441199-5c03-42bd-90a2-dab3e8051b6d" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T101029Z:43441199-5c03-42bd-90a2-dab3e8051b6d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Tue, 16 Feb 2016 10:10:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e987fe23-f1c9-4e75-8fb7-7e24026d3196" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/ase/providers/Microsoft.Storage/storageAccounts/ase7745\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"ase7745\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-08-22T12:09:54.6487474Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ase7745.blob.core.windows.net/\",\r\n \"file\": \"https://ase7745.file.core.windows.net/\",\r\n \"queue\": \"https://ase7745.queue.core.windows.net/\",\r\n \"table\": \"https://ase7745.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/benolwtlz6gcrtv2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"benolwtlz6gcrtv2\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-02T15:37:42.4160913Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://benolwtlz6gcrtv2.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/sapresourcegroup/providers/Microsoft.Storage/storageAccounts/de8da241d96f400ba8791029\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"de8da241d96f400ba8791029\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-09-18T13:22:47.5628749Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://de8da241d96f400ba8791029.blob.core.windows.net/\",\r\n \"file\": \"https://de8da241d96f400ba8791029.file.core.windows.net/\",\r\n \"queue\": \"https://de8da241d96f400ba8791029.queue.core.windows.net/\",\r\n \"table\": \"https://de8da241d96f400ba8791029.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/group-4/providers/Microsoft.Storage/storageAccounts/dsdevstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"dsdevstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-22T21:10:41.790448Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://dsdevstorage.blob.core.windows.net/\",\r\n \"file\": \"https://dsdevstorage.file.core.windows.net/\",\r\n \"queue\": \"https://dsdevstorage.queue.core.windows.net/\",\r\n \"table\": \"https://dsdevstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduscherp/providers/Microsoft.Storage/storageAccounts/erpio6r4un3ewfnm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"erpio6r4un3ewfnm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-08T12:41:16.6105852Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://erpio6r4un3ewfnm.blob.core.windows.net/\",\r\n \"file\": \"https://erpio6r4un3ewfnm.file.core.windows.net/\",\r\n \"queue\": \"https://erpio6r4un3ewfnm.queue.core.windows.net/\",\r\n \"table\": \"https://erpio6r4un3ewfnm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmpremstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmpremstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:21.7378841Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmpremstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmpremstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmpremstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmpremstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmstdstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmstdstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:22.2160008Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmstdstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmstdstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmstdstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmstdstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-test2/providers/Microsoft.Storage/storageAccounts/gortestacc2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gortestacc2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-08T21:18:17.9028388Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gortestacc2.blob.core.windows.net/\",\r\n \"file\": \"https://gortestacc2.file.core.windows.net/\",\r\n \"queue\": \"https://gortestacc2.queue.core.windows.net/\",\r\n \"table\": \"https://gortestacc2.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-04-16T13:50:52.0015725Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspacepremium\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspacepremium\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-10-23T10:22:10.7216809Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspacepremium.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvmtest/providers/Microsoft.Storage/storageAccounts/lvmtestspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmtestspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T16:56:41.5005505Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmtestspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmtestspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmtestspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmtestspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-eml2/providers/Microsoft.Storage/storageAccounts/rgeml2stacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"rgeml2stacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T08:00:29.8670815Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://rgeml2stacc.blob.core.windows.net/\",\r\n \"file\": \"https://rgeml2stacc.file.core.windows.net/\",\r\n \"queue\": \"https://rgeml2stacc.queue.core.windows.net/\",\r\n \"table\": \"https://rgeml2stacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/sapcalrg/providers/Microsoft.Storage/storageAccounts/sapcalrg8522\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"sapcalrg8522\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-28T06:54:16.0456896Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sapcalrg8522.blob.core.windows.net/\",\r\n \"file\": \"https://sapcalrg8522.file.core.windows.net/\",\r\n \"queue\": \"https://sapcalrg8522.queue.core.windows.net/\",\r\n \"table\": \"https://sapcalrg8522.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/saperpdemo859644\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"saperpdemo859644\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-01-26T11:02:43.8634331Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saperpdemo859644.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1prstacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1prstacc\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-12-10T17:35:29.0415914Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1prstacc.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1ststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1ststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-10T17:36:26.4810072Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1ststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saphana1ststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saphana1ststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saphana1ststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-linux-docu-tests/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saplinuxdocuststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-24T09:25:04.4473982Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-linux-docu-tests-we/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststaccwe\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saplinuxdocuststaccwe\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-25T13:11:50.5477032Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststaccwe.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststaccwe.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststaccwe.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststaccwe.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/sappseduscsape012612030\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"sappseduscsape012612030\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2016-01-26T11:03:56.0307387Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sappseduscsape012612030.blob.core.windows.net/\",\r\n \"file\": \"https://sappseduscsape012612030.file.core.windows.net/\",\r\n \"queue\": \"https://sappseduscsape012612030.queue.core.windows.net/\",\r\n \"table\": \"https://sappseduscsape012612030.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"westeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/saptesiarm/providers/Microsoft.Storage/storageAccounts/saptesiarm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saptesiarm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-08-27T12:13:00.4049179Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptesiarm.blob.core.windows.net/\",\r\n \"file\": \"https://saptesiarm.file.core.windows.net/\",\r\n \"queue\": \"https://saptesiarm.queue.core.windows.net/\",\r\n \"table\": \"https://saptesiarm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/saptestrajrg/providers/Microsoft.Storage/storageAccounts/saptestrajrg4518\",\r\n \"location\": \"westus\",\r\n \"name\": \"saptestrajrg4518\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-07-22T19:24:21.1065762Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptestrajrg4518.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Storage/storageAccounts/stocrptestps4190\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps4190\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-16T10:06:19.4280887Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps4190.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Storage/storageAccounts/stocrptestps41902\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps41902\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T10:10:01.8371302Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps41902.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps41902.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps41902.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps41902.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/temptestsap\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"temptestsap\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-10T14:03:58.3799849Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://temptestsap.blob.core.windows.net/\",\r\n \"file\": \"https://temptestsap.file.core.windows.net/\",\r\n \"queue\": \"https://temptestsap.queue.core.windows.net/\",\r\n \"table\": \"https://temptestsap.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "15546" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "fcc3d5dd-b9cc-4c2f-b435-1fb8cae937d7" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14949" + ], + "x-ms-correlation-request-id": [ + "fcc3d5dd-b9cc-4c2f-b435-1fb8cae937d7" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T101030Z:fcc3d5dd-b9cc-4c2f-b435-1fb8cae937d7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Tue, 16 Feb 2016 10:10:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ccc40cd5-b300-4c1d-9c4e-b6ecdfc12adb" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/ase/providers/Microsoft.Storage/storageAccounts/ase7745\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"ase7745\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-08-22T12:09:54.6487474Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ase7745.blob.core.windows.net/\",\r\n \"file\": \"https://ase7745.file.core.windows.net/\",\r\n \"queue\": \"https://ase7745.queue.core.windows.net/\",\r\n \"table\": \"https://ase7745.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/benolwtlz6gcrtv2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"benolwtlz6gcrtv2\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-02T15:37:42.4160913Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://benolwtlz6gcrtv2.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/sapresourcegroup/providers/Microsoft.Storage/storageAccounts/de8da241d96f400ba8791029\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"de8da241d96f400ba8791029\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-09-18T13:22:47.5628749Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://de8da241d96f400ba8791029.blob.core.windows.net/\",\r\n \"file\": \"https://de8da241d96f400ba8791029.file.core.windows.net/\",\r\n \"queue\": \"https://de8da241d96f400ba8791029.queue.core.windows.net/\",\r\n \"table\": \"https://de8da241d96f400ba8791029.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/group-4/providers/Microsoft.Storage/storageAccounts/dsdevstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"dsdevstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-22T21:10:41.790448Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://dsdevstorage.blob.core.windows.net/\",\r\n \"file\": \"https://dsdevstorage.file.core.windows.net/\",\r\n \"queue\": \"https://dsdevstorage.queue.core.windows.net/\",\r\n \"table\": \"https://dsdevstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduscherp/providers/Microsoft.Storage/storageAccounts/erpio6r4un3ewfnm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"erpio6r4un3ewfnm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-08T12:41:16.6105852Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://erpio6r4un3ewfnm.blob.core.windows.net/\",\r\n \"file\": \"https://erpio6r4un3ewfnm.file.core.windows.net/\",\r\n \"queue\": \"https://erpio6r4un3ewfnm.queue.core.windows.net/\",\r\n \"table\": \"https://erpio6r4un3ewfnm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmpremstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmpremstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:21.7378841Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmpremstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmpremstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmpremstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmpremstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmstdstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmstdstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:22.2160008Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmstdstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmstdstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmstdstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmstdstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-test2/providers/Microsoft.Storage/storageAccounts/gortestacc2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gortestacc2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-08T21:18:17.9028388Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gortestacc2.blob.core.windows.net/\",\r\n \"file\": \"https://gortestacc2.file.core.windows.net/\",\r\n \"queue\": \"https://gortestacc2.queue.core.windows.net/\",\r\n \"table\": \"https://gortestacc2.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-04-16T13:50:52.0015725Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspacepremium\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspacepremium\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-10-23T10:22:10.7216809Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspacepremium.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvmtest/providers/Microsoft.Storage/storageAccounts/lvmtestspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmtestspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T16:56:41.5005505Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmtestspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmtestspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmtestspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmtestspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-eml2/providers/Microsoft.Storage/storageAccounts/rgeml2stacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"rgeml2stacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T08:00:29.8670815Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://rgeml2stacc.blob.core.windows.net/\",\r\n \"file\": \"https://rgeml2stacc.file.core.windows.net/\",\r\n \"queue\": \"https://rgeml2stacc.queue.core.windows.net/\",\r\n \"table\": \"https://rgeml2stacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/sapcalrg/providers/Microsoft.Storage/storageAccounts/sapcalrg8522\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"sapcalrg8522\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-28T06:54:16.0456896Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sapcalrg8522.blob.core.windows.net/\",\r\n \"file\": \"https://sapcalrg8522.file.core.windows.net/\",\r\n \"queue\": \"https://sapcalrg8522.queue.core.windows.net/\",\r\n \"table\": \"https://sapcalrg8522.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/saperpdemo859644\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"saperpdemo859644\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-01-26T11:02:43.8634331Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saperpdemo859644.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1prstacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1prstacc\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-12-10T17:35:29.0415914Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1prstacc.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1ststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1ststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-10T17:36:26.4810072Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1ststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saphana1ststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saphana1ststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saphana1ststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-linux-docu-tests/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saplinuxdocuststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-24T09:25:04.4473982Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-linux-docu-tests-we/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststaccwe\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saplinuxdocuststaccwe\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-25T13:11:50.5477032Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststaccwe.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststaccwe.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststaccwe.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststaccwe.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/sappseduscsape012612030\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"sappseduscsape012612030\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2016-01-26T11:03:56.0307387Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sappseduscsape012612030.blob.core.windows.net/\",\r\n \"file\": \"https://sappseduscsape012612030.file.core.windows.net/\",\r\n \"queue\": \"https://sappseduscsape012612030.queue.core.windows.net/\",\r\n \"table\": \"https://sappseduscsape012612030.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"westeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/saptesiarm/providers/Microsoft.Storage/storageAccounts/saptesiarm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saptesiarm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-08-27T12:13:00.4049179Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptesiarm.blob.core.windows.net/\",\r\n \"file\": \"https://saptesiarm.file.core.windows.net/\",\r\n \"queue\": \"https://saptesiarm.queue.core.windows.net/\",\r\n \"table\": \"https://saptesiarm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/saptestrajrg/providers/Microsoft.Storage/storageAccounts/saptestrajrg4518\",\r\n \"location\": \"westus\",\r\n \"name\": \"saptestrajrg4518\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-07-22T19:24:21.1065762Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptestrajrg4518.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Storage/storageAccounts/stocrptestps4190\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps4190\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-16T10:06:19.4280887Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps4190.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Storage/storageAccounts/stocrptestps41902\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps41902\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T10:10:01.8371302Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps41902.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps41902.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps41902.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps41902.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/temptestsap\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"temptestsap\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-10T14:03:58.3799849Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://temptestsap.blob.core.windows.net/\",\r\n \"file\": \"https://temptestsap.file.core.windows.net/\",\r\n \"queue\": \"https://temptestsap.queue.core.windows.net/\",\r\n \"table\": \"https://temptestsap.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "15546" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "6f9556fd-b592-4013-b551-9f952a10ea23" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14937" + ], + "x-ms-correlation-request-id": [ + "6f9556fd-b592-4013-b551-9f952a10ea23" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T101413Z:6f9556fd-b592-4013-b551-9f952a10ea23" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Tue, 16 Feb 2016 10:14:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6736ac81-44d8-4d5c-8132-6d4c95f17195" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/ase/providers/Microsoft.Storage/storageAccounts/ase7745\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"ase7745\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-08-22T12:09:54.6487474Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ase7745.blob.core.windows.net/\",\r\n \"file\": \"https://ase7745.file.core.windows.net/\",\r\n \"queue\": \"https://ase7745.queue.core.windows.net/\",\r\n \"table\": \"https://ase7745.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/benolwtlz6gcrtv2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"benolwtlz6gcrtv2\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-02T15:37:42.4160913Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://benolwtlz6gcrtv2.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/sapresourcegroup/providers/Microsoft.Storage/storageAccounts/de8da241d96f400ba8791029\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"de8da241d96f400ba8791029\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-09-18T13:22:47.5628749Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://de8da241d96f400ba8791029.blob.core.windows.net/\",\r\n \"file\": \"https://de8da241d96f400ba8791029.file.core.windows.net/\",\r\n \"queue\": \"https://de8da241d96f400ba8791029.queue.core.windows.net/\",\r\n \"table\": \"https://de8da241d96f400ba8791029.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/group-4/providers/Microsoft.Storage/storageAccounts/dsdevstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"dsdevstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-22T21:10:41.790448Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://dsdevstorage.blob.core.windows.net/\",\r\n \"file\": \"https://dsdevstorage.file.core.windows.net/\",\r\n \"queue\": \"https://dsdevstorage.queue.core.windows.net/\",\r\n \"table\": \"https://dsdevstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduscherp/providers/Microsoft.Storage/storageAccounts/erpio6r4un3ewfnm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"erpio6r4un3ewfnm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-08T12:41:16.6105852Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://erpio6r4un3ewfnm.blob.core.windows.net/\",\r\n \"file\": \"https://erpio6r4un3ewfnm.file.core.windows.net/\",\r\n \"queue\": \"https://erpio6r4un3ewfnm.queue.core.windows.net/\",\r\n \"table\": \"https://erpio6r4un3ewfnm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmpremstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmpremstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:21.7378841Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmpremstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmpremstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmpremstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmpremstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmstdstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmstdstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:22.2160008Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmstdstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmstdstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmstdstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmstdstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-test2/providers/Microsoft.Storage/storageAccounts/gortestacc2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gortestacc2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-08T21:18:17.9028388Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gortestacc2.blob.core.windows.net/\",\r\n \"file\": \"https://gortestacc2.file.core.windows.net/\",\r\n \"queue\": \"https://gortestacc2.queue.core.windows.net/\",\r\n \"table\": \"https://gortestacc2.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-04-16T13:50:52.0015725Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspacepremium\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspacepremium\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-10-23T10:22:10.7216809Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspacepremium.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvmtest/providers/Microsoft.Storage/storageAccounts/lvmtestspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmtestspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T16:56:41.5005505Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmtestspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmtestspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmtestspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmtestspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-eml2/providers/Microsoft.Storage/storageAccounts/rgeml2stacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"rgeml2stacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T08:00:29.8670815Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://rgeml2stacc.blob.core.windows.net/\",\r\n \"file\": \"https://rgeml2stacc.file.core.windows.net/\",\r\n \"queue\": \"https://rgeml2stacc.queue.core.windows.net/\",\r\n \"table\": \"https://rgeml2stacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/sapcalrg/providers/Microsoft.Storage/storageAccounts/sapcalrg8522\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"sapcalrg8522\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-28T06:54:16.0456896Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sapcalrg8522.blob.core.windows.net/\",\r\n \"file\": \"https://sapcalrg8522.file.core.windows.net/\",\r\n \"queue\": \"https://sapcalrg8522.queue.core.windows.net/\",\r\n \"table\": \"https://sapcalrg8522.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/saperpdemo859644\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"saperpdemo859644\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-01-26T11:02:43.8634331Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saperpdemo859644.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1prstacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1prstacc\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-12-10T17:35:29.0415914Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1prstacc.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1ststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1ststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-10T17:36:26.4810072Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1ststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saphana1ststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saphana1ststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saphana1ststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-linux-docu-tests/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saplinuxdocuststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-24T09:25:04.4473982Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-linux-docu-tests-we/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststaccwe\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saplinuxdocuststaccwe\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-25T13:11:50.5477032Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststaccwe.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststaccwe.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststaccwe.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststaccwe.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/sappseduscsape012612030\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"sappseduscsape012612030\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2016-01-26T11:03:56.0307387Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sappseduscsape012612030.blob.core.windows.net/\",\r\n \"file\": \"https://sappseduscsape012612030.file.core.windows.net/\",\r\n \"queue\": \"https://sappseduscsape012612030.queue.core.windows.net/\",\r\n \"table\": \"https://sappseduscsape012612030.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"westeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/saptesiarm/providers/Microsoft.Storage/storageAccounts/saptesiarm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saptesiarm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-08-27T12:13:00.4049179Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptesiarm.blob.core.windows.net/\",\r\n \"file\": \"https://saptesiarm.file.core.windows.net/\",\r\n \"queue\": \"https://saptesiarm.queue.core.windows.net/\",\r\n \"table\": \"https://saptesiarm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/saptestrajrg/providers/Microsoft.Storage/storageAccounts/saptestrajrg4518\",\r\n \"location\": \"westus\",\r\n \"name\": \"saptestrajrg4518\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-07-22T19:24:21.1065762Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptestrajrg4518.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Storage/storageAccounts/stocrptestps4190\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps4190\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-16T10:06:19.4280887Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps4190.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Storage/storageAccounts/stocrptestps41902\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps41902\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T10:10:01.8371302Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps41902.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps41902.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps41902.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps41902.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/temptestsap\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"temptestsap\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-10T14:03:58.3799849Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://temptestsap.blob.core.windows.net/\",\r\n \"file\": \"https://temptestsap.file.core.windows.net/\",\r\n \"queue\": \"https://temptestsap.queue.core.windows.net/\",\r\n \"table\": \"https://temptestsap.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "15546" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "0a8bef73-08b5-4f25-b7d2-9d6cfd815f2d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14936" + ], + "x-ms-correlation-request-id": [ + "0a8bef73-08b5-4f25-b7d2-9d6cfd815f2d" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T101414Z:0a8bef73-08b5-4f25-b7d2-9d6cfd815f2d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Tue, 16 Feb 2016 10:14:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Storage/storageAccounts/stocrptestps41902?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM0MTkwMj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "89" + ], + "x-ms-client-request-id": [ + "7858239d-b60f-494d-b13e-1737a2fe0085" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "25" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "88ed99d5-ce6a-4091-8f32-1cee75e13967" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Storage/operations/f3fb3d5f-4005-4642-82d9-6a5999e9caf4?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "88ed99d5-ce6a-4091-8f32-1cee75e13967" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T101002Z:88ed99d5-ce6a-4091-8f32-1cee75e13967" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Tue, 16 Feb 2016 10:10:01 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Storage/operations/f3fb3d5f-4005-4642-82d9-6a5999e9caf4?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2YzZmIzZDVmLTQwMDUtNDY0Mi04MmQ5LTZhNTk5OWU5Y2FmND9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "77f883a7-7d34-45a6-910f-79646bff095b" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "25" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14953" + ], + "x-ms-request-id": [ + "ea84a12b-27e9-4689-945f-7179f498a225" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Storage/operations/f3fb3d5f-4005-4642-82d9-6a5999e9caf4?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "ea84a12b-27e9-4689-945f-7179f498a225" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T101003Z:ea84a12b-27e9-4689-945f-7179f498a225" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Tue, 16 Feb 2016 10:10:02 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Storage/operations/f3fb3d5f-4005-4642-82d9-6a5999e9caf4?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2YzZmIzZDVmLTQwMDUtNDY0Mi04MmQ5LTZhNTk5OWU5Y2FmND9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cfb44fb5-00b2-4716-a08e-64a8fec04180" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "89" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c681fe9e-e5b1-4b24-80f6-3be00bb1096b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14952" + ], + "x-ms-correlation-request-id": [ + "c681fe9e-e5b1-4b24-80f6-3be00bb1096b" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T101028Z:c681fe9e-e5b1-4b24-80f6-3be00bb1096b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Tue, 16 Feb 2016 10:10:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Storage/storageAccounts/stocrptestps41902?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM0MTkwMj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ed004706-66da-42ae-9506-1fb6c5de3f4d" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Storage/storageAccounts/stocrptestps41902\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps41902\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T10:10:01.8371302Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps41902.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps41902.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps41902.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps41902.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "688" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "1974473d-62ed-4e28-b2e7-d9ada3e17efb" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14951" + ], + "x-ms-correlation-request-id": [ + "1974473d-62ed-4e28-b2e7-d9ada3e17efb" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T101028Z:1974473d-62ed-4e28-b2e7-d9ada3e17efb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Tue, 16 Feb 2016 10:10:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Storage/storageAccounts/stocrptestps41902/listKeys?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM0MTkwMi9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c2049769-b019-4555-9431-e6ec44a586b6" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"key1\": \"rScet1r0e9FtH/vlbBAxc3Vo2azOLDyJh7T6ZNahDpnU+C89PaNfnFnox+jZcg0L4YwYcoy9h/cpylY//qEFeg==\",\r\n \"key2\": \"w1W3rLCfv/YxbWBLNnXsJkv5U/aUjTDrI1xyAuAVl+ha5C25mm1Ne10WQM13BeZPu8S5O/myFBtJyOas72aJ4w==\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "198" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "86ba6777-4d03-4239-9710-c7ed1ba2d7f4" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "86ba6777-4d03-4239-9710-c7ed1ba2d7f4" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T101030Z:86ba6777-4d03-4239-9710-c7ed1ba2d7f4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Tue, 16 Feb 2016 10:10:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Storage/storageAccounts/stocrptestps41902/listKeys?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM0MTkwMi9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "78870083-36d1-4be2-a28f-21bdda20c5f6" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"key1\": \"rScet1r0e9FtH/vlbBAxc3Vo2azOLDyJh7T6ZNahDpnU+C89PaNfnFnox+jZcg0L4YwYcoy9h/cpylY//qEFeg==\",\r\n \"key2\": \"w1W3rLCfv/YxbWBLNnXsJkv5U/aUjTDrI1xyAuAVl+ha5C25mm1Ne10WQM13BeZPu8S5O/myFBtJyOas72aJ4w==\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "198" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "1f574d6a-ea6e-4594-a5b8-3a9450751c85" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "1f574d6a-ea6e-4594-a5b8-3a9450751c85" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T101414Z:1f574d6a-ea6e-4594-a5b8-3a9450751c85" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Tue, 16 Feb 2016 10:14:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190/extensions/LinuxDiagnostic?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQxOTAvZXh0ZW5zaW9ucy9MaW51eERpYWdub3N0aWM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRQcm9jZXNzb3JUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRJZGxlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50UHJpdmlsZWdlZFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudEludGVycnVwdFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudERQQ1RpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudFVzZXJUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnROaWNlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50SU9XYWl0VGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZE1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxVc2VkTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRBdmFpbGFibGVNZW1vcnkiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRVc2VkQnlDYWNoZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcVXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1BlclNlYyIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1JlYWRQZXJTZWMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcUGFnZXNXcml0dGVuUGVyU2VjIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VUcmFuc2ZlclRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQXZlcmFnZVJlYWRUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VXcml0ZVRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcVHJhbnNmZXJzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFJlYWRzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFdyaXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xCeXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xXcml0ZUJ5dGVzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VEaXNrUXVldWVMZW5ndGgiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVG90YWwiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVHJhbnNtaXR0ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzUmVjZWl2ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXFBhY2tldHNUcmFuc21pdHRlZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcUGFja2V0c1JlY2VpdmVkIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFJ4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFR4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbENvbGxpc2lvbnMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"protectedSettings\": {\r\n \"storageAccountName\": \"stocrptestps41902\",\r\n \"storageAccountKey\": \"rScet1r0e9FtH/vlbBAxc3Vo2azOLDyJh7T6ZNahDpnU+C89PaNfnFnox+jZcg0L4YwYcoy9h/cpylY//qEFeg==\",\r\n \"storageAccountEndPoint\": \"https://core.windows.net\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "5617" + ], + "x-ms-client-request-id": [ + "ac04ad62-6d68-418f-992d-786d032d3150" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRQcm9jZXNzb3JUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRJZGxlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50UHJpdmlsZWdlZFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudEludGVycnVwdFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudERQQ1RpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudFVzZXJUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnROaWNlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50SU9XYWl0VGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZE1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxVc2VkTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRBdmFpbGFibGVNZW1vcnkiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRVc2VkQnlDYWNoZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcVXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1BlclNlYyIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1JlYWRQZXJTZWMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcUGFnZXNXcml0dGVuUGVyU2VjIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VUcmFuc2ZlclRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQXZlcmFnZVJlYWRUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VXcml0ZVRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcVHJhbnNmZXJzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFJlYWRzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFdyaXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xCeXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xXcml0ZUJ5dGVzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VEaXNrUXVldWVMZW5ndGgiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVG90YWwiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVHJhbnNtaXR0ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzUmVjZWl2ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXFBhY2tldHNUcmFuc21pdHRlZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcUGFja2V0c1JlY2VpdmVkIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFJ4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFR4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbENvbGxpc2lvbnMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190/extensions/LinuxDiagnostic\",\r\n \"name\": \"LinuxDiagnostic\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "5682" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/76aa3d8a-20aa-47af-ab01-f3847ff32183?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "76aa3d8a-20aa-47af-ab01-f3847ff32183" + ], + "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": [ + "102f9a39-8531-4a4f-beb9-f859e6b448d4" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T101032Z:102f9a39-8531-4a4f-beb9-f859e6b448d4" + ], + "Date": [ + "Tue, 16 Feb 2016 10:10:32 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/76aa3d8a-20aa-47af-ab01-f3847ff32183?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNzZhYTNkOGEtMjBhYS00N2FmLWFiMDEtZjM4NDdmZjMyMTgzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"76aa3d8a-20aa-47af-ab01-f3847ff32183\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T11:10:32.2768837+01: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-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "432b6a6d-5b0b-46a1-8f48-a796bbda01aa" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14978" + ], + "x-ms-correlation-request-id": [ + "61723925-bf8a-49ea-801b-4bc17766f8cf" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T101103Z:61723925-bf8a-49ea-801b-4bc17766f8cf" + ], + "Date": [ + "Tue, 16 Feb 2016 10:11:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/76aa3d8a-20aa-47af-ab01-f3847ff32183?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNzZhYTNkOGEtMjBhYS00N2FmLWFiMDEtZjM4NDdmZjMyMTgzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"76aa3d8a-20aa-47af-ab01-f3847ff32183\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T11:10:32.2768837+01: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-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "5a9c002f-bebd-4be9-95df-2835bc7a9279" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14977" + ], + "x-ms-correlation-request-id": [ + "b0adbded-96d8-4dd3-b5f7-04038a5db2cb" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T101133Z:b0adbded-96d8-4dd3-b5f7-04038a5db2cb" + ], + "Date": [ + "Tue, 16 Feb 2016 10:11:33 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/76aa3d8a-20aa-47af-ab01-f3847ff32183?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNzZhYTNkOGEtMjBhYS00N2FmLWFiMDEtZjM4NDdmZjMyMTgzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"76aa3d8a-20aa-47af-ab01-f3847ff32183\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T11:10:32.2768837+01: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-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "c2d3f359-5829-4fdb-a27a-783f397e5827" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14976" + ], + "x-ms-correlation-request-id": [ + "c54b23b8-be30-4c1b-8edd-369bd8ac085a" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T101203Z:c54b23b8-be30-4c1b-8edd-369bd8ac085a" + ], + "Date": [ + "Tue, 16 Feb 2016 10:12:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/76aa3d8a-20aa-47af-ab01-f3847ff32183?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNzZhYTNkOGEtMjBhYS00N2FmLWFiMDEtZjM4NDdmZjMyMTgzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"76aa3d8a-20aa-47af-ab01-f3847ff32183\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-02-16T11:10:32.2768837+01:00\",\r\n \"endTime\": \"2016-02-16T11:12:14.5425256+01: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-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "128d295c-759d-4f70-a16b-0e05134e14d6" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14975" + ], + "x-ms-correlation-request-id": [ + "9ae5828b-1fde-4581-b02c-a0413c796ff8" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T101233Z:9ae5828b-1fde-4581-b02c-a0413c796ff8" + ], + "Date": [ + "Tue, 16 Feb 2016 10:12:33 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190/extensions/LinuxDiagnostic?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQxOTAvZXh0ZW5zaW9ucy9MaW51eERpYWdub3N0aWM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRQcm9jZXNzb3JUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRJZGxlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50UHJpdmlsZWdlZFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudEludGVycnVwdFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudERQQ1RpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudFVzZXJUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnROaWNlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50SU9XYWl0VGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZE1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxVc2VkTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRBdmFpbGFibGVNZW1vcnkiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRVc2VkQnlDYWNoZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcVXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1BlclNlYyIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1JlYWRQZXJTZWMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcUGFnZXNXcml0dGVuUGVyU2VjIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VUcmFuc2ZlclRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQXZlcmFnZVJlYWRUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VXcml0ZVRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcVHJhbnNmZXJzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFJlYWRzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFdyaXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xCeXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xXcml0ZUJ5dGVzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VEaXNrUXVldWVMZW5ndGgiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVG90YWwiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVHJhbnNtaXR0ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzUmVjZWl2ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXFBhY2tldHNUcmFuc21pdHRlZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcUGFja2V0c1JlY2VpdmVkIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFJ4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFR4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbENvbGxpc2lvbnMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190/extensions/LinuxDiagnostic\",\r\n \"name\": \"LinuxDiagnostic\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "5683" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "e7504bcc-b8f1-4d7d-9d3f-bace696d7dd3" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14974" + ], + "x-ms-correlation-request-id": [ + "e167bc0f-8643-4006-aa57-f0b6d7c1176e" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T101234Z:e167bc0f-8643-4006-aa57-f0b6d7c1176e" + ], + "Date": [ + "Tue, 16 Feb 2016 10:12:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190/extensions/AzureEnhancedMonitorForLinux?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQxOTAvZXh0ZW5zaW9ucy9BenVyZUVuaGFuY2VkTW9uaXRvckZvckxpbnV4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_DS2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.2\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.2\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"stocrptestps4190.hour.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"stocrptestps4190.minute.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps41902\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps41902.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"protectedSettings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"wad.key\",\r\n \"value\": \"rScet1r0e9FtH/vlbBAxc3Vo2azOLDyJh7T6ZNahDpnU+C89PaNfnFnox+jZcg0L4YwYcoy9h/cpylY//qEFeg==\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "3205" + ], + "x-ms-client-request-id": [ + "a2944410-b7c4-45f9-ae7e-9233f7aacb79" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_DS2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.2\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.2\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"stocrptestps4190.hour.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"stocrptestps4190.minute.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps41902\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps41902.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190/extensions/AzureEnhancedMonitorForLinux\",\r\n \"name\": \"AzureEnhancedMonitorForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1912" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/d49fa26f-5bbe-477a-a998-2ef0a598b5ea?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "d49fa26f-5bbe-477a-a998-2ef0a598b5ea" + ], + "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": [ + "f4bf6c8f-3f9d-4a87-821c-fc32fdc7b4db" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T101237Z:f4bf6c8f-3f9d-4a87-821c-fc32fdc7b4db" + ], + "Date": [ + "Tue, 16 Feb 2016 10:12:36 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/d49fa26f-5bbe-477a-a998-2ef0a598b5ea?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZDQ5ZmEyNmYtNWJiZS00NzdhLWE5OTgtMmVmMGE1OThiNWVhP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"d49fa26f-5bbe-477a-a998-2ef0a598b5ea\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T11:12:36.4644118+01: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-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "f214f546-9f82-47d3-b89d-28e223c3f39d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14972" + ], + "x-ms-correlation-request-id": [ + "8395db3f-8c17-41d8-abc5-6fb232aedea9" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T101307Z:8395db3f-8c17-41d8-abc5-6fb232aedea9" + ], + "Date": [ + "Tue, 16 Feb 2016 10:13:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/d49fa26f-5bbe-477a-a998-2ef0a598b5ea?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZDQ5ZmEyNmYtNWJiZS00NzdhLWE5OTgtMmVmMGE1OThiNWVhP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"d49fa26f-5bbe-477a-a998-2ef0a598b5ea\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T11:12:36.4644118+01: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-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "6f573d77-a1b4-4cd5-852d-02fce634fba5" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14971" + ], + "x-ms-correlation-request-id": [ + "4c448c8f-f7f3-4f2f-8ca7-8cec8d3a23d4" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T101337Z:4c448c8f-f7f3-4f2f-8ca7-8cec8d3a23d4" + ], + "Date": [ + "Tue, 16 Feb 2016 10:13:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/d49fa26f-5bbe-477a-a998-2ef0a598b5ea?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZDQ5ZmEyNmYtNWJiZS00NzdhLWE5OTgtMmVmMGE1OThiNWVhP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"d49fa26f-5bbe-477a-a998-2ef0a598b5ea\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-02-16T11:12:36.4644118+01:00\",\r\n \"endTime\": \"2016-02-16T11:13:53.7612765+01: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-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "4942caa3-3ba9-45dc-870f-11cab20fe62e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14970" + ], + "x-ms-correlation-request-id": [ + "0deb294d-7ba8-4b3a-8665-4b5bd1f9ecf2" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T101407Z:0deb294d-7ba8-4b3a-8665-4b5bd1f9ecf2" + ], + "Date": [ + "Tue, 16 Feb 2016 10:14:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190/extensions/AzureEnhancedMonitorForLinux?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQxOTAvZXh0ZW5zaW9ucy9BenVyZUVuaGFuY2VkTW9uaXRvckZvckxpbnV4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_DS2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.2\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.2\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"stocrptestps4190.hour.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"stocrptestps4190.minute.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps41902\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps41902.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190/extensions/AzureEnhancedMonitorForLinux\",\r\n \"name\": \"AzureEnhancedMonitorForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1913" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "7dbbbbc7-12e0-4754-b54b-870c9f2afbe0" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14969" + ], + "x-ms-correlation-request-id": [ + "c47f2465-a74b-4e69-9be9-3737288b8158" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T101407Z:c47f2465-a74b-4e69-9be9-3737288b8158" + ], + "Date": [ + "Tue, 16 Feb 2016 10:14:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190/extensions/AzureEnhancedMonitorForLinux?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQxOTAvZXh0ZW5zaW9ucy9BenVyZUVuaGFuY2VkTW9uaXRvckZvckxpbnV4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ebd41102-0583-4d38-804d-e7f9d6818c6c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_DS2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.2\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.2\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"stocrptestps4190.hour.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"stocrptestps4190.minute.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps41902\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps41902.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190/extensions/AzureEnhancedMonitorForLinux\",\r\n \"name\": \"AzureEnhancedMonitorForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1913" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "5aaa8f55-3c28-465e-a044-056ea67a08af" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14967" + ], + "x-ms-correlation-request-id": [ + "5126e977-5314-434e-8ba1-73440b03253c" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T101408Z:5126e977-5314-434e-8ba1-73440b03253c" + ], + "Date": [ + "Tue, 16 Feb 2016 10:14:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190/extensions/AzureEnhancedMonitorForLinux?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQxOTAvZXh0ZW5zaW9ucy9BenVyZUVuaGFuY2VkTW9uaXRvckZvckxpbnV4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "94fa37d5-e10d-4d4b-9842-88c19013032b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/939ed62b-f3ce-4b7e-8528-aeb97b9c70de?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "939ed62b-f3ce-4b7e-8528-aeb97b9c70de" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/939ed62b-f3ce-4b7e-8528-aeb97b9c70de?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "72a2a2b3-8d3b-4547-9c58-1c02340751f6" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T101416Z:72a2a2b3-8d3b-4547-9c58-1c02340751f6" + ], + "Date": [ + "Tue, 16 Feb 2016 10:14:15 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/939ed62b-f3ce-4b7e-8528-aeb97b9c70de?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOTM5ZWQ2MmItZjNjZS00YjdlLTg1MjgtYWViOTdiOWM3MGRlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"939ed62b-f3ce-4b7e-8528-aeb97b9c70de\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T11:14:16.2612772+01: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-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "e6b66b56-0e6f-445d-9ea0-36fc92eb97b8" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14962" + ], + "x-ms-correlation-request-id": [ + "b475dd81-4da9-47c4-897b-8610b34399ef" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T101446Z:b475dd81-4da9-47c4-897b-8610b34399ef" + ], + "Date": [ + "Tue, 16 Feb 2016 10:14:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/939ed62b-f3ce-4b7e-8528-aeb97b9c70de?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOTM5ZWQ2MmItZjNjZS00YjdlLTg1MjgtYWViOTdiOWM3MGRlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"939ed62b-f3ce-4b7e-8528-aeb97b9c70de\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T11:14:16.2612772+01: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-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "94a0fd23-1189-4c3f-9777-c7407a70dc03" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14964" + ], + "x-ms-correlation-request-id": [ + "6b41a53e-914f-4d87-86fd-981290632611" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T101517Z:6b41a53e-914f-4d87-86fd-981290632611" + ], + "Date": [ + "Tue, 16 Feb 2016 10:15:16 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/939ed62b-f3ce-4b7e-8528-aeb97b9c70de?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOTM5ZWQ2MmItZjNjZS00YjdlLTg1MjgtYWViOTdiOWM3MGRlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"939ed62b-f3ce-4b7e-8528-aeb97b9c70de\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-02-16T11:14:16.2612772+01:00\",\r\n \"endTime\": \"2016-02-16T11:15:23.3081558+01: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-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "3e284eb5-eeec-4331-9fca-6d78a2aea898" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14962" + ], + "x-ms-correlation-request-id": [ + "87de1894-7eed-4d99-b49e-fcef87c4c45e" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T101547Z:87de1894-7eed-4d99-b49e-fcef87c4c45e" + ], + "Date": [ + "Tue, 16 Feb 2016 10:15:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourcegroups/crptestps4190?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczQxOTA/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": [ + "1197" + ], + "x-ms-request-id": [ + "a0df5431-17a9-416a-bb80-d9e92879b7d4" + ], + "x-ms-correlation-request-id": [ + "a0df5431-17a9-416a-bb80-d9e92879b7d4" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T101548Z:a0df5431-17a9-416a-bb80-d9e92879b7d4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 10:15:47 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTkwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTkwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTVRrd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14987" + ], + "x-ms-request-id": [ + "db55fd08-9827-4290-84d8-f0b0dbf2e279" + ], + "x-ms-correlation-request-id": [ + "db55fd08-9827-4290-84d8-f0b0dbf2e279" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T101548Z:db55fd08-9827-4290-84d8-f0b0dbf2e279" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 10:15:47 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTkwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTkwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTVRrd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14986" + ], + "x-ms-request-id": [ + "49025614-7cbb-4019-8964-5f960071877c" + ], + "x-ms-correlation-request-id": [ + "49025614-7cbb-4019-8964-5f960071877c" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T101603Z:49025614-7cbb-4019-8964-5f960071877c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 10:16:03 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTkwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTkwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTVRrd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14985" + ], + "x-ms-request-id": [ + "8f9a7f62-1c85-4f4c-9a70-35a1c18f2038" + ], + "x-ms-correlation-request-id": [ + "8f9a7f62-1c85-4f4c-9a70-35a1c18f2038" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T101618Z:8f9a7f62-1c85-4f4c-9a70-35a1c18f2038" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 10:16:18 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTkwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTkwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTVRrd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14984" + ], + "x-ms-request-id": [ + "cf05a9a7-75ff-4ea2-9147-a528979c9c1d" + ], + "x-ms-correlation-request-id": [ + "cf05a9a7-75ff-4ea2-9147-a528979c9c1d" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T101634Z:cf05a9a7-75ff-4ea2-9147-a528979c9c1d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 10:16:33 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTkwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTkwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTVRrd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14983" + ], + "x-ms-request-id": [ + "f8821ecf-5aba-4347-8340-eb8950a74938" + ], + "x-ms-correlation-request-id": [ + "f8821ecf-5aba-4347-8340-eb8950a74938" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T101649Z:f8821ecf-5aba-4347-8340-eb8950a74938" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 10:16:49 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTkwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTkwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTVRrd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14982" + ], + "x-ms-request-id": [ + "94ba4154-a9db-4a66-a7ee-7ecc6d560098" + ], + "x-ms-correlation-request-id": [ + "94ba4154-a9db-4a66-a7ee-7ecc6d560098" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T101704Z:94ba4154-a9db-4a66-a7ee-7ecc6d560098" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 10:17:03 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTkwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTkwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTVRrd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14981" + ], + "x-ms-request-id": [ + "3d98ff7d-fe02-483e-989a-bc6000a1eff0" + ], + "x-ms-correlation-request-id": [ + "3d98ff7d-fe02-483e-989a-bc6000a1eff0" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T101719Z:3d98ff7d-fe02-483e-989a-bc6000a1eff0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 10:17:18 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTkwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTkwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTVRrd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14980" + ], + "x-ms-request-id": [ + "a9badeb5-8db2-40bc-b13a-09e5b5c36a50" + ], + "x-ms-correlation-request-id": [ + "a9badeb5-8db2-40bc-b13a-09e5b5c36a50" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T101734Z:a9badeb5-8db2-40bc-b13a-09e5b5c36a50" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 10:17:34 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTkwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTkwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTVRrd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14979" + ], + "x-ms-request-id": [ + "dd1d408e-c611-4766-931b-1fa95bb08cd2" + ], + "x-ms-correlation-request-id": [ + "dd1d408e-c611-4766-931b-1fa95bb08cd2" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T101750Z:dd1d408e-c611-4766-931b-1fa95bb08cd2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 10:17:50 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTkwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTkwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTVRrd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14978" + ], + "x-ms-request-id": [ + "0bc07d2f-ae45-42b6-b6b9-c1a85c301900" + ], + "x-ms-correlation-request-id": [ + "0bc07d2f-ae45-42b6-b6b9-c1a85c301900" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T101805Z:0bc07d2f-ae45-42b6-b6b9-c1a85c301900" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 10:18:04 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTkwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTkwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTVRrd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14977" + ], + "x-ms-request-id": [ + "aaf42e1e-ee49-4fdd-9c25-2cccf7bc75e8" + ], + "x-ms-correlation-request-id": [ + "aaf42e1e-ee49-4fdd-9c25-2cccf7bc75e8" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T101820Z:aaf42e1e-ee49-4fdd-9c25-2cccf7bc75e8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 10:18:19 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTkwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTkwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTVRrd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14976" + ], + "x-ms-request-id": [ + "4b32cb4a-e039-4563-8855-6c016c1741b7" + ], + "x-ms-correlation-request-id": [ + "4b32cb4a-e039-4563-8855-6c016c1741b7" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T101835Z:4b32cb4a-e039-4563-8855-6c016c1741b7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 10:18:35 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTkwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTkwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTVRrd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14975" + ], + "x-ms-request-id": [ + "ba2ba2a0-1631-4eb9-9630-94f57cd4ed58" + ], + "x-ms-correlation-request-id": [ + "ba2ba2a0-1631-4eb9-9630-94f57cd4ed58" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T101850Z:ba2ba2a0-1631-4eb9-9630-94f57cd4ed58" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 10:18:50 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTkwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTkwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTVRrd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14974" + ], + "x-ms-request-id": [ + "0bbcaaf3-73c4-4106-8287-f675fb2cb29e" + ], + "x-ms-correlation-request-id": [ + "0bbcaaf3-73c4-4106-8287-f675fb2cb29e" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T101905Z:0bbcaaf3-73c4-4106-8287-f675fb2cb29e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 10:19:05 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTkwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTkwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTVRrd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14973" + ], + "x-ms-request-id": [ + "3e5ecead-a1c7-48e1-a85e-9af194ae4f0d" + ], + "x-ms-correlation-request-id": [ + "3e5ecead-a1c7-48e1-a85e-9af194ae4f0d" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T101921Z:3e5ecead-a1c7-48e1-a85e-9af194ae4f0d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 10:19:21 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTkwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTkwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTVRrd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14972" + ], + "x-ms-request-id": [ + "c060b95f-82b9-4b88-8abc-bb3ecb54cf22" + ], + "x-ms-correlation-request-id": [ + "c060b95f-82b9-4b88-8abc-bb3ecb54cf22" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T101936Z:c060b95f-82b9-4b88-8abc-bb3ecb54cf22" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 10:19:35 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTkwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTkwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTVRrd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14971" + ], + "x-ms-request-id": [ + "6a8724b2-3f68-4c16-ae44-7c89f75ae438" + ], + "x-ms-correlation-request-id": [ + "6a8724b2-3f68-4c16-ae44-7c89f75ae438" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T101951Z:6a8724b2-3f68-4c16-ae44-7c89f75ae438" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 10:19:51 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTkwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTkwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTVRrd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14970" + ], + "x-ms-request-id": [ + "7084e21c-bb14-4246-b4f9-0103ef725b6d" + ], + "x-ms-correlation-request-id": [ + "7084e21c-bb14-4246-b4f9-0103ef725b6d" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T102006Z:7084e21c-bb14-4246-b4f9-0103ef725b6d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 10:20:06 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTkwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTkwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTVRrd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14969" + ], + "x-ms-request-id": [ + "f78bcd90-c8db-420e-84b4-33bff73c5c0a" + ], + "x-ms-correlation-request-id": [ + "f78bcd90-c8db-420e-84b4-33bff73c5c0a" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T102021Z:f78bcd90-c8db-420e-84b4-33bff73c5c0a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 10:20:21 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-AEMExtensionAdvancedLinux": [ + "crptestps4190" + ] + }, + "Variables": { + "SubscriptionId": "acf8322c-ac5c-4cbd-8907-5f5920784774" + } +} \ No newline at end of file diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.AEMExtensionTests/TestAEMExtensionAdvancedWindows.json b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.AEMExtensionTests/TestAEMExtensionAdvancedWindows.json new file mode 100644 index 000000000000..28f853255f9e --- /dev/null +++ b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.AEMExtensionTests/TestAEMExtensionAdvancedWindows.json @@ -0,0 +1,6873 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "5199" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-request-id": [ + "bfe27e7d-8996-403e-b390-5cb2f2a72fce" + ], + "x-ms-correlation-request-id": [ + "bfe27e7d-8996-403e-b390-5cb2f2a72fce" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T102407Z:bfe27e7d-8996-403e-b390-5cb2f2a72fce" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 10:24:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourcegroups/crptestps6110?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczYxMTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "105" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" + ], + "x-ms-request-id": [ + "887caff4-9184-4131-a59f-da01dde790d2" + ], + "x-ms-correlation-request-id": [ + "887caff4-9184-4131-a59f-da01dde790d2" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T102407Z:887caff4-9184-4131-a59f-da01dde790d2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 10:24:06 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourcegroups/crptestps6110?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczYxMTA/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": [ + "14937" + ], + "x-ms-request-id": [ + "a2f6dad7-f807-47c6-acfe-2d2c20e3a407" + ], + "x-ms-correlation-request-id": [ + "a2f6dad7-f807-47c6-acfe-2d2c20e3a407" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T103752Z:a2f6dad7-f807-47c6-acfe-2d2c20e3a407" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 10:37:51 GMT" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourcegroups/crptestps6110?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczYxMTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110\",\r\n \"name\": \"crptestps6110\",\r\n \"location\": \"eastus\",\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": [ + "b75c2a47-7428-46c5-9b68-81c96b682790" + ], + "x-ms-correlation-request-id": [ + "b75c2a47-7428-46c5-9b68-81c96b682790" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T102408Z:b75c2a47-7428-46c5-9b68-81c96b682790" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 10:24:08 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "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": [ + "14990" + ], + "x-ms-request-id": [ + "e4cb2b74-ed03-4890-83a5-6940f43e0f4b" + ], + "x-ms-correlation-request-id": [ + "e4cb2b74-ed03-4890-83a5-6940f43e0f4b" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T102409Z:e4cb2b74-ed03-4890-83a5-6940f43e0f4b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 10:24:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/virtualnetworks/vnetcrptestps6110?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNjExMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8ba0cfe1-7649-4fe0-8801-1dd73a1c7785" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/vnetcrptestps6110' under resource group 'crptestps6110' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "168" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "41e11034-b542-4ebb-9d29-61faa05ae8df" + ], + "x-ms-correlation-request-id": [ + "41e11034-b542-4ebb-9d29-61faa05ae8df" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T102411Z:41e11034-b542-4ebb-9d29-61faa05ae8df" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 10:24:11 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/virtualnetworks/vnetcrptestps6110?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNjExMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps6110\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/virtualNetworks/vnetcrptestps6110\",\r\n \"etag\": \"W/\\\"43299f1e-bceb-485d-b939-71c1298bc20b\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6813052b-fb2d-49b6-8f03-b4f2b50cb636\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps6110\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/virtualNetworks/vnetcrptestps6110/subnets/subnetcrptestps6110\",\r\n \"etag\": \"W/\\\"43299f1e-bceb-485d-b939-71c1298bc20b\\\"\",\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}", + "ResponseHeaders": { + "Content-Length": [ + "994" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "0b72504c-1182-4151-9fd9-5da31acff902" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"43299f1e-bceb-485d-b939-71c1298bc20b\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14966" + ], + "x-ms-correlation-request-id": [ + "6f5013dd-7e29-41c0-8378-070996f9217d" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T102424Z:6f5013dd-7e29-41c0-8378-070996f9217d" + ], + "Date": [ + "Tue, 16 Feb 2016 10:24:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/virtualnetworks/vnetcrptestps6110?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNjExMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4135d4ef-8bc1-447a-85e7-669d181f18e2" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps6110\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/virtualNetworks/vnetcrptestps6110\",\r\n \"etag\": \"W/\\\"43299f1e-bceb-485d-b939-71c1298bc20b\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6813052b-fb2d-49b6-8f03-b4f2b50cb636\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps6110\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/virtualNetworks/vnetcrptestps6110/subnets/subnetcrptestps6110\",\r\n \"etag\": \"W/\\\"43299f1e-bceb-485d-b939-71c1298bc20b\\\"\",\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}", + "ResponseHeaders": { + "Content-Length": [ + "994" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "6f265ce7-06e4-43bc-9e71-2624f7691391" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"43299f1e-bceb-485d-b939-71c1298bc20b\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14965" + ], + "x-ms-correlation-request-id": [ + "10cd9a8e-811a-4a5e-93df-ef096975131a" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T102425Z:10cd9a8e-811a-4a5e-93df-ef096975131a" + ], + "Date": [ + "Tue, 16 Feb 2016 10:24:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/virtualnetworks/vnetcrptestps6110?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNjExMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3cd85e90-a344-48f7-8790-85f390a653b9" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps6110\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/virtualNetworks/vnetcrptestps6110\",\r\n \"etag\": \"W/\\\"43299f1e-bceb-485d-b939-71c1298bc20b\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6813052b-fb2d-49b6-8f03-b4f2b50cb636\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps6110\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/virtualNetworks/vnetcrptestps6110/subnets/subnetcrptestps6110\",\r\n \"etag\": \"W/\\\"43299f1e-bceb-485d-b939-71c1298bc20b\\\"\",\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}", + "ResponseHeaders": { + "Content-Length": [ + "994" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "9819a26d-628e-47c2-a72d-53d9dbb519ad" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"43299f1e-bceb-485d-b939-71c1298bc20b\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14964" + ], + "x-ms-correlation-request-id": [ + "3e5d4d7e-c935-4fff-ac80-4dea0475b443" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T102425Z:3e5d4d7e-c935-4fff-ac80-4dea0475b443" + ], + "Date": [ + "Tue, 16 Feb 2016 10:24:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/virtualnetworks/vnetcrptestps6110?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNjExMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps6110\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "341" + ], + "x-ms-client-request-id": [ + "327bafcd-7a5a-412a-b381-abd6ae76f958" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps6110\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/virtualNetworks/vnetcrptestps6110\",\r\n \"etag\": \"W/\\\"e0b20976-d770-4f8f-b827-18fe3cd088d1\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"6813052b-fb2d-49b6-8f03-b4f2b50cb636\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps6110\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/virtualNetworks/vnetcrptestps6110/subnets/subnetcrptestps6110\",\r\n \"etag\": \"W/\\\"e0b20976-d770-4f8f-b827-18fe3cd088d1\\\"\",\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}", + "ResponseHeaders": { + "Content-Length": [ + "992" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "08077c7d-8741-496e-b871-e609d2698c7c" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Network/locations/eastus/operations/08077c7d-8741-496e-b871-e609d2698c7c?api-version=2015-06-15" + ], + "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": [ + "5db38078-a6b9-4d1b-9526-5f6968821fe9" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T102414Z:5db38078-a6b9-4d1b-9526-5f6968821fe9" + ], + "Date": [ + "Tue, 16 Feb 2016 10:24:13 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Network/locations/eastus/operations/08077c7d-8741-496e-b871-e609d2698c7c?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMDgwNzdjN2QtODc0MS00OTZlLWI4NzEtZTYwOWQyNjk4YzdjP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkManagementClient/3.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": [ + "34ba831e-4f48-4a42-bd3b-75ee956476c5" + ], + "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": [ + "14967" + ], + "x-ms-correlation-request-id": [ + "09d4805f-a54e-4848-8657-87df1074e780" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T102424Z:09d4805f-a54e-4848-8657-87df1074e780" + ], + "Date": [ + "Tue, 16 Feb 2016 10:24:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps6110?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNjExMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d38dca5a-7100-4f99-9d7e-9e2163e203c6" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/pubipcrptestps6110' under resource group 'crptestps6110' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "171" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "4f650a54-6b01-4c79-a325-ad6bccfda95e" + ], + "x-ms-correlation-request-id": [ + "4f650a54-6b01-4c79-a325-ad6bccfda95e" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T102426Z:4f650a54-6b01-4c79-a325-ad6bccfda95e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 10:24:25 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps6110?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNjExMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps6110\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps6110\",\r\n \"etag\": \"W/\\\"fc46bf59-17e2-4a17-bc8c-9a11550d21c4\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"55cb3f13-e015-4ae9-a954-345bc60902ee\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps6110\",\r\n \"fqdn\": \"pubipcrptestps6110.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "666" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "fc9318e0-2ac7-4cdb-8f53-e180cdc70b64" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"fc46bf59-17e2-4a17-bc8c-9a11550d21c4\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14961" + ], + "x-ms-correlation-request-id": [ + "a9540575-9185-45db-bf58-c00cd49df3a9" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T102439Z:a9540575-9185-45db-bf58-c00cd49df3a9" + ], + "Date": [ + "Tue, 16 Feb 2016 10:24:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps6110?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNjExMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c201065b-1d29-422f-bb8a-3d20022bb6bd" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps6110\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps6110\",\r\n \"etag\": \"W/\\\"fc46bf59-17e2-4a17-bc8c-9a11550d21c4\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"55cb3f13-e015-4ae9-a954-345bc60902ee\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps6110\",\r\n \"fqdn\": \"pubipcrptestps6110.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "666" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d56b7d30-7577-4558-9662-983f0530122a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"fc46bf59-17e2-4a17-bc8c-9a11550d21c4\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14960" + ], + "x-ms-correlation-request-id": [ + "4ca56a4c-920b-4813-853d-352a54724252" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T102439Z:4ca56a4c-920b-4813-853d-352a54724252" + ], + "Date": [ + "Tue, 16 Feb 2016 10:24:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps6110?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNjExMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c04e95ff-5f73-4aec-8087-aa5c595e9173" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps6110\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps6110\",\r\n \"etag\": \"W/\\\"fc46bf59-17e2-4a17-bc8c-9a11550d21c4\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"55cb3f13-e015-4ae9-a954-345bc60902ee\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps6110\",\r\n \"fqdn\": \"pubipcrptestps6110.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "666" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "554ede55-7fe2-4bd1-8065-79d0f86c29c7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"fc46bf59-17e2-4a17-bc8c-9a11550d21c4\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14959" + ], + "x-ms-correlation-request-id": [ + "010f7fbb-b233-4f3b-8192-c2641a3900f1" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T102439Z:010f7fbb-b233-4f3b-8192-c2641a3900f1" + ], + "Date": [ + "Tue, 16 Feb 2016 10:24:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps6110?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNjExMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps6110\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "174" + ], + "x-ms-client-request-id": [ + "a15902d6-bf30-44c3-aea3-126339de4fae" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps6110\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps6110\",\r\n \"etag\": \"W/\\\"c6155d6a-f1a9-4465-9d5c-262942d4ec09\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"55cb3f13-e015-4ae9-a954-345bc60902ee\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps6110\",\r\n \"fqdn\": \"pubipcrptestps6110.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "665" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "3a243128-8cc9-4925-99a4-2267c0ccc89d" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Network/locations/eastus/operations/3a243128-8cc9-4925-99a4-2267c0ccc89d?api-version=2015-06-15" + ], + "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": [ + "b98ba6c2-8930-4299-a8bf-a439ecef21a7" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T102428Z:b98ba6c2-8930-4299-a8bf-a439ecef21a7" + ], + "Date": [ + "Tue, 16 Feb 2016 10:24:28 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Network/locations/eastus/operations/3a243128-8cc9-4925-99a4-2267c0ccc89d?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2EyNDMxMjgtOGNjOS00OTI1LTk5YTQtMjI2N2MwY2NjODlkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkManagementClient/3.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": [ + "26dcc547-5270-4efc-9cb7-33921b414b5b" + ], + "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": [ + "14962" + ], + "x-ms-correlation-request-id": [ + "5df8d046-4516-4722-b381-def825d0bbb6" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T102439Z:5df8d046-4516-4722-b381-def825d0bbb6" + ], + "Date": [ + "Tue, 16 Feb 2016 10:24:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic0crptestps6110?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzBjcnB0ZXN0cHM2MTEwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "77e109a8-925e-46cb-b854-7f355b37f961" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/nic0crptestps6110' under resource group 'crptestps6110' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "170" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "e8404ad2-59d1-44db-be79-dfb6127f9927" + ], + "x-ms-correlation-request-id": [ + "e8404ad2-59d1-44db-be79-dfb6127f9927" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T102440Z:e8404ad2-59d1-44db-be79-dfb6127f9927" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 10:24:40 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic0crptestps6110?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzBjcnB0ZXN0cHM2MTEwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4230ea28-ad8c-4df9-9d3d-44ff32a0aac2" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"nic0crptestps6110\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic0crptestps6110\",\r\n \"etag\": \"W/\\\"f8e0d9a1-8f09-482b-a9b9-5f3de240275e\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a68782ed-6be1-4f03-b7f5-7bf768c41ba1\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic0crptestps6110/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"f8e0d9a1-8f09-482b-a9b9-5f3de240275e\\\"\",\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/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps6110\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/virtualNetworks/vnetcrptestps6110/subnets/subnetcrptestps6110\"\r\n },\r\n \"primary\": true\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1548" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "fe581010-a364-4245-b7f0-fcf0d78dc67b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"f8e0d9a1-8f09-482b-a9b9-5f3de240275e\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14957" + ], + "x-ms-correlation-request-id": [ + "d9404787-94b2-412c-8969-7c41e9e517da" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T102442Z:d9404787-94b2-412c-8969-7c41e9e517da" + ], + "Date": [ + "Tue, 16 Feb 2016 10:24:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic0crptestps6110?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzBjcnB0ZXN0cHM2MTEwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c8d79884-2f7b-4cc3-89de-fbda73f9c52f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"nic0crptestps6110\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic0crptestps6110\",\r\n \"etag\": \"W/\\\"f8e0d9a1-8f09-482b-a9b9-5f3de240275e\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a68782ed-6be1-4f03-b7f5-7bf768c41ba1\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic0crptestps6110/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"f8e0d9a1-8f09-482b-a9b9-5f3de240275e\\\"\",\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/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps6110\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/virtualNetworks/vnetcrptestps6110/subnets/subnetcrptestps6110\"\r\n },\r\n \"primary\": true\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1548" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "95d9b80a-a193-4a1f-92ea-4b190c8812a7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"f8e0d9a1-8f09-482b-a9b9-5f3de240275e\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14956" + ], + "x-ms-correlation-request-id": [ + "5b102e06-8353-41cc-9e47-cd753e4f67c3" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T102442Z:5b102e06-8353-41cc-9e47-cd753e4f67c3" + ], + "Date": [ + "Tue, 16 Feb 2016 10:24:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic0crptestps6110?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzBjcnB0ZXN0cHM2MTEwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"properties\": {\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": [],\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/virtualNetworks/vnetcrptestps6110/subnets/subnetcrptestps6110\",\r\n \"properties\": {\r\n \"ipConfigurations\": []\r\n }\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps6110\"\r\n }\r\n }\r\n }\r\n ],\r\n \"primary\": false,\r\n \"enableIPForwarding\": false\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "900" + ], + "x-ms-client-request-id": [ + "e184682e-61c9-4e3c-bd26-2e845d3859fe" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"nic0crptestps6110\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic0crptestps6110\",\r\n \"etag\": \"W/\\\"f8e0d9a1-8f09-482b-a9b9-5f3de240275e\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a68782ed-6be1-4f03-b7f5-7bf768c41ba1\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic0crptestps6110/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"f8e0d9a1-8f09-482b-a9b9-5f3de240275e\\\"\",\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/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps6110\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/virtualNetworks/vnetcrptestps6110/subnets/subnetcrptestps6110\"\r\n },\r\n \"primary\": true\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1548" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8009658f-1f2e-46c7-9aa6-fad9a52eb3c6" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Network/locations/eastus/operations/8009658f-1f2e-46c7-9aa6-fad9a52eb3c6?api-version=2015-06-15" + ], + "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": [ + "10b60f91-e28a-4000-ac10-d4ecc36889a0" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T102442Z:10b60f91-e28a-4000-ac10-d4ecc36889a0" + ], + "Date": [ + "Tue, 16 Feb 2016 10:24:41 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic1crptestps6110?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzFjcnB0ZXN0cHM2MTEwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "de849273-b7bc-4a39-9040-32bf3cada101" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/nic1crptestps6110' under resource group 'crptestps6110' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "170" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "45f85135-6fc2-49c8-8646-f0f773f8d8ac" + ], + "x-ms-correlation-request-id": [ + "45f85135-6fc2-49c8-8646-f0f773f8d8ac" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T102443Z:45f85135-6fc2-49c8-8646-f0f773f8d8ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 10:24:42 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic1crptestps6110?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzFjcnB0ZXN0cHM2MTEwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "aea6fe1a-4d2b-4f81-8afa-e26dcde767bb" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"nic1crptestps6110\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic1crptestps6110\",\r\n \"etag\": \"W/\\\"676102f3-7a7a-45e4-a422-ea309a490ffb\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"16b260ec-29aa-4ea9-a01c-bac3ea1a9b52\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic1crptestps6110/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"676102f3-7a7a-45e4-a422-ea309a490ffb\\\"\",\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/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/virtualNetworks/vnetcrptestps6110/subnets/subnetcrptestps6110\"\r\n },\r\n \"primary\": true\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1335" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "485a7ec0-b06f-4882-8b9e-aee4e27840b4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"676102f3-7a7a-45e4-a422-ea309a490ffb\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14954" + ], + "x-ms-correlation-request-id": [ + "ee48da99-3ebb-41fa-a391-5e438c36467d" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T102445Z:ee48da99-3ebb-41fa-a391-5e438c36467d" + ], + "Date": [ + "Tue, 16 Feb 2016 10:24:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic1crptestps6110?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzFjcnB0ZXN0cHM2MTEwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b731b320-32e9-48e7-8272-5c5d54001129" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"nic1crptestps6110\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic1crptestps6110\",\r\n \"etag\": \"W/\\\"676102f3-7a7a-45e4-a422-ea309a490ffb\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"16b260ec-29aa-4ea9-a01c-bac3ea1a9b52\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic1crptestps6110/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"676102f3-7a7a-45e4-a422-ea309a490ffb\\\"\",\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/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/virtualNetworks/vnetcrptestps6110/subnets/subnetcrptestps6110\"\r\n },\r\n \"primary\": true\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1335" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "03c8977a-9369-4401-8ce4-d8a77ff65660" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"676102f3-7a7a-45e4-a422-ea309a490ffb\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14953" + ], + "x-ms-correlation-request-id": [ + "d8e285e0-d3f5-45d5-a80c-5858c1dc8f34" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T102445Z:d8e285e0-d3f5-45d5-a80c-5858c1dc8f34" + ], + "Date": [ + "Tue, 16 Feb 2016 10:24:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic1crptestps6110?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzFjcnB0ZXN0cHM2MTEwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"properties\": {\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": [],\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/virtualNetworks/vnetcrptestps6110/subnets/subnetcrptestps6110\",\r\n \"properties\": {\r\n \"ipConfigurations\": []\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"primary\": false,\r\n \"enableIPForwarding\": false\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "687" + ], + "x-ms-client-request-id": [ + "282840a7-348c-4762-af43-a95fa03d2b5f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"nic1crptestps6110\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic1crptestps6110\",\r\n \"etag\": \"W/\\\"676102f3-7a7a-45e4-a422-ea309a490ffb\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"16b260ec-29aa-4ea9-a01c-bac3ea1a9b52\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic1crptestps6110/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"676102f3-7a7a-45e4-a422-ea309a490ffb\\\"\",\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/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/virtualNetworks/vnetcrptestps6110/subnets/subnetcrptestps6110\"\r\n },\r\n \"primary\": true\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1335" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8a7e2a59-a34c-4df9-84f1-b686216641e1" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Network/locations/eastus/operations/8a7e2a59-a34c-4df9-84f1-b686216641e1?api-version=2015-06-15" + ], + "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": [ + "1193" + ], + "x-ms-correlation-request-id": [ + "5e3b70de-14dc-48d2-ac0b-5045ea872f4e" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T102445Z:5e3b70de-14dc-48d2-ac0b-5045ea872f4e" + ], + "Date": [ + "Tue, 16 Feb 2016 10:24:44 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Storage/storageAccounts/stocrptestps6110?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM2MTEwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "88" + ], + "x-ms-client-request-id": [ + "d9450698-22be-4435-bf1f-4fc9a9171974" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "25" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-request-id": [ + "c2e92005-0e50-4216-9cfa-fe85d03e8e4e" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Storage/operations/97ac7781-2ee1-4bea-8f36-056686891b38?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "c2e92005-0e50-4216-9cfa-fe85d03e8e4e" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T102448Z:c2e92005-0e50-4216-9cfa-fe85d03e8e4e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Tue, 16 Feb 2016 10:24:48 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Storage/operations/97ac7781-2ee1-4bea-8f36-056686891b38?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzk3YWM3NzgxLTJlZTEtNGJlYS04ZjM2LTA1NjY4Njg5MWIzOD9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "413c19fd-68c7-4458-bba2-86bfe6d793dc" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "25" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14950" + ], + "x-ms-request-id": [ + "b6ef1b5f-b4ff-48c5-9ecc-81b541972837" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Storage/operations/97ac7781-2ee1-4bea-8f36-056686891b38?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "b6ef1b5f-b4ff-48c5-9ecc-81b541972837" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T102449Z:b6ef1b5f-b4ff-48c5-9ecc-81b541972837" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Tue, 16 Feb 2016 10:24:49 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Storage/operations/97ac7781-2ee1-4bea-8f36-056686891b38?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzk3YWM3NzgxLTJlZTEtNGJlYS04ZjM2LTA1NjY4Njg5MWIzOD9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "de7f7840-9a3a-4197-9020-36f8dba640b2" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "88" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b42b010a-4e0a-48de-b414-7fd88dc067b1" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14951" + ], + "x-ms-correlation-request-id": [ + "b42b010a-4e0a-48de-b414-7fd88dc067b1" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T102514Z:b42b010a-4e0a-48de-b414-7fd88dc067b1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Tue, 16 Feb 2016 10:25:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Storage/storageAccounts/stocrptestps6110?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM2MTEwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "32a43739-94c9-4954-abed-a7a3d17701e9" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Storage/storageAccounts/stocrptestps6110\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps6110\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-16T10:24:47.5385966Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps6110.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "506" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "dac8b474-f756-41f5-80ad-ddef0e75eac3" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14950" + ], + "x-ms-correlation-request-id": [ + "dac8b474-f756-41f5-80ad-ddef0e75eac3" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T102514Z:dac8b474-f756-41f5-80ad-ddef0e75eac3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Tue, 16 Feb 2016 10:25:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Storage/storageAccounts/stocrptestps6110?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM2MTEwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "36303e7d-c4e6-4ee6-8d0b-fbd2aa24dd36" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Storage/storageAccounts/stocrptestps6110\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps6110\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-16T10:24:47.5385966Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps6110.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "506" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "96376047-85a7-4759-9c8b-7bf4d77a78f7" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14949" + ], + "x-ms-correlation-request-id": [ + "96376047-85a7-4759-9c8b-7bf4d77a78f7" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T102514Z:96376047-85a7-4759-9c8b-7bf4d77a78f7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Tue, 16 Feb 2016 10:25:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Storage/storageAccounts/stocrptestps6110/listKeys?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM2MTEwL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "048d8cab-d1f3-4948-975f-120b57851ec9" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"key1\": \"/85dNlDjWZh4LxF4RNnqBxZMyWSyEGR3YH6/JtRTY6zmLmQabVrJtfgaNhDLLMYdzG+mq83iEnp0DDhMZMNAuQ==\",\r\n \"key2\": \"4cSbTDSbEeRahVTn75NZGUbbXuh86AnKatv1Lz3YYvGBNDi55SMGk3wkgKNjTGt3U+caFGFOa1SYYiLGpOJXpg==\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "198" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d8dbd0c0-1973-4dc1-88de-1688d272215d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "d8dbd0c0-1973-4dc1-88de-1688d272215d" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T102515Z:d8dbd0c0-1973-4dc1-88de-1688d272215d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Tue, 16 Feb 2016 10:25:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Storage/storageAccounts/stocrptestps6110/listKeys?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM2MTEwL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "beacbecd-0266-4bab-9e6d-f4e6d5cebbae" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"key1\": \"/85dNlDjWZh4LxF4RNnqBxZMyWSyEGR3YH6/JtRTY6zmLmQabVrJtfgaNhDLLMYdzG+mq83iEnp0DDhMZMNAuQ==\",\r\n \"key2\": \"4cSbTDSbEeRahVTn75NZGUbbXuh86AnKatv1Lz3YYvGBNDi55SMGk3wkgKNjTGt3U+caFGFOa1SYYiLGpOJXpg==\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "198" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3b37986b-4f08-4eb4-b4f8-f7f0f44f108f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "3b37986b-4f08-4eb4-b4f8-f7f0f44f108f" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T103301Z:3b37986b-4f08-4eb4-b4f8-f7f0f44f108f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Tue, 16 Feb 2016 10:33:01 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Storage/storageAccounts/stocrptestps6110/listKeys?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM2MTEwL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4a2274bf-b457-499b-96ee-ca043c791803" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"key1\": \"/85dNlDjWZh4LxF4RNnqBxZMyWSyEGR3YH6/JtRTY6zmLmQabVrJtfgaNhDLLMYdzG+mq83iEnp0DDhMZMNAuQ==\",\r\n \"key2\": \"4cSbTDSbEeRahVTn75NZGUbbXuh86AnKatv1Lz3YYvGBNDi55SMGk3wkgKNjTGt3U+caFGFOa1SYYiLGpOJXpg==\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "198" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7094dff0-46b3-4d51-b24f-0e915b9bd433" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "7094dff0-46b3-4d51-b24f-0e915b9bd433" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T103301Z:7094dff0-46b3-4d51-b24f-0e915b9bd433" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Tue, 16 Feb 2016 10:33:01 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Storage/storageAccounts/stocrptestps6110/listKeys?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM2MTEwL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ff4026b5-38ff-46fc-88c8-1da4071fb46b" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"key1\": \"/85dNlDjWZh4LxF4RNnqBxZMyWSyEGR3YH6/JtRTY6zmLmQabVrJtfgaNhDLLMYdzG+mq83iEnp0DDhMZMNAuQ==\",\r\n \"key2\": \"4cSbTDSbEeRahVTn75NZGUbbXuh86AnKatv1Lz3YYvGBNDi55SMGk3wkgKNjTGt3U+caFGFOa1SYYiLGpOJXpg==\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "198" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "5fa78d5d-6125-4370-89ba-3b5840b7d00d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-correlation-request-id": [ + "5fa78d5d-6125-4370-89ba-3b5840b7d00d" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T103645Z:5fa78d5d-6125-4370-89ba-3b5840b7d00d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Tue, 16 Feb 2016 10:36:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczYxMTA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\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\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6110.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 \"name\": \"testDataDisk1\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6110.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"Empty\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6110.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"Empty\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123crptestps6110\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true\r\n }\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic0crptestps6110\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic1crptestps6110\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "2091" + ], + "x-ms-client-request-id": [ + "9d045329-009b-4fe1-b6f6-fe5125a0176e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"75fe4dc3-f01d-44b5-ba3e-1fc40cd3c7b6\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\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\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6110.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6110.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6110.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic0crptestps6110\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic1crptestps6110\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110\",\r\n \"name\": \"vmcrptestps6110\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2288" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/069005c3-56e7-4b1c-9c81-dfc9056d0136?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "069005c3-56e7-4b1c-9c81-dfc9056d0136" + ], + "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": [ + "7943a73b-fad0-4fdc-9149-461ad7deb316" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T102518Z:7943a73b-fad0-4fdc-9149-461ad7deb316" + ], + "Date": [ + "Tue, 16 Feb 2016 10:25:17 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/069005c3-56e7-4b1c-9c81-dfc9056d0136?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMDY5MDA1YzMtNTZlNy00YjFjLTljODEtZGZjOTA1NmQwMTM2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"069005c3-56e7-4b1c-9c81-dfc9056d0136\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T11:25:17.5737952+01: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-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "4348625b-b65b-4d29-9805-1192e3dbe229" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14959" + ], + "x-ms-correlation-request-id": [ + "0ba80ebc-1133-4bd6-8eaa-2b4c037bd44b" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T102549Z:0ba80ebc-1133-4bd6-8eaa-2b4c037bd44b" + ], + "Date": [ + "Tue, 16 Feb 2016 10:25:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/069005c3-56e7-4b1c-9c81-dfc9056d0136?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMDY5MDA1YzMtNTZlNy00YjFjLTljODEtZGZjOTA1NmQwMTM2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"069005c3-56e7-4b1c-9c81-dfc9056d0136\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T11:25:17.5737952+01: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-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "61767a52-a20a-4a18-883a-bc1660a47427" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14958" + ], + "x-ms-correlation-request-id": [ + "840ab1aa-84ce-41fc-a042-086ee3447344" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T102619Z:840ab1aa-84ce-41fc-a042-086ee3447344" + ], + "Date": [ + "Tue, 16 Feb 2016 10:26:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/069005c3-56e7-4b1c-9c81-dfc9056d0136?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMDY5MDA1YzMtNTZlNy00YjFjLTljODEtZGZjOTA1NmQwMTM2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"069005c3-56e7-4b1c-9c81-dfc9056d0136\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T11:25:17.5737952+01: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-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "64dd1b0f-cd1f-48f2-a84f-0e21a0150597" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14957" + ], + "x-ms-correlation-request-id": [ + "92b5d397-4e26-448a-bce6-3faf1d7a9900" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T102649Z:92b5d397-4e26-448a-bce6-3faf1d7a9900" + ], + "Date": [ + "Tue, 16 Feb 2016 10:26:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/069005c3-56e7-4b1c-9c81-dfc9056d0136?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMDY5MDA1YzMtNTZlNy00YjFjLTljODEtZGZjOTA1NmQwMTM2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"069005c3-56e7-4b1c-9c81-dfc9056d0136\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T11:25:17.5737952+01: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-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "5f5bd247-92f1-4da9-a929-543957ad7988" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14956" + ], + "x-ms-correlation-request-id": [ + "115bafa5-b896-46be-8e12-4f2ed9b30f2c" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T102719Z:115bafa5-b896-46be-8e12-4f2ed9b30f2c" + ], + "Date": [ + "Tue, 16 Feb 2016 10:27:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/069005c3-56e7-4b1c-9c81-dfc9056d0136?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMDY5MDA1YzMtNTZlNy00YjFjLTljODEtZGZjOTA1NmQwMTM2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"069005c3-56e7-4b1c-9c81-dfc9056d0136\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T11:25:17.5737952+01: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-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "64985717-bfff-47a9-a050-42f115053a7b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14955" + ], + "x-ms-correlation-request-id": [ + "fad065e1-4f04-48ce-834f-48ed46f6c314" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T102749Z:fad065e1-4f04-48ce-834f-48ed46f6c314" + ], + "Date": [ + "Tue, 16 Feb 2016 10:27:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/069005c3-56e7-4b1c-9c81-dfc9056d0136?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMDY5MDA1YzMtNTZlNy00YjFjLTljODEtZGZjOTA1NmQwMTM2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"069005c3-56e7-4b1c-9c81-dfc9056d0136\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T11:25:17.5737952+01: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-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "0c5e7595-9920-4c5c-b38d-90e98848f6c2" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14954" + ], + "x-ms-correlation-request-id": [ + "9a6033cf-9d4b-4a59-81fc-cb4d1bf4f97c" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T102819Z:9a6033cf-9d4b-4a59-81fc-cb4d1bf4f97c" + ], + "Date": [ + "Tue, 16 Feb 2016 10:28:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/069005c3-56e7-4b1c-9c81-dfc9056d0136?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMDY5MDA1YzMtNTZlNy00YjFjLTljODEtZGZjOTA1NmQwMTM2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"069005c3-56e7-4b1c-9c81-dfc9056d0136\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T11:25:17.5737952+01: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-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "24114384-b738-461d-a334-e6e38d749265" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14953" + ], + "x-ms-correlation-request-id": [ + "a2e4762a-f489-4a7a-9c1b-2a5b996028a4" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T102850Z:a2e4762a-f489-4a7a-9c1b-2a5b996028a4" + ], + "Date": [ + "Tue, 16 Feb 2016 10:28:50 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/069005c3-56e7-4b1c-9c81-dfc9056d0136?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMDY5MDA1YzMtNTZlNy00YjFjLTljODEtZGZjOTA1NmQwMTM2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"069005c3-56e7-4b1c-9c81-dfc9056d0136\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T11:25:17.5737952+01: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-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "6571d92c-c9e1-4848-8cf0-f083d74cb8bd" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14951" + ], + "x-ms-correlation-request-id": [ + "79e78ffb-3c4e-4150-882b-5f7a5b66865d" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T102920Z:79e78ffb-3c4e-4150-882b-5f7a5b66865d" + ], + "Date": [ + "Tue, 16 Feb 2016 10:29:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/069005c3-56e7-4b1c-9c81-dfc9056d0136?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMDY5MDA1YzMtNTZlNy00YjFjLTljODEtZGZjOTA1NmQwMTM2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"069005c3-56e7-4b1c-9c81-dfc9056d0136\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T11:25:17.5737952+01: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-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "448aa0de-ff9c-4acb-a057-69458fd7a2cd" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14950" + ], + "x-ms-correlation-request-id": [ + "bfdab780-41e5-4b45-8db0-67bf2f9fd965" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T102950Z:bfdab780-41e5-4b45-8db0-67bf2f9fd965" + ], + "Date": [ + "Tue, 16 Feb 2016 10:29:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/069005c3-56e7-4b1c-9c81-dfc9056d0136?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMDY5MDA1YzMtNTZlNy00YjFjLTljODEtZGZjOTA1NmQwMTM2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"069005c3-56e7-4b1c-9c81-dfc9056d0136\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T11:25:17.5737952+01: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-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "947e7177-9022-4dcb-a6e6-442242971b41" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14950" + ], + "x-ms-correlation-request-id": [ + "1c778ec0-1d1b-41a1-adad-a70ea5da65b1" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T103020Z:1c778ec0-1d1b-41a1-adad-a70ea5da65b1" + ], + "Date": [ + "Tue, 16 Feb 2016 10:30:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/069005c3-56e7-4b1c-9c81-dfc9056d0136?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMDY5MDA1YzMtNTZlNy00YjFjLTljODEtZGZjOTA1NmQwMTM2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"069005c3-56e7-4b1c-9c81-dfc9056d0136\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-02-16T11:25:17.5737952+01:00\",\r\n \"endTime\": \"2016-02-16T11:30:27.9175266+01: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-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "8996f0a0-bcd4-46f3-822a-70a650cd2f7c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14949" + ], + "x-ms-correlation-request-id": [ + "1019c57f-29c5-4d3f-8c4a-4932e4f5afbe" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T103050Z:1019c57f-29c5-4d3f-8c4a-4932e4f5afbe" + ], + "Date": [ + "Tue, 16 Feb 2016 10:30:50 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczYxMTA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"75fe4dc3-f01d-44b5-ba3e-1fc40cd3c7b6\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\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\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6110.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6110.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6110.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic0crptestps6110\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic1crptestps6110\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110\",\r\n \"name\": \"vmcrptestps6110\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2289" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "0cf30ccc-819f-4562-9fc7-f33bdd0ddf23" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14948" + ], + "x-ms-correlation-request-id": [ + "7b34099c-10f0-4040-920c-3bd9e7e9c384" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T103051Z:7b34099c-10f0-4040-920c-3bd9e7e9c384" + ], + "Date": [ + "Tue, 16 Feb 2016 10:30:50 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczYxMTA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fdaa22b6-506b-4c31-bd3a-46cd028a78ee" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"75fe4dc3-f01d-44b5-ba3e-1fc40cd3c7b6\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\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\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6110.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6110.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6110.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic0crptestps6110\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic1crptestps6110\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\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\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110/extensions/BGInfo\",\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110\",\r\n \"name\": \"vmcrptestps6110\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2843" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "a96e4e2b-8070-4534-bbfe-6205dbb48eba" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14939" + ], + "x-ms-correlation-request-id": [ + "187a3717-0061-47e5-82ea-eef2b34ca8e4" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T103230Z:187a3717-0061-47e5-82ea-eef2b34ca8e4" + ], + "Date": [ + "Tue, 16 Feb 2016 10:32:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczYxMTA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7fe1030e-eee5-429a-9b32-572bb32cf794" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"75fe4dc3-f01d-44b5-ba3e-1fc40cd3c7b6\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\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\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6110.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6110.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6110.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic0crptestps6110\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic1crptestps6110\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\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\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110/extensions/BGInfo\",\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110\",\r\n \"name\": \"vmcrptestps6110\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2843" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "9407eca6-d571-4c72-a766-18f596308ade" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14938" + ], + "x-ms-correlation-request-id": [ + "f96f4a58-2cc7-42a4-9d9f-5c1cd9798e7f" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T103231Z:f96f4a58-2cc7-42a4-9d9f-5c1cd9798e7f" + ], + "Date": [ + "Tue, 16 Feb 2016 10:32:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczYxMTA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9e2a41f5-fb1d-4c8f-9394-56d66616e220" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"75fe4dc3-f01d-44b5-ba3e-1fc40cd3c7b6\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\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\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6110.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6110.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6110.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic0crptestps6110\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic1crptestps6110\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\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\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110/extensions/BGInfo\",\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110\",\r\n \"name\": \"vmcrptestps6110\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2843" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "cade0776-8f8b-4638-a22c-d691d0dc755b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14937" + ], + "x-ms-correlation-request-id": [ + "3f11ef0f-2c40-4307-84ec-474a44552cf2" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T103231Z:3f11ef0f-2c40-4307-84ec-474a44552cf2" + ], + "Date": [ + "Tue, 16 Feb 2016 10:32:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczYxMTA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "abcda7c6-bf61-4c17-8226-4dc16b5d80fb" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"75fe4dc3-f01d-44b5-ba3e-1fc40cd3c7b6\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\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\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6110.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6110.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6110.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic0crptestps6110\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic1crptestps6110\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\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\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110/extensions/BGInfo\",\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110\",\r\n \"name\": \"vmcrptestps6110\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2843" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "30b10a6c-74c7-4599-9623-760bef06a4e9" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14935" + ], + "x-ms-correlation-request-id": [ + "e6b7664f-d1d6-4268-99a7-214fbedfb197" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T103300Z:e6b7664f-d1d6-4268-99a7-214fbedfb197" + ], + "Date": [ + "Tue, 16 Feb 2016 10:33:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczYxMTA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "70391bb9-6a3b-4a14-a3cf-883de2bb8985" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"75fe4dc3-f01d-44b5-ba3e-1fc40cd3c7b6\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\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\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6110.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6110.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6110.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic0crptestps6110\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic1crptestps6110\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\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\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110/extensions/BGInfo\",\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Azure.Diagnostics\",\r\n \"type\": \"IaaSDiagnostics\",\r\n \"typeHandlerVersion\": \"1.5\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yKF9Ub3RhbClcJSBQcm9jZXNzb3IgVGltZSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yIEluZm9ybWF0aW9uKF9Ub3RhbClcUHJvY2Vzc29yIEZyZXF1ZW5jeSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XEF2YWlsYWJsZSBCeXRlcyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcVENQdjZcU2VnbWVudHMgUmV0cmFuc21pdHRlZC9zZWMiIHNhbXBsZVJhdGU9IlBUMU0iIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFRDUHY0XFNlZ21lbnRzIFJldHJhbnNtaXR0ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrIEludGVyZmFjZSgqKVxCeXRlcyBTZW50L3NlYyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29yayBJbnRlcmZhY2UoKilcQnl0ZXMgUmVjZWl2ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110/extensions/IaaSDiagnostics\",\r\n \"name\": \"IaaSDiagnostics\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110\",\r\n \"name\": \"vmcrptestps6110\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "4704" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "f519716a-a33f-4d41-b751-61c0aea77de3" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14928" + ], + "x-ms-correlation-request-id": [ + "76dd2254-01b1-44ed-89bb-e473a03655eb" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T103535Z:76dd2254-01b1-44ed-89bb-e473a03655eb" + ], + "Date": [ + "Tue, 16 Feb 2016 10:35:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczYxMTA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0649b93e-b4db-4e1d-bb23-79a767bea583" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"75fe4dc3-f01d-44b5-ba3e-1fc40cd3c7b6\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\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\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6110.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6110.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6110.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic0crptestps6110\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic1crptestps6110\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"type\": \"AzureCATExtensionHandler\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_DS2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.2\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.2\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"stocrptestps6110.hour.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"stocrptestps6110.minute.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps61102\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps61102.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110/extensions/AzureCATExtensionHandler\",\r\n \"name\": \"AzureCATExtensionHandler\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110/extensions/BGInfo\",\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Azure.Diagnostics\",\r\n \"type\": \"IaaSDiagnostics\",\r\n \"typeHandlerVersion\": \"1.5\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yKF9Ub3RhbClcJSBQcm9jZXNzb3IgVGltZSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yIEluZm9ybWF0aW9uKF9Ub3RhbClcUHJvY2Vzc29yIEZyZXF1ZW5jeSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XEF2YWlsYWJsZSBCeXRlcyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcVENQdjZcU2VnbWVudHMgUmV0cmFuc21pdHRlZC9zZWMiIHNhbXBsZVJhdGU9IlBUMU0iIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFRDUHY0XFNlZ21lbnRzIFJldHJhbnNtaXR0ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrIEludGVyZmFjZSgqKVxCeXRlcyBTZW50L3NlYyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29yayBJbnRlcmZhY2UoKilcQnl0ZXMgUmVjZWl2ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110/extensions/IaaSDiagnostics\",\r\n \"name\": \"IaaSDiagnostics\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110\",\r\n \"name\": \"vmcrptestps6110\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "6682" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "cf906e75-cced-4b42-bf57-1dcd7e44b8ba" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14924" + ], + "x-ms-correlation-request-id": [ + "516fbe3c-cd30-4f91-9afa-ae0d154ab2c6" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T103643Z:516fbe3c-cd30-4f91-9afa-ae0d154ab2c6" + ], + "Date": [ + "Tue, 16 Feb 2016 10:36:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczYxMTA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0e8085ba-15dd-486f-b045-069f24afeb84" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"75fe4dc3-f01d-44b5-ba3e-1fc40cd3c7b6\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\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\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6110.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6110.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6110.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic0crptestps6110\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic1crptestps6110\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"type\": \"AzureCATExtensionHandler\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_DS2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.2\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.2\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"stocrptestps6110.hour.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"stocrptestps6110.minute.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps61102\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps61102.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110/extensions/AzureCATExtensionHandler\",\r\n \"name\": \"AzureCATExtensionHandler\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110/extensions/BGInfo\",\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Azure.Diagnostics\",\r\n \"type\": \"IaaSDiagnostics\",\r\n \"typeHandlerVersion\": \"1.5\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yKF9Ub3RhbClcJSBQcm9jZXNzb3IgVGltZSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yIEluZm9ybWF0aW9uKF9Ub3RhbClcUHJvY2Vzc29yIEZyZXF1ZW5jeSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XEF2YWlsYWJsZSBCeXRlcyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcVENQdjZcU2VnbWVudHMgUmV0cmFuc21pdHRlZC9zZWMiIHNhbXBsZVJhdGU9IlBUMU0iIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFRDUHY0XFNlZ21lbnRzIFJldHJhbnNtaXR0ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrIEludGVyZmFjZSgqKVxCeXRlcyBTZW50L3NlYyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29yayBJbnRlcmZhY2UoKilcQnl0ZXMgUmVjZWl2ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110/extensions/IaaSDiagnostics\",\r\n \"name\": \"IaaSDiagnostics\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110\",\r\n \"name\": \"vmcrptestps6110\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "6682" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "c6ab44ef-7fc3-41fc-b1ec-fab4f7e45155" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14922" + ], + "x-ms-correlation-request-id": [ + "9e19a72b-67cd-4066-8483-3b525c1f5f55" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T103644Z:9e19a72b-67cd-4066-8483-3b525c1f5f55" + ], + "Date": [ + "Tue, 16 Feb 2016 10:36:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczYxMTA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4a650448-3a21-4c2e-8d4e-310b9f5deaac" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"75fe4dc3-f01d-44b5-ba3e-1fc40cd3c7b6\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\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\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6110.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6110.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6110.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic0crptestps6110\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic1crptestps6110\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"type\": \"AzureCATExtensionHandler\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_DS2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.2\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.2\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"stocrptestps6110.hour.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"stocrptestps6110.minute.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps61102\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps61102.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110/extensions/AzureCATExtensionHandler\",\r\n \"name\": \"AzureCATExtensionHandler\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110/extensions/BGInfo\",\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Azure.Diagnostics\",\r\n \"type\": \"IaaSDiagnostics\",\r\n \"typeHandlerVersion\": \"1.5\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yKF9Ub3RhbClcJSBQcm9jZXNzb3IgVGltZSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yIEluZm9ybWF0aW9uKF9Ub3RhbClcUHJvY2Vzc29yIEZyZXF1ZW5jeSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XEF2YWlsYWJsZSBCeXRlcyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcVENQdjZcU2VnbWVudHMgUmV0cmFuc21pdHRlZC9zZWMiIHNhbXBsZVJhdGU9IlBUMU0iIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFRDUHY0XFNlZ21lbnRzIFJldHJhbnNtaXR0ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrIEludGVyZmFjZSgqKVxCeXRlcyBTZW50L3NlYyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29yayBJbnRlcmZhY2UoKilcQnl0ZXMgUmVjZWl2ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110/extensions/IaaSDiagnostics\",\r\n \"name\": \"IaaSDiagnostics\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110\",\r\n \"name\": \"vmcrptestps6110\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "6682" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "0ef8617d-2481-4690-8c18-f12d5f4eadc6" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14920" + ], + "x-ms-correlation-request-id": [ + "e0675d80-7e88-4ba4-a672-6e239c118f13" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T103648Z:e0675d80-7e88-4ba4-a672-6e239c118f13" + ], + "Date": [ + "Tue, 16 Feb 2016 10:36:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczYxMTA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7671bfb8-23db-4d03-8524-f686cd922573" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"75fe4dc3-f01d-44b5-ba3e-1fc40cd3c7b6\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\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\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6110.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6110.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6110.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic0crptestps6110\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic1crptestps6110\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\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\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110/extensions/BGInfo\",\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Azure.Diagnostics\",\r\n \"type\": \"IaaSDiagnostics\",\r\n \"typeHandlerVersion\": \"1.5\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yKF9Ub3RhbClcJSBQcm9jZXNzb3IgVGltZSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yIEluZm9ybWF0aW9uKF9Ub3RhbClcUHJvY2Vzc29yIEZyZXF1ZW5jeSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XEF2YWlsYWJsZSBCeXRlcyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcVENQdjZcU2VnbWVudHMgUmV0cmFuc21pdHRlZC9zZWMiIHNhbXBsZVJhdGU9IlBUMU0iIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFRDUHY0XFNlZ21lbnRzIFJldHJhbnNtaXR0ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrIEludGVyZmFjZSgqKVxCeXRlcyBTZW50L3NlYyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29yayBJbnRlcmZhY2UoKilcQnl0ZXMgUmVjZWl2ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110/extensions/IaaSDiagnostics\",\r\n \"name\": \"IaaSDiagnostics\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110\",\r\n \"name\": \"vmcrptestps6110\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "4704" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "b8797d84-d403-4ef8-9762-bc2876d96adc" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14917" + ], + "x-ms-correlation-request-id": [ + "7c1c1811-1351-4a3e-9ad0-ebe92f1311ab" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T103751Z:7c1c1811-1351-4a3e-9ad0-ebe92f1311ab" + ], + "Date": [ + "Tue, 16 Feb 2016 10:37:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/publishers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b38d913a-865c-455c-adb9-606936d8aefe" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4ward365\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/4ward365\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"active-navigation\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/active-navigation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"adam-software\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/adam-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"adatao\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/adatao\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"adobe\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/adobe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"adobe_test\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/adobe_test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"adra-match\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/adra-match\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aimsinnovation\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/aimsinnovation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"algebraix-data\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/algebraix-data\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alteryx\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/alteryx\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"altiar\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/altiar\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appcelerator\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/appcelerator\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appcitoinc\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/appcitoinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"apprenda\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/apprenda\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appveyorci\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/appveyorci\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appzero\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/appzero\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"array_networks\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/array_networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aspex-managed-cloud\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/aspex-managed-cloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"avepoint\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/avepoint\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aviatrix-systems\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/aviatrix-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"axway\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/axway\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azuresyncfusion\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/azuresyncfusion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bizagi\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/bizagi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"biztalk360\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/biztalk360\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blackberry\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/blackberry\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"boundlessgeo\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/boundlessgeo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"brocade_communications\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/brocade_communications\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bwappengine\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/bwappengine\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"caringo\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/caringo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cautelalabs\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/cautelalabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"checkpointsystems\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/checkpointsystems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cherwell\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/cherwell\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cisco\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/cisco\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"citrix\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/citrix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"clickberry\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/clickberry\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloud-cruiser\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloud-cruiser\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudbolt-software\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudbolt-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudera1qaz2wsx\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudera1qaz2wsx\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudhouse\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudhouse\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"CloudLinkEMC.SecureVM.Test\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/CloudLinkEMC.SecureVM.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Confer.TestSensor\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Confer.TestSensor\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"consensys\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/consensys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cordis\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/cordis\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cortical-io\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/cortical-io\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"credativ\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/credativ\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Dans.Windows.App\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Dans.Windows.App\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Dans2.Windows.App\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Dans2.Windows.App\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Dans3.Windows.App\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Dans3.Windows.App\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datacastle\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/datacastle\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dataexpeditioninc\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/dataexpeditioninc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dataiku\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/dataiku\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dataliberation\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/dataliberation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datasunrise\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/datasunrise\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"defacto_global_\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/defacto_global_\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dell-software\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/dell-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"denyall\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/denyall\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"docscorp-us\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/docscorp-us\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dolbydeveloper\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/dolbydeveloper\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dome9\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/dome9\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"donovapub\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/donovapub\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"easyterritory\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/easyterritory\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"edevtech\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/edevtech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"egress\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/egress\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eip\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/eip\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eip-eipower\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/eip-eipower\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elastacloud\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/elastacloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eloquera\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/eloquera\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eperi\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/eperi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ESET.FileSecurity\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/ESET.FileSecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eurotech\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/eurotech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"exit-games\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/exit-games\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"expertime\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/expertime\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"filebridge\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/filebridge\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"flexerasoftware\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/flexerasoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"forscene\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/forscene\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fortycloud\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/fortycloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fw\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/fw\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"g-data-software\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/g-data-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"greathorn\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/greathorn\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"haivision\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/haivision\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"halobicloud\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/halobicloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iamcloud\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/iamcloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ibabs-eu\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/ibabs-eu\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"imaginecommunications\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/imaginecommunications\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"imc\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/imc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"imperva\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/imperva\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"incredibuild\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/incredibuild\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"informatica\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/informatica\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infostrat\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/infostrat\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intel\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/intel\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ishlangu-load-balancer-adc\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/ishlangu-load-balancer-adc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jedox\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/jedox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jitterbit_integration\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/jitterbit_integration\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kepion\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/kepion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kollective\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/kollective\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"le\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/le\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lieberlieber\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/lieberlieber\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"LocalTest.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/LocalTest.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"logi-analytics\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/logi-analytics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"loginpeople\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/loginpeople\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"luxoft\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/luxoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"magelia\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/magelia\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"manageengine\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/manageengine\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mariadb\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/mariadb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mediazenie\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/mediazenie\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"memsql\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/memsql\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mendix\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/mendix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mentalnotes\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/mentalnotes\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mesosphere\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/mesosphere\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-ads\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-ads\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-r-products\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-r-products\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.Internal\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.Internal\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Test\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.SiteRecovery.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.OSTCExtensions.Test\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.OSTCExtensions.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Install\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Install\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Internal\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Internal\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.PaaS\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.PaaS\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Preview\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Preview\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Telemetry\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Telemetry\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Test.0\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Test.0\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Test.1\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Test.1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Test0\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Test0\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Test2\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Test2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Test3\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Test3\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.UtcTest\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.UtcTest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Wmf\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Wmf\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Wmf4Test\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Wmf4Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Wmf5\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Wmf5\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.ETWTraceListenerService\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.Azure.ETWTraceListenerService\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.ServiceProfiler\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.ServiceProfiler\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.ServiceProfiler.Test\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.ServiceProfiler.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftWindowsServerRemoteDesktop\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerRemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"miracl_linux\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/miracl_linux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mokxa-technologies\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/mokxa-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nasuni\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/nasuni\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"new-signature\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/new-signature\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nextlimit\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/nextlimit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nexus\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/nexus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nuxeo\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/nuxeo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"officeclipsuite\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/officeclipsuite\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"op5\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/op5\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"openmeap\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/openmeap\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"opennebulasystems\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/opennebulasystems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"opentext\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/opentext\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"panzura-file-system\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/panzura-file-system\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pointmatter\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/pointmatter\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"predictionio\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/predictionio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"predixion\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/predixion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"prime-strategy\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/prime-strategy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"primestream\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/primestream\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ptv_group\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/ptv_group\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pxlag_swiss\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/pxlag_swiss\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"quasardb\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/quasardb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"RedHat\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/RedHat\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rocketsoftware\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/rocketsoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rocket_software\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/rocket_software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"saama\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/saama\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scalebase\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/scalebase\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"searchblox\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/searchblox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sensorberg\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/sensorberg\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"servoy\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/servoy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"shavlik\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/shavlik\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"snip2code\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/snip2code\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stonefly\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/stonefly\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"storreduce\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/storreduce\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stratalux\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/stratalux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sunview-software\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/sunview-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"talon\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/talon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tentity\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/tentity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.HP.AppDefender\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.HP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity2\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.TrendMicro.DeepSecurity2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity3\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.TrendMicro.DeepSecurity3\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test1.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test1.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thinkboxsoftware\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/thinkboxsoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"topdesk\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/topdesk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test2\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/TrendMicro.DeepSecurity.Test2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unidesk\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/unidesk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unidesk-corp\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/unidesk-corp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vbot\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/vbot\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vecompsoftware\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/vecompsoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vircom\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/vircom\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"virtualworks\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/virtualworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vmturbo\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/vmturbo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Vormetric.VormetricTransparentEncryption\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Vormetric.VormetricTransparentEncryption\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"WAD-VMSS.Test\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/WAD-VMSS.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"WAD2AI.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/WAD2AI.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"WADVMSS.Test\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/WADVMSS.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"waratek\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/waratek\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"warewolf-esb\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/warewolf-esb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"watchfulsoftware\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/watchfulsoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xebialabs\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/xebialabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xmpro\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/xmpro\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xrm\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/xrm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zementis\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/zementis\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/zend\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zoomdata\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/zoomdata\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "75349" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e5424147-5546-4460-a869-3078ed08d0e2" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14947" + ], + "x-ms-correlation-request-id": [ + "0760c454-cfad-47c9-96de-8bfe69a19172" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T103051Z:0760c454-cfad-47c9-96de-8bfe69a19172" + ], + "Date": [ + "Tue, 16 Feb 2016 10:30:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "19125b38-40dd-4622-93e6-deeba5944bc2" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"CustomScriptExtension\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"JsonADDomainExtension\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/JsonADDomainExtension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"VMAccessAgent\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "1033" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3f4d94e4-9edc-42da-8313-07879e6a69c4" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14946" + ], + "x-ms-correlation-request-id": [ + "eb734bd4-8160-4f4b-b7f9-4f09212344d8" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T103052Z:eb734bd4-8160-4f4b-b7f9-4f09212344d8" + ], + "Date": [ + "Tue, 16 Feb 2016 10:30:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/BGInfo/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9CR0luZm8vdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d92685eb-c032-4fda-8ce7-f90d3a67bf86" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2.1\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/2.1\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "252" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c90cbe44-e617-44bc-abbd-c19fffb52abd" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14945" + ], + "x-ms-correlation-request-id": [ + "e63b4669-2f5b-4543-80f3-4e5cbb02292a" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T103052Z:e63b4669-2f5b-4543-80f3-4e5cbb02292a" + ], + "Date": [ + "Tue, 16 Feb 2016 10:30:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110/extensions/BGInfo?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczYxMTAvZXh0ZW5zaW9ucy9CR0luZm8/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "187" + ], + "x-ms-client-request-id": [ + "aec9adf4-7ee7-43cf-a9e8-825d89a6c783" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110/extensions/BGInfo\",\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "475" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/e87df0bc-ebc2-4ba4-89c0-348f99fd4c8e?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "e87df0bc-ebc2-4ba4-89c0-348f99fd4c8e" + ], + "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": [ + "5bcb39e7-f1d9-4105-8723-072ccf19049e" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T103058Z:5bcb39e7-f1d9-4105-8723-072ccf19049e" + ], + "Date": [ + "Tue, 16 Feb 2016 10:30:58 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/e87df0bc-ebc2-4ba4-89c0-348f99fd4c8e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZTg3ZGYwYmMtZWJjMi00YmE0LTg5YzAtMzQ4Zjk5ZmQ0YzhlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"e87df0bc-ebc2-4ba4-89c0-348f99fd4c8e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T11:30:57.0112925+01: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-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "846f1d52-c8db-42f2-a45d-e15b59a221ab" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14944" + ], + "x-ms-correlation-request-id": [ + "6c5b0502-2f8d-4794-95f3-44d7f066fa07" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T103129Z:6c5b0502-2f8d-4794-95f3-44d7f066fa07" + ], + "Date": [ + "Tue, 16 Feb 2016 10:31:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/e87df0bc-ebc2-4ba4-89c0-348f99fd4c8e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZTg3ZGYwYmMtZWJjMi00YmE0LTg5YzAtMzQ4Zjk5ZmQ0YzhlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"e87df0bc-ebc2-4ba4-89c0-348f99fd4c8e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T11:30:57.0112925+01: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-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "44be0cbf-d39b-414d-8099-d6484df1834c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14942" + ], + "x-ms-correlation-request-id": [ + "027478ab-43cd-432f-8b3b-14a391d9e1dd" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T103159Z:027478ab-43cd-432f-8b3b-14a391d9e1dd" + ], + "Date": [ + "Tue, 16 Feb 2016 10:31:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/e87df0bc-ebc2-4ba4-89c0-348f99fd4c8e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZTg3ZGYwYmMtZWJjMi00YmE0LTg5YzAtMzQ4Zjk5ZmQ0YzhlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"e87df0bc-ebc2-4ba4-89c0-348f99fd4c8e\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-02-16T11:30:57.0112925+01:00\",\r\n \"endTime\": \"2016-02-16T11:32:08.948772+01: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-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "f27d6c9b-476c-4ebf-9f5f-8de7ecb382fd" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14941" + ], + "x-ms-correlation-request-id": [ + "82a0ec1e-d2b9-49ff-924b-20cf3cdbe9d1" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T103229Z:82a0ec1e-d2b9-49ff-924b-20cf3cdbe9d1" + ], + "Date": [ + "Tue, 16 Feb 2016 10:32:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110/extensions/BGInfo?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczYxMTAvZXh0ZW5zaW9ucy9CR0luZm8/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110/extensions/BGInfo\",\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "476" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "7e263247-181a-48aa-bd73-d1aee9f05793" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14940" + ], + "x-ms-correlation-request-id": [ + "1ee35ca2-7448-4029-b501-6482f7818101" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T103230Z:1ee35ca2-7448-4029-b501-6482f7818101" + ], + "Date": [ + "Tue, 16 Feb 2016 10:32:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110?$expand=instanceView&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczYxMTA/JGV4cGFuZD1pbnN0YW5jZVZpZXcmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "205b6768-8777-419f-a4d4-5be5d10d5dd0" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"75fe4dc3-f01d-44b5-ba3e-1fc40cd3c7b6\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\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\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6110.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6110.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6110.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic0crptestps6110\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic1crptestps6110\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.7.1198.735\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"GuestAgent is running and accepting new configurations.\",\r\n \"time\": \"2016-02-16T11:32:30+01:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": [\r\n {\r\n \"type\": \"Microsoft.Compute.BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"Plugin enabled (name: Microsoft.Compute.BGInfo, version: 2.1).\"\r\n }\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"osDisk\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T11:30:57.4331541+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T11:30:57.5112748+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T11:30:57.5112748+01:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"extensions\": [\r\n {\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute.BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"Plugin enabled (name: Microsoft.Compute.BGInfo, version: 2.1).\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T11:32:08.8862816+01:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110/extensions/BGInfo\",\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110\",\r\n \"name\": \"vmcrptestps6110\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "5535" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "544b483c-a596-4f16-a6d8-037676c6437d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14936" + ], + "x-ms-correlation-request-id": [ + "7182c6b4-cca3-43d2-8829-ccd10e940797" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T103231Z:7182c6b4-cca3-43d2-8829-ccd10e940797" + ], + "Date": [ + "Tue, 16 Feb 2016 10:32:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110?$expand=instanceView&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczYxMTA/JGV4cGFuZD1pbnN0YW5jZVZpZXcmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5256851c-e2c2-422f-aafc-38e8cb10a9e9" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"75fe4dc3-f01d-44b5-ba3e-1fc40cd3c7b6\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\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\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6110.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6110.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6110.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic0crptestps6110\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic1crptestps6110\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.7.1198.735\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"GuestAgent is running and accepting new configurations.\",\r\n \"time\": \"2016-02-16T11:33:00+01:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": [\r\n {\r\n \"type\": \"Microsoft.Compute.BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"Plugin enabled (name: Microsoft.Compute.BGInfo, version: 2.1).\"\r\n }\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"osDisk\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T11:30:57.4331541+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T11:30:57.5112748+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T11:30:57.5112748+01:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"extensions\": [\r\n {\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute.BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"Plugin enabled (name: Microsoft.Compute.BGInfo, version: 2.1).\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T11:32:08.8862816+01:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110/extensions/BGInfo\",\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110\",\r\n \"name\": \"vmcrptestps6110\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "5535" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "2aff9af0-041e-4be3-a0c4-049e7edb6040" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14934" + ], + "x-ms-correlation-request-id": [ + "e0c405ae-d954-493e-91a4-56687a16022f" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T103301Z:e0c405ae-d954-493e-91a4-56687a16022f" + ], + "Date": [ + "Tue, 16 Feb 2016 10:33:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110?$expand=instanceView&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczYxMTA/JGV4cGFuZD1pbnN0YW5jZVZpZXcmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2f660814-52fe-49af-a6f2-8144f1913689" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"75fe4dc3-f01d-44b5-ba3e-1fc40cd3c7b6\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\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\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6110.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6110.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6110.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic0crptestps6110\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic1crptestps6110\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.7.1198.735\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"GuestAgent is running and accepting new configurations.\",\r\n \"time\": \"2016-02-16T11:36:38+01:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": [\r\n {\r\n \"type\": \"Microsoft.Azure.Diagnostics.IaaSDiagnostics\",\r\n \"typeHandlerVersion\": \"1.5.8.0\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"Diagnostics extension running\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring.AzureCATExtensionHandler\",\r\n \"typeHandlerVersion\": \"2.2.0.68\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Compute.BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"Plugin enabled (name: Microsoft.Compute.BGInfo, version: 2.1).\"\r\n }\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"osDisk\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T11:35:41.558148+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T11:35:41.558148+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T11:35:41.558148+01:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"extensions\": [\r\n {\r\n \"name\": \"AzureCATExtensionHandler\",\r\n \"type\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring.AzureCATExtensionHandler\",\r\n \"typeHandlerVersion\": \"2.2.0.68\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"deploymentId=8395ac26-34dd-4789-bf55-0bea8dd23bc7 roleInstance=_vmcrptestps6110\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute.BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"Plugin enabled (name: Microsoft.Compute.BGInfo, version: 2.1).\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"IaaSDiagnostics\",\r\n \"type\": \"Microsoft.Azure.Diagnostics.IaaSDiagnostics\",\r\n \"typeHandlerVersion\": \"1.5.8.0\",\r\n \"substatuses\": [\r\n {\r\n \"code\": \"ComponentStatus//succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"N/A\"\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"Diagnostic extension set successfully\",\r\n \"time\": \"2016-02-16T11:36:13+01:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T11:36:27.0893874+01:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"type\": \"AzureCATExtensionHandler\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_DS2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.2\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.2\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"stocrptestps6110.hour.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"stocrptestps6110.minute.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps61102\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps61102.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110/extensions/AzureCATExtensionHandler\",\r\n \"name\": \"AzureCATExtensionHandler\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110/extensions/BGInfo\",\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Azure.Diagnostics\",\r\n \"type\": \"IaaSDiagnostics\",\r\n \"typeHandlerVersion\": \"1.5\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yKF9Ub3RhbClcJSBQcm9jZXNzb3IgVGltZSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yIEluZm9ybWF0aW9uKF9Ub3RhbClcUHJvY2Vzc29yIEZyZXF1ZW5jeSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XEF2YWlsYWJsZSBCeXRlcyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcVENQdjZcU2VnbWVudHMgUmV0cmFuc21pdHRlZC9zZWMiIHNhbXBsZVJhdGU9IlBUMU0iIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFRDUHY0XFNlZ21lbnRzIFJldHJhbnNtaXR0ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrIEludGVyZmFjZSgqKVxCeXRlcyBTZW50L3NlYyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29yayBJbnRlcmZhY2UoKilcQnl0ZXMgUmVjZWl2ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110/extensions/IaaSDiagnostics\",\r\n \"name\": \"IaaSDiagnostics\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110\",\r\n \"name\": \"vmcrptestps6110\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "11342" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "b0c4b5cd-2f8a-4a72-84b0-f92f70e04d04" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14921" + ], + "x-ms-correlation-request-id": [ + "2d3fe392-bf2d-440b-aed2-4773b5da44dc" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T103644Z:2d3fe392-bf2d-440b-aed2-4773b5da44dc" + ], + "Date": [ + "Tue, 16 Feb 2016 10:36:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4f76885d-5862-428f-85a8-152308296f6b" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/ase/providers/Microsoft.Storage/storageAccounts/ase7745\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"ase7745\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-08-22T12:09:54.6487474Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ase7745.blob.core.windows.net/\",\r\n \"file\": \"https://ase7745.file.core.windows.net/\",\r\n \"queue\": \"https://ase7745.queue.core.windows.net/\",\r\n \"table\": \"https://ase7745.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/benolwtlz6gcrtv2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"benolwtlz6gcrtv2\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-02T15:37:42.4160913Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://benolwtlz6gcrtv2.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/sapresourcegroup/providers/Microsoft.Storage/storageAccounts/de8da241d96f400ba8791029\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"de8da241d96f400ba8791029\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-09-18T13:22:47.5628749Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://de8da241d96f400ba8791029.blob.core.windows.net/\",\r\n \"file\": \"https://de8da241d96f400ba8791029.file.core.windows.net/\",\r\n \"queue\": \"https://de8da241d96f400ba8791029.queue.core.windows.net/\",\r\n \"table\": \"https://de8da241d96f400ba8791029.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/group-4/providers/Microsoft.Storage/storageAccounts/dsdevstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"dsdevstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-22T21:10:41.790448Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://dsdevstorage.blob.core.windows.net/\",\r\n \"file\": \"https://dsdevstorage.file.core.windows.net/\",\r\n \"queue\": \"https://dsdevstorage.queue.core.windows.net/\",\r\n \"table\": \"https://dsdevstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduscherp/providers/Microsoft.Storage/storageAccounts/erpio6r4un3ewfnm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"erpio6r4un3ewfnm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-08T12:41:16.6105852Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://erpio6r4un3ewfnm.blob.core.windows.net/\",\r\n \"file\": \"https://erpio6r4un3ewfnm.file.core.windows.net/\",\r\n \"queue\": \"https://erpio6r4un3ewfnm.queue.core.windows.net/\",\r\n \"table\": \"https://erpio6r4un3ewfnm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmpremstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmpremstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:21.7378841Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmpremstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmpremstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmpremstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmpremstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmstdstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmstdstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:22.2160008Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmstdstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmstdstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmstdstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmstdstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-test2/providers/Microsoft.Storage/storageAccounts/gortestacc2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gortestacc2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-08T21:18:17.9028388Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gortestacc2.blob.core.windows.net/\",\r\n \"file\": \"https://gortestacc2.file.core.windows.net/\",\r\n \"queue\": \"https://gortestacc2.queue.core.windows.net/\",\r\n \"table\": \"https://gortestacc2.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-04-16T13:50:52.0015725Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspacepremium\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspacepremium\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-10-23T10:22:10.7216809Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspacepremium.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvmtest/providers/Microsoft.Storage/storageAccounts/lvmtestspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmtestspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T16:56:41.5005505Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmtestspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmtestspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmtestspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmtestspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-eml2/providers/Microsoft.Storage/storageAccounts/rgeml2stacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"rgeml2stacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T08:00:29.8670815Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://rgeml2stacc.blob.core.windows.net/\",\r\n \"file\": \"https://rgeml2stacc.file.core.windows.net/\",\r\n \"queue\": \"https://rgeml2stacc.queue.core.windows.net/\",\r\n \"table\": \"https://rgeml2stacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/sapcalrg/providers/Microsoft.Storage/storageAccounts/sapcalrg8522\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"sapcalrg8522\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-28T06:54:16.0456896Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sapcalrg8522.blob.core.windows.net/\",\r\n \"file\": \"https://sapcalrg8522.file.core.windows.net/\",\r\n \"queue\": \"https://sapcalrg8522.queue.core.windows.net/\",\r\n \"table\": \"https://sapcalrg8522.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/saperpdemo859644\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"saperpdemo859644\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-01-26T11:02:43.8634331Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saperpdemo859644.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1prstacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1prstacc\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-12-10T17:35:29.0415914Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1prstacc.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1ststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1ststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-10T17:36:26.4810072Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1ststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saphana1ststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saphana1ststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saphana1ststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-linux-docu-tests/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saplinuxdocuststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-24T09:25:04.4473982Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-linux-docu-tests-we/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststaccwe\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saplinuxdocuststaccwe\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-25T13:11:50.5477032Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststaccwe.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststaccwe.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststaccwe.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststaccwe.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/sappseduscsape012612030\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"sappseduscsape012612030\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2016-01-26T11:03:56.0307387Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sappseduscsape012612030.blob.core.windows.net/\",\r\n \"file\": \"https://sappseduscsape012612030.file.core.windows.net/\",\r\n \"queue\": \"https://sappseduscsape012612030.queue.core.windows.net/\",\r\n \"table\": \"https://sappseduscsape012612030.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"westeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/saptesiarm/providers/Microsoft.Storage/storageAccounts/saptesiarm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saptesiarm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-08-27T12:13:00.4049179Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptesiarm.blob.core.windows.net/\",\r\n \"file\": \"https://saptesiarm.file.core.windows.net/\",\r\n \"queue\": \"https://saptesiarm.queue.core.windows.net/\",\r\n \"table\": \"https://saptesiarm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/saptestrajrg/providers/Microsoft.Storage/storageAccounts/saptestrajrg4518\",\r\n \"location\": \"westus\",\r\n \"name\": \"saptestrajrg4518\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-07-22T19:24:21.1065762Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptestrajrg4518.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Storage/storageAccounts/stocrptestps6110\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps6110\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-16T10:24:47.5385966Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps6110.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/temptestsap\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"temptestsap\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-10T14:03:58.3799849Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://temptestsap.blob.core.windows.net/\",\r\n \"file\": \"https://temptestsap.file.core.windows.net/\",\r\n \"queue\": \"https://temptestsap.queue.core.windows.net/\",\r\n \"table\": \"https://temptestsap.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "14858" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "9a44c36e-1e2f-4d5f-91cf-0765d8214227" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14987" + ], + "x-ms-correlation-request-id": [ + "9a44c36e-1e2f-4d5f-91cf-0765d8214227" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T103232Z:9a44c36e-1e2f-4d5f-91cf-0765d8214227" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Tue, 16 Feb 2016 10:32:32 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d98902f4-2d1a-4a1e-803e-c5b91503fdae" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/ase/providers/Microsoft.Storage/storageAccounts/ase7745\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"ase7745\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-08-22T12:09:54.6487474Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ase7745.blob.core.windows.net/\",\r\n \"file\": \"https://ase7745.file.core.windows.net/\",\r\n \"queue\": \"https://ase7745.queue.core.windows.net/\",\r\n \"table\": \"https://ase7745.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/benolwtlz6gcrtv2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"benolwtlz6gcrtv2\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-02T15:37:42.4160913Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://benolwtlz6gcrtv2.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/sapresourcegroup/providers/Microsoft.Storage/storageAccounts/de8da241d96f400ba8791029\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"de8da241d96f400ba8791029\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-09-18T13:22:47.5628749Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://de8da241d96f400ba8791029.blob.core.windows.net/\",\r\n \"file\": \"https://de8da241d96f400ba8791029.file.core.windows.net/\",\r\n \"queue\": \"https://de8da241d96f400ba8791029.queue.core.windows.net/\",\r\n \"table\": \"https://de8da241d96f400ba8791029.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/group-4/providers/Microsoft.Storage/storageAccounts/dsdevstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"dsdevstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-22T21:10:41.790448Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://dsdevstorage.blob.core.windows.net/\",\r\n \"file\": \"https://dsdevstorage.file.core.windows.net/\",\r\n \"queue\": \"https://dsdevstorage.queue.core.windows.net/\",\r\n \"table\": \"https://dsdevstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduscherp/providers/Microsoft.Storage/storageAccounts/erpio6r4un3ewfnm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"erpio6r4un3ewfnm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-08T12:41:16.6105852Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://erpio6r4un3ewfnm.blob.core.windows.net/\",\r\n \"file\": \"https://erpio6r4un3ewfnm.file.core.windows.net/\",\r\n \"queue\": \"https://erpio6r4un3ewfnm.queue.core.windows.net/\",\r\n \"table\": \"https://erpio6r4un3ewfnm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmpremstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmpremstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:21.7378841Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmpremstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmpremstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmpremstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmpremstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmstdstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmstdstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:22.2160008Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmstdstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmstdstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmstdstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmstdstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-test2/providers/Microsoft.Storage/storageAccounts/gortestacc2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gortestacc2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-08T21:18:17.9028388Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gortestacc2.blob.core.windows.net/\",\r\n \"file\": \"https://gortestacc2.file.core.windows.net/\",\r\n \"queue\": \"https://gortestacc2.queue.core.windows.net/\",\r\n \"table\": \"https://gortestacc2.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-04-16T13:50:52.0015725Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspacepremium\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspacepremium\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-10-23T10:22:10.7216809Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspacepremium.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvmtest/providers/Microsoft.Storage/storageAccounts/lvmtestspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmtestspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T16:56:41.5005505Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmtestspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmtestspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmtestspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmtestspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-eml2/providers/Microsoft.Storage/storageAccounts/rgeml2stacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"rgeml2stacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T08:00:29.8670815Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://rgeml2stacc.blob.core.windows.net/\",\r\n \"file\": \"https://rgeml2stacc.file.core.windows.net/\",\r\n \"queue\": \"https://rgeml2stacc.queue.core.windows.net/\",\r\n \"table\": \"https://rgeml2stacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/sapcalrg/providers/Microsoft.Storage/storageAccounts/sapcalrg8522\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"sapcalrg8522\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-28T06:54:16.0456896Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sapcalrg8522.blob.core.windows.net/\",\r\n \"file\": \"https://sapcalrg8522.file.core.windows.net/\",\r\n \"queue\": \"https://sapcalrg8522.queue.core.windows.net/\",\r\n \"table\": \"https://sapcalrg8522.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/saperpdemo859644\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"saperpdemo859644\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-01-26T11:02:43.8634331Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saperpdemo859644.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1prstacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1prstacc\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-12-10T17:35:29.0415914Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1prstacc.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1ststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1ststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-10T17:36:26.4810072Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1ststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saphana1ststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saphana1ststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saphana1ststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-linux-docu-tests/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saplinuxdocuststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-24T09:25:04.4473982Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-linux-docu-tests-we/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststaccwe\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saplinuxdocuststaccwe\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-25T13:11:50.5477032Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststaccwe.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststaccwe.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststaccwe.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststaccwe.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/sappseduscsape012612030\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"sappseduscsape012612030\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2016-01-26T11:03:56.0307387Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sappseduscsape012612030.blob.core.windows.net/\",\r\n \"file\": \"https://sappseduscsape012612030.file.core.windows.net/\",\r\n \"queue\": \"https://sappseduscsape012612030.queue.core.windows.net/\",\r\n \"table\": \"https://sappseduscsape012612030.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"westeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/saptesiarm/providers/Microsoft.Storage/storageAccounts/saptesiarm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saptesiarm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-08-27T12:13:00.4049179Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptesiarm.blob.core.windows.net/\",\r\n \"file\": \"https://saptesiarm.file.core.windows.net/\",\r\n \"queue\": \"https://saptesiarm.queue.core.windows.net/\",\r\n \"table\": \"https://saptesiarm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/saptestrajrg/providers/Microsoft.Storage/storageAccounts/saptestrajrg4518\",\r\n \"location\": \"westus\",\r\n \"name\": \"saptestrajrg4518\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-07-22T19:24:21.1065762Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptestrajrg4518.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Storage/storageAccounts/stocrptestps6110\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps6110\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-16T10:24:47.5385966Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps6110.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Storage/storageAccounts/stocrptestps61102\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps61102\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T10:32:33.9540784Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps61102.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps61102.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps61102.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps61102.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/temptestsap\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"temptestsap\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-10T14:03:58.3799849Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://temptestsap.blob.core.windows.net/\",\r\n \"file\": \"https://temptestsap.file.core.windows.net/\",\r\n \"queue\": \"https://temptestsap.queue.core.windows.net/\",\r\n \"table\": \"https://temptestsap.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "15546" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d3c584ce-0ee5-4c26-a48f-9c85d9f1b242" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14983" + ], + "x-ms-correlation-request-id": [ + "d3c584ce-0ee5-4c26-a48f-9c85d9f1b242" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T103301Z:d3c584ce-0ee5-4c26-a48f-9c85d9f1b242" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Tue, 16 Feb 2016 10:33:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a6e162e5-b52e-4bab-be11-18cc7afceff1" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/ase/providers/Microsoft.Storage/storageAccounts/ase7745\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"ase7745\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-08-22T12:09:54.6487474Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ase7745.blob.core.windows.net/\",\r\n \"file\": \"https://ase7745.file.core.windows.net/\",\r\n \"queue\": \"https://ase7745.queue.core.windows.net/\",\r\n \"table\": \"https://ase7745.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/benolwtlz6gcrtv2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"benolwtlz6gcrtv2\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-02T15:37:42.4160913Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://benolwtlz6gcrtv2.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/sapresourcegroup/providers/Microsoft.Storage/storageAccounts/de8da241d96f400ba8791029\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"de8da241d96f400ba8791029\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-09-18T13:22:47.5628749Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://de8da241d96f400ba8791029.blob.core.windows.net/\",\r\n \"file\": \"https://de8da241d96f400ba8791029.file.core.windows.net/\",\r\n \"queue\": \"https://de8da241d96f400ba8791029.queue.core.windows.net/\",\r\n \"table\": \"https://de8da241d96f400ba8791029.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/group-4/providers/Microsoft.Storage/storageAccounts/dsdevstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"dsdevstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-22T21:10:41.790448Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://dsdevstorage.blob.core.windows.net/\",\r\n \"file\": \"https://dsdevstorage.file.core.windows.net/\",\r\n \"queue\": \"https://dsdevstorage.queue.core.windows.net/\",\r\n \"table\": \"https://dsdevstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduscherp/providers/Microsoft.Storage/storageAccounts/erpio6r4un3ewfnm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"erpio6r4un3ewfnm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-08T12:41:16.6105852Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://erpio6r4un3ewfnm.blob.core.windows.net/\",\r\n \"file\": \"https://erpio6r4un3ewfnm.file.core.windows.net/\",\r\n \"queue\": \"https://erpio6r4un3ewfnm.queue.core.windows.net/\",\r\n \"table\": \"https://erpio6r4un3ewfnm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmpremstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmpremstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:21.7378841Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmpremstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmpremstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmpremstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmpremstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmstdstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmstdstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:22.2160008Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmstdstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmstdstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmstdstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmstdstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-test2/providers/Microsoft.Storage/storageAccounts/gortestacc2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gortestacc2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-08T21:18:17.9028388Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gortestacc2.blob.core.windows.net/\",\r\n \"file\": \"https://gortestacc2.file.core.windows.net/\",\r\n \"queue\": \"https://gortestacc2.queue.core.windows.net/\",\r\n \"table\": \"https://gortestacc2.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-04-16T13:50:52.0015725Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspacepremium\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspacepremium\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-10-23T10:22:10.7216809Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspacepremium.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvmtest/providers/Microsoft.Storage/storageAccounts/lvmtestspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmtestspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T16:56:41.5005505Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmtestspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmtestspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmtestspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmtestspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-eml2/providers/Microsoft.Storage/storageAccounts/rgeml2stacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"rgeml2stacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T08:00:29.8670815Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://rgeml2stacc.blob.core.windows.net/\",\r\n \"file\": \"https://rgeml2stacc.file.core.windows.net/\",\r\n \"queue\": \"https://rgeml2stacc.queue.core.windows.net/\",\r\n \"table\": \"https://rgeml2stacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/sapcalrg/providers/Microsoft.Storage/storageAccounts/sapcalrg8522\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"sapcalrg8522\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-28T06:54:16.0456896Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sapcalrg8522.blob.core.windows.net/\",\r\n \"file\": \"https://sapcalrg8522.file.core.windows.net/\",\r\n \"queue\": \"https://sapcalrg8522.queue.core.windows.net/\",\r\n \"table\": \"https://sapcalrg8522.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/saperpdemo859644\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"saperpdemo859644\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-01-26T11:02:43.8634331Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saperpdemo859644.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1prstacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1prstacc\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-12-10T17:35:29.0415914Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1prstacc.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1ststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1ststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-10T17:36:26.4810072Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1ststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saphana1ststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saphana1ststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saphana1ststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-linux-docu-tests/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saplinuxdocuststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-24T09:25:04.4473982Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-linux-docu-tests-we/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststaccwe\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saplinuxdocuststaccwe\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-25T13:11:50.5477032Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststaccwe.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststaccwe.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststaccwe.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststaccwe.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/sappseduscsape012612030\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"sappseduscsape012612030\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2016-01-26T11:03:56.0307387Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sappseduscsape012612030.blob.core.windows.net/\",\r\n \"file\": \"https://sappseduscsape012612030.file.core.windows.net/\",\r\n \"queue\": \"https://sappseduscsape012612030.queue.core.windows.net/\",\r\n \"table\": \"https://sappseduscsape012612030.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"westeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/saptesiarm/providers/Microsoft.Storage/storageAccounts/saptesiarm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saptesiarm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-08-27T12:13:00.4049179Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptesiarm.blob.core.windows.net/\",\r\n \"file\": \"https://saptesiarm.file.core.windows.net/\",\r\n \"queue\": \"https://saptesiarm.queue.core.windows.net/\",\r\n \"table\": \"https://saptesiarm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/saptestrajrg/providers/Microsoft.Storage/storageAccounts/saptestrajrg4518\",\r\n \"location\": \"westus\",\r\n \"name\": \"saptestrajrg4518\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-07-22T19:24:21.1065762Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptestrajrg4518.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Storage/storageAccounts/stocrptestps6110\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps6110\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-16T10:24:47.5385966Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps6110.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Storage/storageAccounts/stocrptestps61102\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps61102\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T10:32:33.9540784Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps61102.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps61102.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps61102.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps61102.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/temptestsap\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"temptestsap\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-10T14:03:58.3799849Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://temptestsap.blob.core.windows.net/\",\r\n \"file\": \"https://temptestsap.file.core.windows.net/\",\r\n \"queue\": \"https://temptestsap.queue.core.windows.net/\",\r\n \"table\": \"https://temptestsap.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "15546" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a06e3c47-97c4-4a84-ba0f-6663f1b72634" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14982" + ], + "x-ms-correlation-request-id": [ + "a06e3c47-97c4-4a84-ba0f-6663f1b72634" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T103302Z:a06e3c47-97c4-4a84-ba0f-6663f1b72634" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Tue, 16 Feb 2016 10:33:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9805f5dd-10fc-4c6b-9d7e-5cd2251e8219" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/ase/providers/Microsoft.Storage/storageAccounts/ase7745\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"ase7745\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-08-22T12:09:54.6487474Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ase7745.blob.core.windows.net/\",\r\n \"file\": \"https://ase7745.file.core.windows.net/\",\r\n \"queue\": \"https://ase7745.queue.core.windows.net/\",\r\n \"table\": \"https://ase7745.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/benolwtlz6gcrtv2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"benolwtlz6gcrtv2\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-02T15:37:42.4160913Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://benolwtlz6gcrtv2.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/sapresourcegroup/providers/Microsoft.Storage/storageAccounts/de8da241d96f400ba8791029\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"de8da241d96f400ba8791029\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-09-18T13:22:47.5628749Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://de8da241d96f400ba8791029.blob.core.windows.net/\",\r\n \"file\": \"https://de8da241d96f400ba8791029.file.core.windows.net/\",\r\n \"queue\": \"https://de8da241d96f400ba8791029.queue.core.windows.net/\",\r\n \"table\": \"https://de8da241d96f400ba8791029.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/group-4/providers/Microsoft.Storage/storageAccounts/dsdevstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"dsdevstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-22T21:10:41.790448Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://dsdevstorage.blob.core.windows.net/\",\r\n \"file\": \"https://dsdevstorage.file.core.windows.net/\",\r\n \"queue\": \"https://dsdevstorage.queue.core.windows.net/\",\r\n \"table\": \"https://dsdevstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduscherp/providers/Microsoft.Storage/storageAccounts/erpio6r4un3ewfnm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"erpio6r4un3ewfnm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-08T12:41:16.6105852Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://erpio6r4un3ewfnm.blob.core.windows.net/\",\r\n \"file\": \"https://erpio6r4un3ewfnm.file.core.windows.net/\",\r\n \"queue\": \"https://erpio6r4un3ewfnm.queue.core.windows.net/\",\r\n \"table\": \"https://erpio6r4un3ewfnm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmpremstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmpremstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:21.7378841Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmpremstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmpremstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmpremstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmpremstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmstdstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmstdstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:22.2160008Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmstdstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmstdstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmstdstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmstdstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-test2/providers/Microsoft.Storage/storageAccounts/gortestacc2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gortestacc2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-08T21:18:17.9028388Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gortestacc2.blob.core.windows.net/\",\r\n \"file\": \"https://gortestacc2.file.core.windows.net/\",\r\n \"queue\": \"https://gortestacc2.queue.core.windows.net/\",\r\n \"table\": \"https://gortestacc2.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-04-16T13:50:52.0015725Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspacepremium\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspacepremium\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-10-23T10:22:10.7216809Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspacepremium.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvmtest/providers/Microsoft.Storage/storageAccounts/lvmtestspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmtestspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T16:56:41.5005505Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmtestspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmtestspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmtestspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmtestspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-eml2/providers/Microsoft.Storage/storageAccounts/rgeml2stacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"rgeml2stacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T08:00:29.8670815Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://rgeml2stacc.blob.core.windows.net/\",\r\n \"file\": \"https://rgeml2stacc.file.core.windows.net/\",\r\n \"queue\": \"https://rgeml2stacc.queue.core.windows.net/\",\r\n \"table\": \"https://rgeml2stacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/sapcalrg/providers/Microsoft.Storage/storageAccounts/sapcalrg8522\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"sapcalrg8522\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-28T06:54:16.0456896Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sapcalrg8522.blob.core.windows.net/\",\r\n \"file\": \"https://sapcalrg8522.file.core.windows.net/\",\r\n \"queue\": \"https://sapcalrg8522.queue.core.windows.net/\",\r\n \"table\": \"https://sapcalrg8522.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/saperpdemo859644\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"saperpdemo859644\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-01-26T11:02:43.8634331Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saperpdemo859644.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1prstacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1prstacc\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-12-10T17:35:29.0415914Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1prstacc.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1ststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1ststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-10T17:36:26.4810072Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1ststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saphana1ststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saphana1ststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saphana1ststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-linux-docu-tests/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saplinuxdocuststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-24T09:25:04.4473982Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-linux-docu-tests-we/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststaccwe\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saplinuxdocuststaccwe\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-25T13:11:50.5477032Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststaccwe.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststaccwe.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststaccwe.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststaccwe.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/sappseduscsape012612030\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"sappseduscsape012612030\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2016-01-26T11:03:56.0307387Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sappseduscsape012612030.blob.core.windows.net/\",\r\n \"file\": \"https://sappseduscsape012612030.file.core.windows.net/\",\r\n \"queue\": \"https://sappseduscsape012612030.queue.core.windows.net/\",\r\n \"table\": \"https://sappseduscsape012612030.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"westeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/saptesiarm/providers/Microsoft.Storage/storageAccounts/saptesiarm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saptesiarm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-08-27T12:13:00.4049179Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptesiarm.blob.core.windows.net/\",\r\n \"file\": \"https://saptesiarm.file.core.windows.net/\",\r\n \"queue\": \"https://saptesiarm.queue.core.windows.net/\",\r\n \"table\": \"https://saptesiarm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/saptestrajrg/providers/Microsoft.Storage/storageAccounts/saptestrajrg4518\",\r\n \"location\": \"westus\",\r\n \"name\": \"saptestrajrg4518\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-07-22T19:24:21.1065762Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptestrajrg4518.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Storage/storageAccounts/stocrptestps6110\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps6110\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-16T10:24:47.5385966Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps6110.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Storage/storageAccounts/stocrptestps61102\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps61102\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T10:32:33.9540784Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps61102.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps61102.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps61102.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps61102.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/temptestsap\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"temptestsap\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-10T14:03:58.3799849Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://temptestsap.blob.core.windows.net/\",\r\n \"file\": \"https://temptestsap.file.core.windows.net/\",\r\n \"queue\": \"https://temptestsap.queue.core.windows.net/\",\r\n \"table\": \"https://temptestsap.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "15546" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "11f2efe3-dc5b-429f-bb86-60c76d39c7dc" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14954" + ], + "x-ms-correlation-request-id": [ + "11f2efe3-dc5b-429f-bb86-60c76d39c7dc" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T103645Z:11f2efe3-dc5b-429f-bb86-60c76d39c7dc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Tue, 16 Feb 2016 10:36:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fa7af8b3-a746-4362-85f2-55f289f8a8b6" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/ase/providers/Microsoft.Storage/storageAccounts/ase7745\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"ase7745\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-08-22T12:09:54.6487474Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ase7745.blob.core.windows.net/\",\r\n \"file\": \"https://ase7745.file.core.windows.net/\",\r\n \"queue\": \"https://ase7745.queue.core.windows.net/\",\r\n \"table\": \"https://ase7745.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/benolwtlz6gcrtv2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"benolwtlz6gcrtv2\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-02T15:37:42.4160913Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://benolwtlz6gcrtv2.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/sapresourcegroup/providers/Microsoft.Storage/storageAccounts/de8da241d96f400ba8791029\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"de8da241d96f400ba8791029\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-09-18T13:22:47.5628749Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://de8da241d96f400ba8791029.blob.core.windows.net/\",\r\n \"file\": \"https://de8da241d96f400ba8791029.file.core.windows.net/\",\r\n \"queue\": \"https://de8da241d96f400ba8791029.queue.core.windows.net/\",\r\n \"table\": \"https://de8da241d96f400ba8791029.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/group-4/providers/Microsoft.Storage/storageAccounts/dsdevstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"dsdevstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-22T21:10:41.790448Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://dsdevstorage.blob.core.windows.net/\",\r\n \"file\": \"https://dsdevstorage.file.core.windows.net/\",\r\n \"queue\": \"https://dsdevstorage.queue.core.windows.net/\",\r\n \"table\": \"https://dsdevstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduscherp/providers/Microsoft.Storage/storageAccounts/erpio6r4un3ewfnm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"erpio6r4un3ewfnm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-08T12:41:16.6105852Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://erpio6r4un3ewfnm.blob.core.windows.net/\",\r\n \"file\": \"https://erpio6r4un3ewfnm.file.core.windows.net/\",\r\n \"queue\": \"https://erpio6r4un3ewfnm.queue.core.windows.net/\",\r\n \"table\": \"https://erpio6r4un3ewfnm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmpremstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmpremstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:21.7378841Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmpremstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmpremstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmpremstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmpremstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmstdstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmstdstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:22.2160008Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmstdstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmstdstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmstdstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmstdstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-test2/providers/Microsoft.Storage/storageAccounts/gortestacc2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gortestacc2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-08T21:18:17.9028388Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gortestacc2.blob.core.windows.net/\",\r\n \"file\": \"https://gortestacc2.file.core.windows.net/\",\r\n \"queue\": \"https://gortestacc2.queue.core.windows.net/\",\r\n \"table\": \"https://gortestacc2.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-04-16T13:50:52.0015725Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspacepremium\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspacepremium\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-10-23T10:22:10.7216809Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspacepremium.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvmtest/providers/Microsoft.Storage/storageAccounts/lvmtestspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmtestspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T16:56:41.5005505Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmtestspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmtestspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmtestspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmtestspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-eml2/providers/Microsoft.Storage/storageAccounts/rgeml2stacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"rgeml2stacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T08:00:29.8670815Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://rgeml2stacc.blob.core.windows.net/\",\r\n \"file\": \"https://rgeml2stacc.file.core.windows.net/\",\r\n \"queue\": \"https://rgeml2stacc.queue.core.windows.net/\",\r\n \"table\": \"https://rgeml2stacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/sapcalrg/providers/Microsoft.Storage/storageAccounts/sapcalrg8522\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"sapcalrg8522\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-28T06:54:16.0456896Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sapcalrg8522.blob.core.windows.net/\",\r\n \"file\": \"https://sapcalrg8522.file.core.windows.net/\",\r\n \"queue\": \"https://sapcalrg8522.queue.core.windows.net/\",\r\n \"table\": \"https://sapcalrg8522.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/saperpdemo859644\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"saperpdemo859644\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-01-26T11:02:43.8634331Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saperpdemo859644.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1prstacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1prstacc\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-12-10T17:35:29.0415914Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1prstacc.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1ststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1ststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-10T17:36:26.4810072Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1ststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saphana1ststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saphana1ststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saphana1ststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-linux-docu-tests/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saplinuxdocuststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-24T09:25:04.4473982Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-linux-docu-tests-we/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststaccwe\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saplinuxdocuststaccwe\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-25T13:11:50.5477032Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststaccwe.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststaccwe.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststaccwe.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststaccwe.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/sappseduscsape012612030\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"sappseduscsape012612030\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2016-01-26T11:03:56.0307387Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sappseduscsape012612030.blob.core.windows.net/\",\r\n \"file\": \"https://sappseduscsape012612030.file.core.windows.net/\",\r\n \"queue\": \"https://sappseduscsape012612030.queue.core.windows.net/\",\r\n \"table\": \"https://sappseduscsape012612030.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"westeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/saptesiarm/providers/Microsoft.Storage/storageAccounts/saptesiarm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saptesiarm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-08-27T12:13:00.4049179Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptesiarm.blob.core.windows.net/\",\r\n \"file\": \"https://saptesiarm.file.core.windows.net/\",\r\n \"queue\": \"https://saptesiarm.queue.core.windows.net/\",\r\n \"table\": \"https://saptesiarm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/saptestrajrg/providers/Microsoft.Storage/storageAccounts/saptestrajrg4518\",\r\n \"location\": \"westus\",\r\n \"name\": \"saptestrajrg4518\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-07-22T19:24:21.1065762Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptestrajrg4518.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Storage/storageAccounts/stocrptestps6110\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps6110\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-16T10:24:47.5385966Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps6110.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Storage/storageAccounts/stocrptestps61102\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps61102\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T10:32:33.9540784Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps61102.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps61102.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps61102.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps61102.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/temptestsap\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"temptestsap\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-10T14:03:58.3799849Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://temptestsap.blob.core.windows.net/\",\r\n \"file\": \"https://temptestsap.file.core.windows.net/\",\r\n \"queue\": \"https://temptestsap.queue.core.windows.net/\",\r\n \"table\": \"https://temptestsap.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "15546" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "cc78ce2d-6783-4e0a-8b47-107002f632c3" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14953" + ], + "x-ms-correlation-request-id": [ + "cc78ce2d-6783-4e0a-8b47-107002f632c3" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T103646Z:cc78ce2d-6783-4e0a-8b47-107002f632c3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Tue, 16 Feb 2016 10:36:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Storage/storageAccounts/stocrptestps61102?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM2MTEwMj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "89" + ], + "x-ms-client-request-id": [ + "f8822ede-6a89-4c04-a595-11a151797824" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "25" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "18f34124-7f5d-4ed9-ad7a-40d3eca13852" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Storage/operations/71608dc6-7f11-466e-bec8-0fec5b3d76bc?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "18f34124-7f5d-4ed9-ad7a-40d3eca13852" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T103234Z:18f34124-7f5d-4ed9-ad7a-40d3eca13852" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Tue, 16 Feb 2016 10:32:34 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Storage/operations/71608dc6-7f11-466e-bec8-0fec5b3d76bc?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzcxNjA4ZGM2LTdmMTEtNDY2ZS1iZWM4LTBmZWM1YjNkNzZiYz9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d87cec55-d42c-4cf3-b997-540b5d60f0f1" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "25" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14986" + ], + "x-ms-request-id": [ + "ffc94490-9069-496b-aa47-84c92d9ac279" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Storage/operations/71608dc6-7f11-466e-bec8-0fec5b3d76bc?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "ffc94490-9069-496b-aa47-84c92d9ac279" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T103235Z:ffc94490-9069-496b-aa47-84c92d9ac279" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Tue, 16 Feb 2016 10:32:34 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Storage/operations/71608dc6-7f11-466e-bec8-0fec5b3d76bc?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzcxNjA4ZGM2LTdmMTEtNDY2ZS1iZWM4LTBmZWM1YjNkNzZiYz9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "95017a10-b141-4fe9-a487-32d62f82ba93" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "89" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "24057174-1db5-4a9e-9bc6-a944d63ac1e2" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14985" + ], + "x-ms-correlation-request-id": [ + "24057174-1db5-4a9e-9bc6-a944d63ac1e2" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T103300Z:24057174-1db5-4a9e-9bc6-a944d63ac1e2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Tue, 16 Feb 2016 10:33:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Storage/storageAccounts/stocrptestps61102?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM2MTEwMj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6f4605f3-321a-42e5-9e36-57b374fa7a6b" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Storage/storageAccounts/stocrptestps61102\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps61102\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T10:32:33.9540784Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps61102.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps61102.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps61102.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps61102.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "688" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "4c91d069-04d7-41a9-a619-bea04832911a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14984" + ], + "x-ms-correlation-request-id": [ + "4c91d069-04d7-41a9-a619-bea04832911a" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T103300Z:4c91d069-04d7-41a9-a619-bea04832911a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Tue, 16 Feb 2016 10:33:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Storage/storageAccounts/stocrptestps61102/listKeys?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM2MTEwMi9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5d5a3bf3-ddcd-434d-a0fb-61d30d67bcef" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"key1\": \"DAwcej5z4h3UHbygYGFRbwR9FYxd2K50h3L1lpSpKvYV7nVJ0KqEgJR+iK3OWuRVcx0+MLy1IauSToh8kWNXzw==\",\r\n \"key2\": \"b02fmH5tsJqjHetvugiHDfUxyEb7VLetyRqx2k9W/ANeoZWw8rc2IlPDDvBSgYTJF8N2Sebz3KyJha8QlhcOlA==\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "198" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b03f9b46-d549-411a-85f2-95ec8b609e47" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "b03f9b46-d549-411a-85f2-95ec8b609e47" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T103302Z:b03f9b46-d549-411a-85f2-95ec8b609e47" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Tue, 16 Feb 2016 10:33:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Storage/storageAccounts/stocrptestps61102/listKeys?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM2MTEwMi9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6476d109-6af9-458c-8092-93107b9a25cb" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"key1\": \"DAwcej5z4h3UHbygYGFRbwR9FYxd2K50h3L1lpSpKvYV7nVJ0KqEgJR+iK3OWuRVcx0+MLy1IauSToh8kWNXzw==\",\r\n \"key2\": \"b02fmH5tsJqjHetvugiHDfUxyEb7VLetyRqx2k9W/ANeoZWw8rc2IlPDDvBSgYTJF8N2Sebz3KyJha8QlhcOlA==\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "198" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8402716f-fb88-4bf2-9108-0369b7c08a64" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1191" + ], + "x-ms-correlation-request-id": [ + "8402716f-fb88-4bf2-9108-0369b7c08a64" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T103646Z:8402716f-fb88-4bf2-9108-0369b7c08a64" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Tue, 16 Feb 2016 10:36:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110/extensions/IaaSDiagnostics?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczYxMTAvZXh0ZW5zaW9ucy9JYWFTRGlhZ25vc3RpY3M/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Azure.Diagnostics\",\r\n \"type\": \"IaaSDiagnostics\",\r\n \"typeHandlerVersion\": \"1.5\",\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yKF9Ub3RhbClcJSBQcm9jZXNzb3IgVGltZSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yIEluZm9ybWF0aW9uKF9Ub3RhbClcUHJvY2Vzc29yIEZyZXF1ZW5jeSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XEF2YWlsYWJsZSBCeXRlcyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcVENQdjZcU2VnbWVudHMgUmV0cmFuc21pdHRlZC9zZWMiIHNhbXBsZVJhdGU9IlBUMU0iIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFRDUHY0XFNlZ21lbnRzIFJldHJhbnNtaXR0ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrIEludGVyZmFjZSgqKVxCeXRlcyBTZW50L3NlYyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29yayBJbnRlcmZhY2UoKilcQnl0ZXMgUmVjZWl2ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"protectedSettings\": {\r\n \"storageAccountName\": \"stocrptestps61102\",\r\n \"storageAccountKey\": \"DAwcej5z4h3UHbygYGFRbwR9FYxd2K50h3L1lpSpKvYV7nVJ0KqEgJR+iK3OWuRVcx0+MLy1IauSToh8kWNXzw==\",\r\n \"storageAccountEndPoint\": \"https://core.windows.net\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1736" + ], + "x-ms-client-request-id": [ + "1beb077c-9966-40a5-8779-d719ec7858a7" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Azure.Diagnostics\",\r\n \"type\": \"IaaSDiagnostics\",\r\n \"typeHandlerVersion\": \"1.5\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yKF9Ub3RhbClcJSBQcm9jZXNzb3IgVGltZSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yIEluZm9ybWF0aW9uKF9Ub3RhbClcUHJvY2Vzc29yIEZyZXF1ZW5jeSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XEF2YWlsYWJsZSBCeXRlcyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcVENQdjZcU2VnbWVudHMgUmV0cmFuc21pdHRlZC9zZWMiIHNhbXBsZVJhdGU9IlBUMU0iIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFRDUHY0XFNlZ21lbnRzIFJldHJhbnNtaXR0ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrIEludGVyZmFjZSgqKVxCeXRlcyBTZW50L3NlYyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29yayBJbnRlcmZhY2UoKilcQnl0ZXMgUmVjZWl2ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110/extensions/IaaSDiagnostics\",\r\n \"name\": \"IaaSDiagnostics\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1801" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/48091f46-d550-40bb-8243-0dc34b8318c0?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "48091f46-d550-40bb-8243-0dc34b8318c0" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-correlation-request-id": [ + "04afc1b4-e591-403f-bd4d-311c46a51ef9" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T103304Z:04afc1b4-e591-403f-bd4d-311c46a51ef9" + ], + "Date": [ + "Tue, 16 Feb 2016 10:33:04 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/48091f46-d550-40bb-8243-0dc34b8318c0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNDgwOTFmNDYtZDU1MC00MGJiLTgyNDMtMGRjMzRiODMxOGMwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"48091f46-d550-40bb-8243-0dc34b8318c0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T11:33:03.8237734+01: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-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "aae53141-bdbf-4b20-be12-3a32c452a275" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14933" + ], + "x-ms-correlation-request-id": [ + "444c190e-fce9-48ff-a450-1e1a26a4a37c" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T103334Z:444c190e-fce9-48ff-a450-1e1a26a4a37c" + ], + "Date": [ + "Tue, 16 Feb 2016 10:33:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/48091f46-d550-40bb-8243-0dc34b8318c0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNDgwOTFmNDYtZDU1MC00MGJiLTgyNDMtMGRjMzRiODMxOGMwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"48091f46-d550-40bb-8243-0dc34b8318c0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T11:33:03.8237734+01: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-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "7fa8fff6-a1f3-40b7-b67d-458f8ad8e137" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14932" + ], + "x-ms-correlation-request-id": [ + "ca00f434-9df6-4e89-834c-fbc12bc77b87" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T103404Z:ca00f434-9df6-4e89-834c-fbc12bc77b87" + ], + "Date": [ + "Tue, 16 Feb 2016 10:34:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/48091f46-d550-40bb-8243-0dc34b8318c0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNDgwOTFmNDYtZDU1MC00MGJiLTgyNDMtMGRjMzRiODMxOGMwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"48091f46-d550-40bb-8243-0dc34b8318c0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T11:33:03.8237734+01: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-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "f32456bc-f63a-4444-b167-0a9f175a8f8a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14931" + ], + "x-ms-correlation-request-id": [ + "1a1d374c-dc7a-4bbb-a710-e30d4dd9006d" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T103435Z:1a1d374c-dc7a-4bbb-a710-e30d4dd9006d" + ], + "Date": [ + "Tue, 16 Feb 2016 10:34:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/48091f46-d550-40bb-8243-0dc34b8318c0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNDgwOTFmNDYtZDU1MC00MGJiLTgyNDMtMGRjMzRiODMxOGMwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"48091f46-d550-40bb-8243-0dc34b8318c0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T11:33:03.8237734+01: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-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "90a2721e-4760-4354-a453-9dc70111f119" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14931" + ], + "x-ms-correlation-request-id": [ + "4b61409d-905d-40cb-be25-67bdea90c651" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T103505Z:4b61409d-905d-40cb-be25-67bdea90c651" + ], + "Date": [ + "Tue, 16 Feb 2016 10:35:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/48091f46-d550-40bb-8243-0dc34b8318c0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNDgwOTFmNDYtZDU1MC00MGJiLTgyNDMtMGRjMzRiODMxOGMwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"48091f46-d550-40bb-8243-0dc34b8318c0\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-02-16T11:33:03.8237734+01:00\",\r\n \"endTime\": \"2016-02-16T11:35:13.9956478+01: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-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "da183bba-b1bd-4f75-aa86-a7bc9250b192" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14930" + ], + "x-ms-correlation-request-id": [ + "9376a7c6-d9ad-45f5-94c7-a5fddf74e961" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T103535Z:9376a7c6-d9ad-45f5-94c7-a5fddf74e961" + ], + "Date": [ + "Tue, 16 Feb 2016 10:35:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110/extensions/IaaSDiagnostics?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczYxMTAvZXh0ZW5zaW9ucy9JYWFTRGlhZ25vc3RpY3M/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Azure.Diagnostics\",\r\n \"type\": \"IaaSDiagnostics\",\r\n \"typeHandlerVersion\": \"1.5\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yKF9Ub3RhbClcJSBQcm9jZXNzb3IgVGltZSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yIEluZm9ybWF0aW9uKF9Ub3RhbClcUHJvY2Vzc29yIEZyZXF1ZW5jeSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XEF2YWlsYWJsZSBCeXRlcyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcVENQdjZcU2VnbWVudHMgUmV0cmFuc21pdHRlZC9zZWMiIHNhbXBsZVJhdGU9IlBUMU0iIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFRDUHY0XFNlZ21lbnRzIFJldHJhbnNtaXR0ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrIEludGVyZmFjZSgqKVxCeXRlcyBTZW50L3NlYyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29yayBJbnRlcmZhY2UoKilcQnl0ZXMgUmVjZWl2ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110/extensions/IaaSDiagnostics\",\r\n \"name\": \"IaaSDiagnostics\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1802" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "0686e84f-d0b1-4d3c-bac2-737acbc7fb01" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14929" + ], + "x-ms-correlation-request-id": [ + "84329501-fc9c-4890-938e-3592f7792110" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T103535Z:84329501-fc9c-4890-938e-3592f7792110" + ], + "Date": [ + "Tue, 16 Feb 2016 10:35:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110/extensions/AzureCATExtensionHandler?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczYxMTAvZXh0ZW5zaW9ucy9BenVyZUNBVEV4dGVuc2lvbkhhbmRsZXI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"type\": \"AzureCATExtensionHandler\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_DS2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.2\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.2\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"stocrptestps6110.hour.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"stocrptestps6110.minute.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps61102\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps61102.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"protectedSettings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"wad.key\",\r\n \"value\": \"DAwcej5z4h3UHbygYGFRbwR9FYxd2K50h3L1lpSpKvYV7nVJ0KqEgJR+iK3OWuRVcx0+MLy1IauSToh8kWNXzw==\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "3219" + ], + "x-ms-client-request-id": [ + "089eaad3-d696-4a65-b9ec-fab40d3b90f9" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"type\": \"AzureCATExtensionHandler\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_DS2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.2\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.2\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"stocrptestps6110.hour.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"stocrptestps6110.minute.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps61102\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps61102.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110/extensions/AzureCATExtensionHandler\",\r\n \"name\": \"AzureCATExtensionHandler\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1918" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/c8ff7fc6-5500-4748-a400-2b2a54137a55?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "c8ff7fc6-5500-4748-a400-2b2a54137a55" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-correlation-request-id": [ + "269d3016-bc3a-4bff-9ac9-ff003595630e" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T103541Z:269d3016-bc3a-4bff-9ac9-ff003595630e" + ], + "Date": [ + "Tue, 16 Feb 2016 10:35:41 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/c8ff7fc6-5500-4748-a400-2b2a54137a55?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYzhmZjdmYzYtNTUwMC00NzQ4LWE0MDAtMmIyYTU0MTM3YTU1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"c8ff7fc6-5500-4748-a400-2b2a54137a55\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T11:35:40.7456485+01: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-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "a35dc835-f403-4d08-8a3e-7b6e31b45b8f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14927" + ], + "x-ms-correlation-request-id": [ + "6008016c-a360-4731-a999-09ddc1e06b78" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T103612Z:6008016c-a360-4731-a999-09ddc1e06b78" + ], + "Date": [ + "Tue, 16 Feb 2016 10:36:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/c8ff7fc6-5500-4748-a400-2b2a54137a55?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYzhmZjdmYzYtNTUwMC00NzQ4LWE0MDAtMmIyYTU0MTM3YTU1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"c8ff7fc6-5500-4748-a400-2b2a54137a55\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-02-16T11:35:40.7456485+01:00\",\r\n \"endTime\": \"2016-02-16T11:36:27.1675278+01: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-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "8fc532e6-a6f5-4363-a0bb-884a78d53853" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14926" + ], + "x-ms-correlation-request-id": [ + "778ff851-0bd5-4b86-8bef-223bbfb037a8" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T103642Z:778ff851-0bd5-4b86-8bef-223bbfb037a8" + ], + "Date": [ + "Tue, 16 Feb 2016 10:36:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110/extensions/AzureCATExtensionHandler?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczYxMTAvZXh0ZW5zaW9ucy9BenVyZUNBVEV4dGVuc2lvbkhhbmRsZXI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"type\": \"AzureCATExtensionHandler\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_DS2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.2\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.2\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"stocrptestps6110.hour.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"stocrptestps6110.minute.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps61102\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps61102.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110/extensions/AzureCATExtensionHandler\",\r\n \"name\": \"AzureCATExtensionHandler\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1919" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "3ab2c84e-4a23-4820-b82f-333525be98ed" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14925" + ], + "x-ms-correlation-request-id": [ + "670715a8-4d03-4f76-87e6-a81dae705182" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T103642Z:670715a8-4d03-4f76-87e6-a81dae705182" + ], + "Date": [ + "Tue, 16 Feb 2016 10:36:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110/extensions/AzureCATExtensionHandler?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczYxMTAvZXh0ZW5zaW9ucy9BenVyZUNBVEV4dGVuc2lvbkhhbmRsZXI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "48cf2f24-7b6f-4752-888d-65ed96a86030" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"type\": \"AzureCATExtensionHandler\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_DS2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.2\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.2\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"stocrptestps6110.hour.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"stocrptestps6110.minute.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps61102\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps61102.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110/extensions/AzureCATExtensionHandler\",\r\n \"name\": \"AzureCATExtensionHandler\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1919" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "aa65225b-7514-40db-9fe7-aebd656b34ed" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14923" + ], + "x-ms-correlation-request-id": [ + "1037e41c-7002-4dd4-acd5-08c070b47363" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T103644Z:1037e41c-7002-4dd4-acd5-08c070b47363" + ], + "Date": [ + "Tue, 16 Feb 2016 10:36:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110/extensions/AzureCATExtensionHandler?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczYxMTAvZXh0ZW5zaW9ucy9BenVyZUNBVEV4dGVuc2lvbkhhbmRsZXI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d6b44fde-016d-4985-96dc-4d4327362e3e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/bc4a9e88-2e7d-4e4f-a728-7e9d41ec782a?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "bc4a9e88-2e7d-4e4f-a728-7e9d41ec782a" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/bc4a9e88-2e7d-4e4f-a728-7e9d41ec782a?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1191" + ], + "x-ms-correlation-request-id": [ + "c1969e40-bf0c-451c-899c-c3eb43c578a4" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T103651Z:c1969e40-bf0c-451c-899c-c3eb43c578a4" + ], + "Date": [ + "Tue, 16 Feb 2016 10:36:50 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/bc4a9e88-2e7d-4e4f-a728-7e9d41ec782a?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYmM0YTllODgtMmU3ZC00ZTRmLWE3MjgtN2U5ZDQxZWM3ODJhP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"bc4a9e88-2e7d-4e4f-a728-7e9d41ec782a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T11:36:51.0269011+01: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-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "b90b4d2f-fbb8-4b39-82eb-6362f79219b8" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14919" + ], + "x-ms-correlation-request-id": [ + "34a65099-91f8-4a0c-bf52-c9db44a04cc3" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T103721Z:34a65099-91f8-4a0c-bf52-c9db44a04cc3" + ], + "Date": [ + "Tue, 16 Feb 2016 10:37:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/bc4a9e88-2e7d-4e4f-a728-7e9d41ec782a?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYmM0YTllODgtMmU3ZC00ZTRmLWE3MjgtN2U5ZDQxZWM3ODJhP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"bc4a9e88-2e7d-4e4f-a728-7e9d41ec782a\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-02-16T11:36:51.0269011+01:00\",\r\n \"endTime\": \"2016-02-16T11:37:46.995629+01: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-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "0212ff92-1710-4cf7-afec-8a78200ee821" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14918" + ], + "x-ms-correlation-request-id": [ + "bae2c683-d570-47a2-b18a-cfbe9cbc5f97" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T103751Z:bae2c683-d570-47a2-b18a-cfbe9cbc5f97" + ], + "Date": [ + "Tue, 16 Feb 2016 10:37:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourcegroups/crptestps6110?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczYxMTA/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": [ + "0c025ba2-36b6-4bbe-9252-87c74d1629cd" + ], + "x-ms-correlation-request-id": [ + "0c025ba2-36b6-4bbe-9252-87c74d1629cd" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T103753Z:0c025ba2-36b6-4bbe-9252-87c74d1629cd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 10:37:53 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yTVRFd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14936" + ], + "x-ms-request-id": [ + "59150404-8599-4f64-98b7-6bebd3ae17bf" + ], + "x-ms-correlation-request-id": [ + "59150404-8599-4f64-98b7-6bebd3ae17bf" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T103753Z:59150404-8599-4f64-98b7-6bebd3ae17bf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 10:37:53 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yTVRFd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14934" + ], + "x-ms-request-id": [ + "b376da91-9705-472c-b9a1-91430bd0a424" + ], + "x-ms-correlation-request-id": [ + "b376da91-9705-472c-b9a1-91430bd0a424" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T103809Z:b376da91-9705-472c-b9a1-91430bd0a424" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 10:38:08 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yTVRFd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14933" + ], + "x-ms-request-id": [ + "15cb00e8-aead-4437-83a5-dbee651cfb5d" + ], + "x-ms-correlation-request-id": [ + "15cb00e8-aead-4437-83a5-dbee651cfb5d" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T103824Z:15cb00e8-aead-4437-83a5-dbee651cfb5d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 10:38:23 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yTVRFd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14932" + ], + "x-ms-request-id": [ + "905ad168-1b80-413b-8793-5a755d6c7578" + ], + "x-ms-correlation-request-id": [ + "905ad168-1b80-413b-8793-5a755d6c7578" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T103840Z:905ad168-1b80-413b-8793-5a755d6c7578" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 10:38:40 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yTVRFd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14930" + ], + "x-ms-request-id": [ + "35a49926-0dd3-49fe-8e1e-bece233208f0" + ], + "x-ms-correlation-request-id": [ + "35a49926-0dd3-49fe-8e1e-bece233208f0" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T103855Z:35a49926-0dd3-49fe-8e1e-bece233208f0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 10:38:54 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yTVRFd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14929" + ], + "x-ms-request-id": [ + "9f9a5f48-03fb-4d14-ae1e-32a27cb9f9ee" + ], + "x-ms-correlation-request-id": [ + "9f9a5f48-03fb-4d14-ae1e-32a27cb9f9ee" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T103910Z:9f9a5f48-03fb-4d14-ae1e-32a27cb9f9ee" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 10:39:09 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yTVRFd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14928" + ], + "x-ms-request-id": [ + "b748bedf-7f38-4e8a-90e8-2c1d481a3ec0" + ], + "x-ms-correlation-request-id": [ + "b748bedf-7f38-4e8a-90e8-2c1d481a3ec0" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T103925Z:b748bedf-7f38-4e8a-90e8-2c1d481a3ec0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 10:39:25 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yTVRFd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14927" + ], + "x-ms-request-id": [ + "605ac294-c654-483a-950b-9a715aa9af4a" + ], + "x-ms-correlation-request-id": [ + "605ac294-c654-483a-950b-9a715aa9af4a" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T103941Z:605ac294-c654-483a-950b-9a715aa9af4a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 10:39:40 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yTVRFd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14926" + ], + "x-ms-request-id": [ + "513b5ee3-6a27-4d72-9cce-6e6d9b116055" + ], + "x-ms-correlation-request-id": [ + "513b5ee3-6a27-4d72-9cce-6e6d9b116055" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T103956Z:513b5ee3-6a27-4d72-9cce-6e6d9b116055" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 10:39:56 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yTVRFd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14925" + ], + "x-ms-request-id": [ + "28128428-d8f3-4f7f-bf37-b74861189c54" + ], + "x-ms-correlation-request-id": [ + "28128428-d8f3-4f7f-bf37-b74861189c54" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T104011Z:28128428-d8f3-4f7f-bf37-b74861189c54" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 10:40:10 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yTVRFd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14924" + ], + "x-ms-request-id": [ + "7916de52-003f-4ffb-a3c1-0084f54fc207" + ], + "x-ms-correlation-request-id": [ + "7916de52-003f-4ffb-a3c1-0084f54fc207" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T104026Z:7916de52-003f-4ffb-a3c1-0084f54fc207" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 10:40:26 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yTVRFd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14923" + ], + "x-ms-request-id": [ + "57c7eccf-3053-47e4-af4c-64b3d8e15c08" + ], + "x-ms-correlation-request-id": [ + "57c7eccf-3053-47e4-af4c-64b3d8e15c08" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T104041Z:57c7eccf-3053-47e4-af4c-64b3d8e15c08" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 10:40:41 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yTVRFd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14922" + ], + "x-ms-request-id": [ + "09c6ae90-b2f6-4ae3-9037-786eff42e11e" + ], + "x-ms-correlation-request-id": [ + "09c6ae90-b2f6-4ae3-9037-786eff42e11e" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T104057Z:09c6ae90-b2f6-4ae3-9037-786eff42e11e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 10:40:56 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yTVRFd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14921" + ], + "x-ms-request-id": [ + "0bb7ef45-d5c2-4e5f-a586-661510621593" + ], + "x-ms-correlation-request-id": [ + "0bb7ef45-d5c2-4e5f-a586-661510621593" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T104112Z:0bb7ef45-d5c2-4e5f-a586-661510621593" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 10:41:12 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yTVRFd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14920" + ], + "x-ms-request-id": [ + "841b350e-67e9-4442-9a20-e8f87012de1d" + ], + "x-ms-correlation-request-id": [ + "841b350e-67e9-4442-9a20-e8f87012de1d" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T104128Z:841b350e-67e9-4442-9a20-e8f87012de1d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 10:41:27 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yTVRFd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14919" + ], + "x-ms-request-id": [ + "e56c29bc-ceb9-4ab5-a565-6497e69a0f63" + ], + "x-ms-correlation-request-id": [ + "e56c29bc-ceb9-4ab5-a565-6497e69a0f63" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T104143Z:e56c29bc-ceb9-4ab5-a565-6497e69a0f63" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 10:41:43 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yTVRFd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14918" + ], + "x-ms-request-id": [ + "77a51781-6c4e-4845-a88e-e49944b97b30" + ], + "x-ms-correlation-request-id": [ + "77a51781-6c4e-4845-a88e-e49944b97b30" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T104159Z:77a51781-6c4e-4845-a88e-e49944b97b30" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 10:41:59 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yTVRFd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14917" + ], + "x-ms-request-id": [ + "b9cc0287-ac9e-44df-adfc-c806e9e7690e" + ], + "x-ms-correlation-request-id": [ + "b9cc0287-ac9e-44df-adfc-c806e9e7690e" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T104214Z:b9cc0287-ac9e-44df-adfc-c806e9e7690e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 10:42:14 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yTVRFd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14916" + ], + "x-ms-request-id": [ + "bb7ad7f1-7461-4603-90a2-371feeb2538c" + ], + "x-ms-correlation-request-id": [ + "bb7ad7f1-7461-4603-90a2-371feeb2538c" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T104229Z:bb7ad7f1-7461-4603-90a2-371feeb2538c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 10:42:29 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yTVRFd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14915" + ], + "x-ms-request-id": [ + "340ef7e2-beb6-4ca4-b22a-6237ff2d6ba4" + ], + "x-ms-correlation-request-id": [ + "340ef7e2-beb6-4ca4-b22a-6237ff2d6ba4" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T104245Z:340ef7e2-beb6-4ca4-b22a-6237ff2d6ba4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 10:42:44 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yTVRFd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14914" + ], + "x-ms-request-id": [ + "50b35405-18c8-45bb-b7e5-5e41de5330bb" + ], + "x-ms-correlation-request-id": [ + "50b35405-18c8-45bb-b7e5-5e41de5330bb" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T104300Z:50b35405-18c8-45bb-b7e5-5e41de5330bb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 10:42:59 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yTVRFd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14912" + ], + "x-ms-request-id": [ + "2a1c826e-9070-46a9-8259-34409fb331bf" + ], + "x-ms-correlation-request-id": [ + "2a1c826e-9070-46a9-8259-34409fb331bf" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T104315Z:2a1c826e-9070-46a9-8259-34409fb331bf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 10:43:15 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yTVRFd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14911" + ], + "x-ms-request-id": [ + "3dbd4a7b-90be-413d-b3cf-b69f4c526e70" + ], + "x-ms-correlation-request-id": [ + "3dbd4a7b-90be-413d-b3cf-b69f4c526e70" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T104330Z:3dbd4a7b-90be-413d-b3cf-b69f4c526e70" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 10:43:30 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yTVRFd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14909" + ], + "x-ms-request-id": [ + "6b6c3a9a-e695-456c-8605-9c1cd56e76ce" + ], + "x-ms-correlation-request-id": [ + "6b6c3a9a-e695-456c-8605-9c1cd56e76ce" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T104345Z:6b6c3a9a-e695-456c-8605-9c1cd56e76ce" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 10:43:45 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yTVRFd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14908" + ], + "x-ms-request-id": [ + "729dfc04-0627-493e-8377-26948427fc76" + ], + "x-ms-correlation-request-id": [ + "729dfc04-0627-493e-8377-26948427fc76" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T104401Z:729dfc04-0627-493e-8377-26948427fc76" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 10:44:00 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yTVRFd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14907" + ], + "x-ms-request-id": [ + "5923e465-06aa-4c70-9c48-25b16daa8a83" + ], + "x-ms-correlation-request-id": [ + "5923e465-06aa-4c70-9c48-25b16daa8a83" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T104416Z:5923e465-06aa-4c70-9c48-25b16daa8a83" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 10:44:16 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yTVRFd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14906" + ], + "x-ms-request-id": [ + "ad62cf85-89b0-4ce1-b327-e55c76ab4ba6" + ], + "x-ms-correlation-request-id": [ + "ad62cf85-89b0-4ce1-b327-e55c76ab4ba6" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T104431Z:ad62cf85-89b0-4ce1-b327-e55c76ab4ba6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 10:44:30 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-AEMExtensionAdvancedWindows": [ + "crptestps6110" + ] + }, + "Variables": { + "SubscriptionId": "acf8322c-ac5c-4cbd-8907-5f5920784774" + } +} \ No newline at end of file diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.AEMExtensionTests/TestAEMExtensionBasicLinux.json b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.AEMExtensionTests/TestAEMExtensionBasicLinux.json new file mode 100644 index 000000000000..11ffabe238be --- /dev/null +++ b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.AEMExtensionTests/TestAEMExtensionBasicLinux.json @@ -0,0 +1,5833 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "5199" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14870" + ], + "x-ms-request-id": [ + "59c9167a-5d4a-41b8-9702-5d473de34443" + ], + "x-ms-correlation-request-id": [ + "59c9167a-5d4a-41b8-9702-5d473de34443" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T131833Z:59c9167a-5d4a-41b8-9702-5d473de34443" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 13:18:33 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourcegroups/crptestps3457?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczM0NTc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "105" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14869" + ], + "x-ms-request-id": [ + "4a0a346d-591d-4f36-a4b9-e045b0b78b68" + ], + "x-ms-correlation-request-id": [ + "4a0a346d-591d-4f36-a4b9-e045b0b78b68" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T131834Z:4a0a346d-591d-4f36-a4b9-e045b0b78b68" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 13:18:33 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourcegroups/crptestps3457?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczM0NTc/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": [ + "14837" + ], + "x-ms-request-id": [ + "871268a8-33a1-4f1a-806d-54b9c24e2b70" + ], + "x-ms-correlation-request-id": [ + "871268a8-33a1-4f1a-806d-54b9c24e2b70" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T140257Z:871268a8-33a1-4f1a-806d-54b9c24e2b70" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 14:02:56 GMT" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourcegroups/crptestps3457?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczM0NTc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457\",\r\n \"name\": \"crptestps3457\",\r\n \"location\": \"eastus\",\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": [ + "8c0fea75-3f2f-46ae-b1cc-0b6c10cde101" + ], + "x-ms-correlation-request-id": [ + "8c0fea75-3f2f-46ae-b1cc-0b6c10cde101" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T131835Z:8c0fea75-3f2f-46ae-b1cc-0b6c10cde101" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 13:18:34 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM0NTcvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "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": [ + "14868" + ], + "x-ms-request-id": [ + "851d37ce-9724-4bd2-a2c2-3ec0013bc95d" + ], + "x-ms-correlation-request-id": [ + "851d37ce-9724-4bd2-a2c2-3ec0013bc95d" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T131835Z:851d37ce-9724-4bd2-a2c2-3ec0013bc95d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 13:18:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/virtualnetworks/vnetcrptestps3457?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM0NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzMzQ1Nz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "819d1955-b4ee-4ee9-904c-e877c3e21107" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/vnetcrptestps3457' under resource group 'crptestps3457' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "168" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "1e58af6d-1fe5-4b9c-8dad-86dc6cadb8b4" + ], + "x-ms-correlation-request-id": [ + "1e58af6d-1fe5-4b9c-8dad-86dc6cadb8b4" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T131836Z:1e58af6d-1fe5-4b9c-8dad-86dc6cadb8b4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 13:18:35 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/virtualnetworks/vnetcrptestps3457?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM0NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzMzQ1Nz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps3457\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/virtualNetworks/vnetcrptestps3457\",\r\n \"etag\": \"W/\\\"5738a143-e648-444e-a9cd-031ce9723ae5\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"51769e48-b3c6-45e1-94e0-0506c8439e88\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps3457\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/virtualNetworks/vnetcrptestps3457/subnets/subnetcrptestps3457\",\r\n \"etag\": \"W/\\\"5738a143-e648-444e-a9cd-031ce9723ae5\\\"\",\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}", + "ResponseHeaders": { + "Content-Length": [ + "994" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "208d7a9d-cb8e-4c1c-912f-038c34469b02" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"5738a143-e648-444e-a9cd-031ce9723ae5\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14809" + ], + "x-ms-correlation-request-id": [ + "ff7c14a1-965f-4a25-b581-7923657c5a2d" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T131848Z:ff7c14a1-965f-4a25-b581-7923657c5a2d" + ], + "Date": [ + "Tue, 16 Feb 2016 13:18:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/virtualnetworks/vnetcrptestps3457?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM0NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzMzQ1Nz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f120c71e-9662-4965-8b2c-536e12e51e48" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps3457\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/virtualNetworks/vnetcrptestps3457\",\r\n \"etag\": \"W/\\\"5738a143-e648-444e-a9cd-031ce9723ae5\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"51769e48-b3c6-45e1-94e0-0506c8439e88\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps3457\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/virtualNetworks/vnetcrptestps3457/subnets/subnetcrptestps3457\",\r\n \"etag\": \"W/\\\"5738a143-e648-444e-a9cd-031ce9723ae5\\\"\",\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}", + "ResponseHeaders": { + "Content-Length": [ + "994" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "67d27ef6-d8a3-4efa-a7dc-242abd7ddac3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"5738a143-e648-444e-a9cd-031ce9723ae5\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14808" + ], + "x-ms-correlation-request-id": [ + "2ee21894-a184-4fe9-a77a-d85c902dd840" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T131849Z:2ee21894-a184-4fe9-a77a-d85c902dd840" + ], + "Date": [ + "Tue, 16 Feb 2016 13:18:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/virtualnetworks/vnetcrptestps3457?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM0NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzMzQ1Nz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ab36af47-48ed-4514-b602-ae6274ba2da5" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps3457\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/virtualNetworks/vnetcrptestps3457\",\r\n \"etag\": \"W/\\\"5738a143-e648-444e-a9cd-031ce9723ae5\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"51769e48-b3c6-45e1-94e0-0506c8439e88\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps3457\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/virtualNetworks/vnetcrptestps3457/subnets/subnetcrptestps3457\",\r\n \"etag\": \"W/\\\"5738a143-e648-444e-a9cd-031ce9723ae5\\\"\",\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}", + "ResponseHeaders": { + "Content-Length": [ + "994" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ca3441bb-ce7b-4877-b185-9a9cea210117" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"5738a143-e648-444e-a9cd-031ce9723ae5\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14807" + ], + "x-ms-correlation-request-id": [ + "6119ad60-9bab-49e4-838f-1bb3c67164f5" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T131849Z:6119ad60-9bab-49e4-838f-1bb3c67164f5" + ], + "Date": [ + "Tue, 16 Feb 2016 13:18:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/virtualnetworks/vnetcrptestps3457?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM0NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzMzQ1Nz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps3457\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "341" + ], + "x-ms-client-request-id": [ + "fd650371-d325-479d-8dee-5e5e9928d037" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps3457\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/virtualNetworks/vnetcrptestps3457\",\r\n \"etag\": \"W/\\\"697de0bb-d262-4cb4-aaa0-802991f79b74\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"51769e48-b3c6-45e1-94e0-0506c8439e88\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps3457\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/virtualNetworks/vnetcrptestps3457/subnets/subnetcrptestps3457\",\r\n \"etag\": \"W/\\\"697de0bb-d262-4cb4-aaa0-802991f79b74\\\"\",\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}", + "ResponseHeaders": { + "Content-Length": [ + "992" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "43996328-be62-4b27-9915-9378e992650b" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Network/locations/eastus/operations/43996328-be62-4b27-9915-9378e992650b?api-version=2015-06-15" + ], + "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": [ + "cba57b26-6d5c-4923-9b5f-50abb9e7f183" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T131838Z:cba57b26-6d5c-4923-9b5f-50abb9e7f183" + ], + "Date": [ + "Tue, 16 Feb 2016 13:18:37 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Network/locations/eastus/operations/43996328-be62-4b27-9915-9378e992650b?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNDM5OTYzMjgtYmU2Mi00YjI3LTk5MTUtOTM3OGU5OTI2NTBiP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkManagementClient/3.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": [ + "4846a70e-3b2f-442e-be25-3b2e4d965bcb" + ], + "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": [ + "14810" + ], + "x-ms-correlation-request-id": [ + "13da502e-4767-4039-a0f0-a82b5ec54714" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T131848Z:13da502e-4767-4039-a0f0-a82b5ec54714" + ], + "Date": [ + "Tue, 16 Feb 2016 13:18:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps3457?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM0NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzMzQ1Nz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "82b3744c-0ea4-4850-9f1f-6f789f599a8a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/pubipcrptestps3457' under resource group 'crptestps3457' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "171" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "989e1661-024b-456c-a776-b411bc85e3c1" + ], + "x-ms-correlation-request-id": [ + "989e1661-024b-456c-a776-b411bc85e3c1" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T131849Z:989e1661-024b-456c-a776-b411bc85e3c1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 13:18:48 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps3457?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM0NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzMzQ1Nz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps3457\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps3457\",\r\n \"etag\": \"W/\\\"a3c5b3c4-6284-4fcb-ad35-dd49876c5e3b\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"20c40cf7-9f29-4c94-a6db-998fa8d09727\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps3457\",\r\n \"fqdn\": \"pubipcrptestps3457.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "666" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f621e4e2-e8ce-4b7d-9506-4e40d0b45403" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"a3c5b3c4-6284-4fcb-ad35-dd49876c5e3b\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14804" + ], + "x-ms-correlation-request-id": [ + "09abddb1-00de-42e9-82da-ee5f651a7b06" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T131903Z:09abddb1-00de-42e9-82da-ee5f651a7b06" + ], + "Date": [ + "Tue, 16 Feb 2016 13:19:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps3457?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM0NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzMzQ1Nz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "49924940-0bb6-4caa-b86b-e5fb397c64aa" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps3457\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps3457\",\r\n \"etag\": \"W/\\\"a3c5b3c4-6284-4fcb-ad35-dd49876c5e3b\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"20c40cf7-9f29-4c94-a6db-998fa8d09727\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps3457\",\r\n \"fqdn\": \"pubipcrptestps3457.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "666" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "cdc22c92-1a42-45e3-ae60-6144be9ae686" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"a3c5b3c4-6284-4fcb-ad35-dd49876c5e3b\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14803" + ], + "x-ms-correlation-request-id": [ + "aebdd777-0098-4af1-9b57-cffc92822725" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T131903Z:aebdd777-0098-4af1-9b57-cffc92822725" + ], + "Date": [ + "Tue, 16 Feb 2016 13:19:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps3457?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM0NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzMzQ1Nz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "aa256199-24f1-4d91-abd1-93a72dcd2249" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps3457\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps3457\",\r\n \"etag\": \"W/\\\"a3c5b3c4-6284-4fcb-ad35-dd49876c5e3b\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"20c40cf7-9f29-4c94-a6db-998fa8d09727\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps3457\",\r\n \"fqdn\": \"pubipcrptestps3457.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "666" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "5ad9f4da-b896-447e-a490-e874ef9f8394" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"a3c5b3c4-6284-4fcb-ad35-dd49876c5e3b\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14802" + ], + "x-ms-correlation-request-id": [ + "5f7773d6-6fcf-47e0-b9cb-8b748ab288ea" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T131903Z:5f7773d6-6fcf-47e0-b9cb-8b748ab288ea" + ], + "Date": [ + "Tue, 16 Feb 2016 13:19:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps3457?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM0NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzMzQ1Nz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps3457\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "174" + ], + "x-ms-client-request-id": [ + "a570946d-be54-4b43-80ad-fd4c434aeb7b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps3457\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps3457\",\r\n \"etag\": \"W/\\\"f19821a2-a662-46fd-b4b4-253f47da949e\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"20c40cf7-9f29-4c94-a6db-998fa8d09727\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps3457\",\r\n \"fqdn\": \"pubipcrptestps3457.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "665" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "77cf0744-6d17-4780-813e-e42d85d0ef84" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Network/locations/eastus/operations/77cf0744-6d17-4780-813e-e42d85d0ef84?api-version=2015-06-15" + ], + "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": [ + "fec9d2e8-1204-4a97-9e71-720bd405cd12" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T131851Z:fec9d2e8-1204-4a97-9e71-720bd405cd12" + ], + "Date": [ + "Tue, 16 Feb 2016 13:18:51 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Network/locations/eastus/operations/77cf0744-6d17-4780-813e-e42d85d0ef84?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNzdjZjA3NDQtNmQxNy00NzgwLTgxM2UtZTQyZDg1ZDBlZjg0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkManagementClient/3.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": [ + "0a0f6ebc-3ae5-4882-b3e3-90b8cc7d146b" + ], + "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": [ + "14805" + ], + "x-ms-correlation-request-id": [ + "4b094ea5-eb64-4650-bc3c-fd7152fee39e" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T131902Z:4b094ea5-eb64-4650-bc3c-fd7152fee39e" + ], + "Date": [ + "Tue, 16 Feb 2016 13:19:01 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/networkInterfaces/nic0crptestps3457?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM0NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzBjcnB0ZXN0cHMzNDU3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "32597f5b-e590-42a6-8ceb-b218e0ac9d16" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/nic0crptestps3457' under resource group 'crptestps3457' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "170" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "5b3d2367-af6b-4d4a-8e82-0cfef93bbd89" + ], + "x-ms-correlation-request-id": [ + "5b3d2367-af6b-4d4a-8e82-0cfef93bbd89" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T131903Z:5b3d2367-af6b-4d4a-8e82-0cfef93bbd89" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 13:19:02 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/networkInterfaces/nic0crptestps3457?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM0NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzBjcnB0ZXN0cHMzNDU3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7246ee94-e37b-4b90-9673-9f90f3e520fb" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"nic0crptestps3457\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/networkInterfaces/nic0crptestps3457\",\r\n \"etag\": \"W/\\\"add95c97-ee56-4a4a-ad49-d1c97f0baad9\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ad78bbb7-8f90-4587-8c9c-7116a2f6e546\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/networkInterfaces/nic0crptestps3457/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"add95c97-ee56-4a4a-ad49-d1c97f0baad9\\\"\",\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/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps3457\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/virtualNetworks/vnetcrptestps3457/subnets/subnetcrptestps3457\"\r\n },\r\n \"primary\": true\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1548" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7911b45d-dbbb-411d-8df6-83f55b3fa2b6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"add95c97-ee56-4a4a-ad49-d1c97f0baad9\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14800" + ], + "x-ms-correlation-request-id": [ + "fe68615a-93ad-4062-a2d7-7d3c8ff98e50" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T131905Z:fe68615a-93ad-4062-a2d7-7d3c8ff98e50" + ], + "Date": [ + "Tue, 16 Feb 2016 13:19:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/networkInterfaces/nic0crptestps3457?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM0NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzBjcnB0ZXN0cHMzNDU3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "58edb4e9-2e49-4745-82e5-5b753f988f89" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"nic0crptestps3457\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/networkInterfaces/nic0crptestps3457\",\r\n \"etag\": \"W/\\\"add95c97-ee56-4a4a-ad49-d1c97f0baad9\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ad78bbb7-8f90-4587-8c9c-7116a2f6e546\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/networkInterfaces/nic0crptestps3457/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"add95c97-ee56-4a4a-ad49-d1c97f0baad9\\\"\",\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/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps3457\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/virtualNetworks/vnetcrptestps3457/subnets/subnetcrptestps3457\"\r\n },\r\n \"primary\": true\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1548" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "aea5198c-0738-4229-ae5c-2708ada6e610" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"add95c97-ee56-4a4a-ad49-d1c97f0baad9\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14799" + ], + "x-ms-correlation-request-id": [ + "b1ad8b1f-53be-4e67-b388-c997bf424676" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T131906Z:b1ad8b1f-53be-4e67-b388-c997bf424676" + ], + "Date": [ + "Tue, 16 Feb 2016 13:19:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/networkInterfaces/nic0crptestps3457?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM0NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzBjcnB0ZXN0cHMzNDU3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"properties\": {\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": [],\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/virtualNetworks/vnetcrptestps3457/subnets/subnetcrptestps3457\",\r\n \"properties\": {\r\n \"ipConfigurations\": []\r\n }\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps3457\"\r\n }\r\n }\r\n }\r\n ],\r\n \"primary\": false,\r\n \"enableIPForwarding\": false\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "900" + ], + "x-ms-client-request-id": [ + "2e0c2961-2a38-4742-b1f3-1aa4db45bfb8" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"nic0crptestps3457\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/networkInterfaces/nic0crptestps3457\",\r\n \"etag\": \"W/\\\"add95c97-ee56-4a4a-ad49-d1c97f0baad9\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ad78bbb7-8f90-4587-8c9c-7116a2f6e546\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/networkInterfaces/nic0crptestps3457/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"add95c97-ee56-4a4a-ad49-d1c97f0baad9\\\"\",\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/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps3457\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/virtualNetworks/vnetcrptestps3457/subnets/subnetcrptestps3457\"\r\n },\r\n \"primary\": true\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1548" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "406da2c9-9f2c-40de-ba51-6fc2d8ffbd34" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Network/locations/eastus/operations/406da2c9-9f2c-40de-ba51-6fc2d8ffbd34?api-version=2015-06-15" + ], + "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": [ + "16b1906d-2105-45ee-a12b-68e4fda80497" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T131905Z:16b1906d-2105-45ee-a12b-68e4fda80497" + ], + "Date": [ + "Tue, 16 Feb 2016 13:19:05 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Storage/storageAccounts/stocrptestps3457?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM0NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHMzNDU3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "89" + ], + "x-ms-client-request-id": [ + "fa9d2427-bb51-41cd-8e25-0f0911ef4b2a" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "25" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "2ace2f28-871e-4653-bbb1-27420527db5c" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Storage/operations/2c10430d-08b0-4bf1-9a71-7ae9ddbeed78?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "2ace2f28-871e-4653-bbb1-27420527db5c" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T131908Z:2ace2f28-871e-4653-bbb1-27420527db5c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Tue, 16 Feb 2016 13:19:08 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Storage/operations/2c10430d-08b0-4bf1-9a71-7ae9ddbeed78?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzJjMTA0MzBkLTA4YjAtNGJmMS05YTcxLTdhZTlkZGJlZWQ3OD9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5132bf21-80ca-46ab-b668-a0d9a0dad667" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "25" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14782" + ], + "x-ms-request-id": [ + "69e1afc9-cf6e-492f-b050-f1f682c1932b" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Storage/operations/2c10430d-08b0-4bf1-9a71-7ae9ddbeed78?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "69e1afc9-cf6e-492f-b050-f1f682c1932b" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T131908Z:69e1afc9-cf6e-492f-b050-f1f682c1932b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Tue, 16 Feb 2016 13:19:08 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Storage/operations/2c10430d-08b0-4bf1-9a71-7ae9ddbeed78?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzJjMTA0MzBkLTA4YjAtNGJmMS05YTcxLTdhZTlkZGJlZWQ3OD9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "752c9401-3986-426f-8e7e-d7fe07755d91" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "89" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c6257ced-59bd-491f-82bb-fc22cba1fcfd" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14780" + ], + "x-ms-correlation-request-id": [ + "c6257ced-59bd-491f-82bb-fc22cba1fcfd" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T131934Z:c6257ced-59bd-491f-82bb-fc22cba1fcfd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Tue, 16 Feb 2016 13:19:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Storage/storageAccounts/stocrptestps3457?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM0NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHMzNDU3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "752537a6-c029-484e-b008-4f023a28818a" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Storage/storageAccounts/stocrptestps3457\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps3457\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T13:19:07.5618762Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps3457.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps3457.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps3457.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps3457.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "682" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "5a2e4d2e-502c-4566-bec7-e47cea949d13" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14779" + ], + "x-ms-correlation-request-id": [ + "5a2e4d2e-502c-4566-bec7-e47cea949d13" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T131934Z:5a2e4d2e-502c-4566-bec7-e47cea949d13" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Tue, 16 Feb 2016 13:19:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Storage/storageAccounts/stocrptestps3457?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM0NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHMzNDU3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7d7f9074-34b4-4ad5-b55a-19b90a57af11" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Storage/storageAccounts/stocrptestps3457\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps3457\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T13:19:07.5618762Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps3457.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps3457.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps3457.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps3457.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "682" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "566ced8a-8a88-44b5-a382-4eb6ce51e50f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14778" + ], + "x-ms-correlation-request-id": [ + "566ced8a-8a88-44b5-a382-4eb6ce51e50f" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T131934Z:566ced8a-8a88-44b5-a382-4eb6ce51e50f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Tue, 16 Feb 2016 13:19:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Storage/storageAccounts/stocrptestps3457/listKeys?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM0NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHMzNDU3L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8375af87-9166-46f2-acf9-e47832184562" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"key1\": \"drNk94kdlVm8VdcXAYBrEWgh1d4NM+8N46tOxAUMKTV6PpZjmYlkb/DB5UG75cj8PUvD4kK6ssxByIyMgNcSyA==\",\r\n \"key2\": \"Owc4SIPgSEluG7ruzgzHf8AVmuvqCV1EQjeuW97+IwsKTwKWYfNgE5fuqnwRWvXOhyg4WTgekW2ot0POlUT8Vg==\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "198" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "9bccb660-4c68-4b02-ba56-6f51cb893f46" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "9bccb660-4c68-4b02-ba56-6f51cb893f46" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T131934Z:9bccb660-4c68-4b02-ba56-6f51cb893f46" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Tue, 16 Feb 2016 13:19:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Storage/storageAccounts/stocrptestps3457/listKeys?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM0NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHMzNDU3L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d22a2c28-e0f2-4e3c-b9a9-f642798faf97" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"key1\": \"drNk94kdlVm8VdcXAYBrEWgh1d4NM+8N46tOxAUMKTV6PpZjmYlkb/DB5UG75cj8PUvD4kK6ssxByIyMgNcSyA==\",\r\n \"key2\": \"Owc4SIPgSEluG7ruzgzHf8AVmuvqCV1EQjeuW97+IwsKTwKWYfNgE5fuqnwRWvXOhyg4WTgekW2ot0POlUT8Vg==\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "198" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "24e9b25f-f5df-465d-a7cc-9151f77c4b95" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "24e9b25f-f5df-465d-a7cc-9151f77c4b95" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T132442Z:24e9b25f-f5df-465d-a7cc-9151f77c4b95" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Tue, 16 Feb 2016 13:24:41 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Storage/storageAccounts/stocrptestps3457/listKeys?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM0NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHMzNDU3L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b2b34f58-12e5-4f1b-8126-9f39fa733b16" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"key1\": \"drNk94kdlVm8VdcXAYBrEWgh1d4NM+8N46tOxAUMKTV6PpZjmYlkb/DB5UG75cj8PUvD4kK6ssxByIyMgNcSyA==\",\r\n \"key2\": \"Owc4SIPgSEluG7ruzgzHf8AVmuvqCV1EQjeuW97+IwsKTwKWYfNgE5fuqnwRWvXOhyg4WTgekW2ot0POlUT8Vg==\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "198" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "86701aba-4e21-4171-b002-fcdf604845c1" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "86701aba-4e21-4171-b002-fcdf604845c1" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T132443Z:86701aba-4e21-4171-b002-fcdf604845c1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Tue, 16 Feb 2016 13:24:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Storage/storageAccounts/stocrptestps3457/listKeys?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM0NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHMzNDU3L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2364051d-8370-4cdf-9e0b-fb3374b61cc4" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"key1\": \"drNk94kdlVm8VdcXAYBrEWgh1d4NM+8N46tOxAUMKTV6PpZjmYlkb/DB5UG75cj8PUvD4kK6ssxByIyMgNcSyA==\",\r\n \"key2\": \"Owc4SIPgSEluG7ruzgzHf8AVmuvqCV1EQjeuW97+IwsKTwKWYfNgE5fuqnwRWvXOhyg4WTgekW2ot0POlUT8Vg==\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "198" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ac42dac0-734f-46a5-b53d-6cb250d7842a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1190" + ], + "x-ms-correlation-request-id": [ + "ac42dac0-734f-46a5-b53d-6cb250d7842a" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T132751Z:ac42dac0-734f-46a5-b53d-6cb250d7842a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Tue, 16 Feb 2016 13:27:50 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Storage/storageAccounts/stocrptestps3457/listKeys?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM0NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHMzNDU3L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dd5fe59a-6412-41c8-93e1-366f6fc1d8a6" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"key1\": \"drNk94kdlVm8VdcXAYBrEWgh1d4NM+8N46tOxAUMKTV6PpZjmYlkb/DB5UG75cj8PUvD4kK6ssxByIyMgNcSyA==\",\r\n \"key2\": \"Owc4SIPgSEluG7ruzgzHf8AVmuvqCV1EQjeuW97+IwsKTwKWYfNgE5fuqnwRWvXOhyg4WTgekW2ot0POlUT8Vg==\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "198" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "50f10ab3-6745-45e9-88be-a1ceeea4da64" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1189" + ], + "x-ms-correlation-request-id": [ + "50f10ab3-6745-45e9-88be-a1ceeea4da64" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T132824Z:50f10ab3-6745-45e9-88be-a1ceeea4da64" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Tue, 16 Feb 2016 13:28:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM0NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczM0NTc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3457.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 \"name\": \"testDataDisk1\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3457.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"Empty\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3457.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"Empty\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123crptestps3457\",\r\n \"linuxConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/networkInterfaces/nic0crptestps3457\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1752" + ], + "x-ms-client-request-id": [ + "4b5d8442-5f46-4dbf-ab03-9d9f9350e73b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"f0450819-1af8-4bd4-a847-3c3fa9d49689\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3457.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3457.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3457.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/networkInterfaces/nic0crptestps3457\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457\",\r\n \"name\": \"vmcrptestps3457\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2035" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/929dff68-2815-4f1c-b4cb-6bdc5db945e0?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "929dff68-2815-4f1c-b4cb-6bdc5db945e0" + ], + "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": [ + "07dbf534-cc32-479a-a2a4-3acf8a384574" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T131937Z:07dbf534-cc32-479a-a2a4-3acf8a384574" + ], + "Date": [ + "Tue, 16 Feb 2016 13:19:36 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/929dff68-2815-4f1c-b4cb-6bdc5db945e0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOTI5ZGZmNjgtMjgxNS00ZjFjLWI0Y2ItNmJkYzVkYjk0NWUwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"929dff68-2815-4f1c-b4cb-6bdc5db945e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T14:19:36.6206493+01: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-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "ef2f4be8-d027-49e4-8820-c27875f72935" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14895" + ], + "x-ms-correlation-request-id": [ + "db08d485-d18b-493e-abb5-e3e9134f6e95" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T132007Z:db08d485-d18b-493e-abb5-e3e9134f6e95" + ], + "Date": [ + "Tue, 16 Feb 2016 13:20:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/929dff68-2815-4f1c-b4cb-6bdc5db945e0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOTI5ZGZmNjgtMjgxNS00ZjFjLWI0Y2ItNmJkYzVkYjk0NWUwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"929dff68-2815-4f1c-b4cb-6bdc5db945e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T14:19:36.6206493+01: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-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "f2b969c5-b181-48be-9e88-fdebec1aedee" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14893" + ], + "x-ms-correlation-request-id": [ + "e8a9a86b-f231-446c-991c-f3015f5e98c9" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T132037Z:e8a9a86b-f231-446c-991c-f3015f5e98c9" + ], + "Date": [ + "Tue, 16 Feb 2016 13:20:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/929dff68-2815-4f1c-b4cb-6bdc5db945e0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOTI5ZGZmNjgtMjgxNS00ZjFjLWI0Y2ItNmJkYzVkYjk0NWUwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"929dff68-2815-4f1c-b4cb-6bdc5db945e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T14:19:36.6206493+01: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-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "0412e0d5-f056-4911-a417-b7a8956799b9" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14889" + ], + "x-ms-correlation-request-id": [ + "92e6ad81-486d-4153-b44d-abcf97b155fd" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T132107Z:92e6ad81-486d-4153-b44d-abcf97b155fd" + ], + "Date": [ + "Tue, 16 Feb 2016 13:21:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/929dff68-2815-4f1c-b4cb-6bdc5db945e0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOTI5ZGZmNjgtMjgxNS00ZjFjLWI0Y2ItNmJkYzVkYjk0NWUwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"929dff68-2815-4f1c-b4cb-6bdc5db945e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T14:19:36.6206493+01: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-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "5e0d2cfa-9191-473f-88ce-afcf4fe8d8aa" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14887" + ], + "x-ms-correlation-request-id": [ + "20806bf5-5219-475d-b577-95719bcda8b9" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T132138Z:20806bf5-5219-475d-b577-95719bcda8b9" + ], + "Date": [ + "Tue, 16 Feb 2016 13:21:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/929dff68-2815-4f1c-b4cb-6bdc5db945e0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOTI5ZGZmNjgtMjgxNS00ZjFjLWI0Y2ItNmJkYzVkYjk0NWUwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"929dff68-2815-4f1c-b4cb-6bdc5db945e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T14:19:36.6206493+01: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-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "c8b06b7a-bf16-435a-98f4-78f1635d79d5" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14885" + ], + "x-ms-correlation-request-id": [ + "deba7e2d-33da-46f0-9601-1829ddf9a2cb" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T132208Z:deba7e2d-33da-46f0-9601-1829ddf9a2cb" + ], + "Date": [ + "Tue, 16 Feb 2016 13:22:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/929dff68-2815-4f1c-b4cb-6bdc5db945e0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOTI5ZGZmNjgtMjgxNS00ZjFjLWI0Y2ItNmJkYzVkYjk0NWUwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"929dff68-2815-4f1c-b4cb-6bdc5db945e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T14:19:36.6206493+01: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-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "ea1cee68-da32-4e57-97e7-85facd451c3f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14879" + ], + "x-ms-correlation-request-id": [ + "e78c0cbc-4bd6-4a8a-a424-4e339e00670e" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T132238Z:e78c0cbc-4bd6-4a8a-a424-4e339e00670e" + ], + "Date": [ + "Tue, 16 Feb 2016 13:22:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/929dff68-2815-4f1c-b4cb-6bdc5db945e0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOTI5ZGZmNjgtMjgxNS00ZjFjLWI0Y2ItNmJkYzVkYjk0NWUwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"929dff68-2815-4f1c-b4cb-6bdc5db945e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T14:19:36.6206493+01: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-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "3cae2716-532b-450c-8a79-6bc1931835ea" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14877" + ], + "x-ms-correlation-request-id": [ + "8f20c2e0-adf2-4691-93b4-42675b06b2ee" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T132308Z:8f20c2e0-adf2-4691-93b4-42675b06b2ee" + ], + "Date": [ + "Tue, 16 Feb 2016 13:23:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/929dff68-2815-4f1c-b4cb-6bdc5db945e0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOTI5ZGZmNjgtMjgxNS00ZjFjLWI0Y2ItNmJkYzVkYjk0NWUwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"929dff68-2815-4f1c-b4cb-6bdc5db945e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T14:19:36.6206493+01: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-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "1db3adf1-3fda-47f1-9543-47dbdb46a521" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14875" + ], + "x-ms-correlation-request-id": [ + "3f532ed7-6b87-4316-b03e-c7613fcf4a4f" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T132338Z:3f532ed7-6b87-4316-b03e-c7613fcf4a4f" + ], + "Date": [ + "Tue, 16 Feb 2016 13:23:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/929dff68-2815-4f1c-b4cb-6bdc5db945e0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOTI5ZGZmNjgtMjgxNS00ZjFjLWI0Y2ItNmJkYzVkYjk0NWUwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"929dff68-2815-4f1c-b4cb-6bdc5db945e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T14:19:36.6206493+01: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-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "5a4e0e07-2c49-4a16-a51a-9e6e00fe02fa" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14873" + ], + "x-ms-correlation-request-id": [ + "9cbf66d4-6e20-40b6-ab2d-75119f924006" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T132409Z:9cbf66d4-6e20-40b6-ab2d-75119f924006" + ], + "Date": [ + "Tue, 16 Feb 2016 13:24:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/929dff68-2815-4f1c-b4cb-6bdc5db945e0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOTI5ZGZmNjgtMjgxNS00ZjFjLWI0Y2ItNmJkYzVkYjk0NWUwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"929dff68-2815-4f1c-b4cb-6bdc5db945e0\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-02-16T14:19:36.6206493+01:00\",\r\n \"endTime\": \"2016-02-16T14:24:21.0112539+01: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-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "5df8bd8a-6656-4964-8fdf-1e89634860ec" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14872" + ], + "x-ms-correlation-request-id": [ + "d8cb416c-bfc8-400a-9fd8-35336cffd436" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T132439Z:d8cb416c-bfc8-400a-9fd8-35336cffd436" + ], + "Date": [ + "Tue, 16 Feb 2016 13:24:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM0NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczM0NTc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"f0450819-1af8-4bd4-a847-3c3fa9d49689\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3457.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3457.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3457.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/networkInterfaces/nic0crptestps3457\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457\",\r\n \"name\": \"vmcrptestps3457\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2036" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "d8633246-0c74-4fce-9d85-a47a5e37fa91" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14871" + ], + "x-ms-correlation-request-id": [ + "98429f9b-5250-40d3-882c-e34426c80dd9" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T132439Z:98429f9b-5250-40d3-882c-e34426c80dd9" + ], + "Date": [ + "Tue, 16 Feb 2016 13:24:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM0NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczM0NTc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a40ecbfd-0fc9-42b9-89b1-13467a776836" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"f0450819-1af8-4bd4-a847-3c3fa9d49689\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3457.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3457.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3457.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/networkInterfaces/nic0crptestps3457\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457\",\r\n \"name\": \"vmcrptestps3457\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2036" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "580846c8-5924-46e7-99de-aac88328ae2f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14870" + ], + "x-ms-correlation-request-id": [ + "7788d5fd-a244-4eba-a6ed-828f35410449" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T132439Z:7788d5fd-a244-4eba-a6ed-828f35410449" + ], + "Date": [ + "Tue, 16 Feb 2016 13:24:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM0NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczM0NTc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "af3d6b34-63fe-4b37-9f7f-4f92b0431100" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"f0450819-1af8-4bd4-a847-3c3fa9d49689\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3457.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3457.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3457.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/networkInterfaces/nic0crptestps3457\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457\",\r\n \"name\": \"vmcrptestps3457\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2036" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "a20e1536-71f7-4add-8b6c-d740340cf53b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14869" + ], + "x-ms-correlation-request-id": [ + "dbc45459-8f6b-453e-81a1-ed543946dffc" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T132439Z:dbc45459-8f6b-453e-81a1-ed543946dffc" + ], + "Date": [ + "Tue, 16 Feb 2016 13:24:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM0NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczM0NTc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9e1f8afb-b346-4e63-a762-9c251918eabb" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"f0450819-1af8-4bd4-a847-3c3fa9d49689\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3457.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3457.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3457.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/networkInterfaces/nic0crptestps3457\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457\",\r\n \"name\": \"vmcrptestps3457\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2036" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "7cd9a905-0ee7-4831-bba5-f83321e24711" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14868" + ], + "x-ms-correlation-request-id": [ + "fcbd5786-827f-43f7-afb4-87f20181b6fe" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T132439Z:fcbd5786-827f-43f7-afb4-87f20181b6fe" + ], + "Date": [ + "Tue, 16 Feb 2016 13:24:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM0NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczM0NTc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c5902ad4-7772-4c7e-8564-d8e76c77d29c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"f0450819-1af8-4bd4-a847-3c3fa9d49689\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3457.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3457.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3457.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/networkInterfaces/nic0crptestps3457\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457\",\r\n \"name\": \"vmcrptestps3457\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2036" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "6133db2e-91ce-4afe-8b35-603a98a95eca" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14866" + ], + "x-ms-correlation-request-id": [ + "dcfa5b6f-06bd-491f-92d3-7fedb97abeaf" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T132442Z:dcfa5b6f-06bd-491f-92d3-7fedb97abeaf" + ], + "Date": [ + "Tue, 16 Feb 2016 13:24:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM0NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczM0NTc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ee1788db-90ad-47a1-ad4d-4b3296b8bd18" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"f0450819-1af8-4bd4-a847-3c3fa9d49689\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3457.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3457.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3457.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/networkInterfaces/nic0crptestps3457\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRQcm9jZXNzb3JUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRJZGxlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50UHJpdmlsZWdlZFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudEludGVycnVwdFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudERQQ1RpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudFVzZXJUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnROaWNlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50SU9XYWl0VGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZE1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxVc2VkTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRBdmFpbGFibGVNZW1vcnkiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRVc2VkQnlDYWNoZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcVXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1BlclNlYyIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1JlYWRQZXJTZWMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcUGFnZXNXcml0dGVuUGVyU2VjIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VUcmFuc2ZlclRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQXZlcmFnZVJlYWRUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VXcml0ZVRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcVHJhbnNmZXJzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFJlYWRzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFdyaXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xCeXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xXcml0ZUJ5dGVzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VEaXNrUXVldWVMZW5ndGgiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVG90YWwiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVHJhbnNtaXR0ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzUmVjZWl2ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXFBhY2tldHNUcmFuc21pdHRlZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcUGFja2V0c1JlY2VpdmVkIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFJ4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFR4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbENvbGxpc2lvbnMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457/extensions/LinuxDiagnostic\",\r\n \"name\": \"LinuxDiagnostic\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457\",\r\n \"name\": \"vmcrptestps3457\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "7801" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "70271a30-1077-4216-925c-0ba8711d418f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14867" + ], + "x-ms-correlation-request-id": [ + "649bf65a-32e8-47b8-be3e-10120d8c0200" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T132617Z:649bf65a-32e8-47b8-be3e-10120d8c0200" + ], + "Date": [ + "Tue, 16 Feb 2016 13:26:16 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM0NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczM0NTc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "29746c05-3ba3-4901-bb15-4814356f9e7f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"f0450819-1af8-4bd4-a847-3c3fa9d49689\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3457.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3457.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3457.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/networkInterfaces/nic0crptestps3457\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_A2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"osdisk.connminute\",\r\n \"value\": \"stocrptestps3457.minute\"\r\n },\r\n {\r\n \"key\": \"osdisk.connhour\",\r\n \"value\": \"stocrptestps3457.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.1\",\r\n \"value\": \"stocrptestps3457.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.1\",\r\n \"value\": \"stocrptestps3457.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.2\",\r\n \"value\": \"stocrptestps3457.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.2\",\r\n \"value\": \"stocrptestps3457.hour\"\r\n },\r\n {\r\n \"key\": \"stocrptestps3457.hour.uri\",\r\n \"value\": \"https://stocrptestps3457.table.core.windows.net/$MetricsHourPrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps3457.minute.uri\",\r\n \"value\": \"https://stocrptestps3457.table.core.windows.net/$MetricsMinutePrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps3457.hour.name\",\r\n \"value\": \"stocrptestps3457\"\r\n },\r\n {\r\n \"key\": \"stocrptestps3457.minute.name\",\r\n \"value\": \"stocrptestps3457\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps3457\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps3457.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457/extensions/AzureEnhancedMonitorForLinux\",\r\n \"name\": \"AzureEnhancedMonitorForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRQcm9jZXNzb3JUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRJZGxlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50UHJpdmlsZWdlZFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudEludGVycnVwdFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudERQQ1RpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudFVzZXJUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnROaWNlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50SU9XYWl0VGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZE1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxVc2VkTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRBdmFpbGFibGVNZW1vcnkiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRVc2VkQnlDYWNoZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcVXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1BlclNlYyIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1JlYWRQZXJTZWMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcUGFnZXNXcml0dGVuUGVyU2VjIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VUcmFuc2ZlclRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQXZlcmFnZVJlYWRUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VXcml0ZVRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcVHJhbnNmZXJzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFJlYWRzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFdyaXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xCeXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xXcml0ZUJ5dGVzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VEaXNrUXVldWVMZW5ndGgiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVG90YWwiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVHJhbnNtaXR0ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzUmVjZWl2ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXFBhY2tldHNUcmFuc21pdHRlZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcUGFja2V0c1JlY2VpdmVkIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFJ4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFR4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbENvbGxpc2lvbnMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457/extensions/LinuxDiagnostic\",\r\n \"name\": \"LinuxDiagnostic\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457\",\r\n \"name\": \"vmcrptestps3457\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "10081" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "f8ff1758-9f82-4eb8-8d08-ca35e0cca77c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14860" + ], + "x-ms-correlation-request-id": [ + "0a3883af-4f74-45b0-8825-76897aae38a0" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T132749Z:0a3883af-4f74-45b0-8825-76897aae38a0" + ], + "Date": [ + "Tue, 16 Feb 2016 13:27:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM0NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczM0NTc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e8aae81e-7a41-407b-9115-0245a3fbfcd8" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"f0450819-1af8-4bd4-a847-3c3fa9d49689\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3457.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3457.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3457.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/networkInterfaces/nic0crptestps3457\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_A2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"osdisk.connminute\",\r\n \"value\": \"stocrptestps3457.minute\"\r\n },\r\n {\r\n \"key\": \"osdisk.connhour\",\r\n \"value\": \"stocrptestps3457.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.1\",\r\n \"value\": \"stocrptestps3457.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.1\",\r\n \"value\": \"stocrptestps3457.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.2\",\r\n \"value\": \"stocrptestps3457.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.2\",\r\n \"value\": \"stocrptestps3457.hour\"\r\n },\r\n {\r\n \"key\": \"stocrptestps3457.hour.uri\",\r\n \"value\": \"https://stocrptestps3457.table.core.windows.net/$MetricsHourPrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps3457.minute.uri\",\r\n \"value\": \"https://stocrptestps3457.table.core.windows.net/$MetricsMinutePrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps3457.hour.name\",\r\n \"value\": \"stocrptestps3457\"\r\n },\r\n {\r\n \"key\": \"stocrptestps3457.minute.name\",\r\n \"value\": \"stocrptestps3457\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps3457\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps3457.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457/extensions/AzureEnhancedMonitorForLinux\",\r\n \"name\": \"AzureEnhancedMonitorForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRQcm9jZXNzb3JUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRJZGxlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50UHJpdmlsZWdlZFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudEludGVycnVwdFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudERQQ1RpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudFVzZXJUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnROaWNlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50SU9XYWl0VGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZE1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxVc2VkTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRBdmFpbGFibGVNZW1vcnkiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRVc2VkQnlDYWNoZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcVXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1BlclNlYyIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1JlYWRQZXJTZWMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcUGFnZXNXcml0dGVuUGVyU2VjIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VUcmFuc2ZlclRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQXZlcmFnZVJlYWRUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VXcml0ZVRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcVHJhbnNmZXJzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFJlYWRzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFdyaXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xCeXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xXcml0ZUJ5dGVzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VEaXNrUXVldWVMZW5ndGgiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVG90YWwiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVHJhbnNtaXR0ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzUmVjZWl2ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXFBhY2tldHNUcmFuc21pdHRlZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcUGFja2V0c1JlY2VpdmVkIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFJ4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFR4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbENvbGxpc2lvbnMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457/extensions/LinuxDiagnostic\",\r\n \"name\": \"LinuxDiagnostic\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457\",\r\n \"name\": \"vmcrptestps3457\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "10081" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "dfcda2a4-ad4a-4e0a-8e98-7fe425f07369" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14856" + ], + "x-ms-correlation-request-id": [ + "c7acadc1-3bd7-4370-9fc7-f22a85a44a37" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T132823Z:c7acadc1-3bd7-4370-9fc7-f22a85a44a37" + ], + "Date": [ + "Tue, 16 Feb 2016 13:28:22 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM0NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczM0NTc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4cbee42d-b4a2-4885-9d78-5189c038c031" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"f0450819-1af8-4bd4-a847-3c3fa9d49689\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3457.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3457.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3457.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/networkInterfaces/nic0crptestps3457\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_A2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"osdisk.connminute\",\r\n \"value\": \"stocrptestps3457.minute\"\r\n },\r\n {\r\n \"key\": \"osdisk.connhour\",\r\n \"value\": \"stocrptestps3457.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.1\",\r\n \"value\": \"stocrptestps3457.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.1\",\r\n \"value\": \"stocrptestps3457.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.2\",\r\n \"value\": \"stocrptestps3457.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.2\",\r\n \"value\": \"stocrptestps3457.hour\"\r\n },\r\n {\r\n \"key\": \"stocrptestps3457.hour.uri\",\r\n \"value\": \"https://stocrptestps3457.table.core.windows.net/$MetricsHourPrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps3457.minute.uri\",\r\n \"value\": \"https://stocrptestps3457.table.core.windows.net/$MetricsMinutePrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps3457.hour.name\",\r\n \"value\": \"stocrptestps3457\"\r\n },\r\n {\r\n \"key\": \"stocrptestps3457.minute.name\",\r\n \"value\": \"stocrptestps3457\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps3457\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps3457.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457/extensions/AzureEnhancedMonitorForLinux\",\r\n \"name\": \"AzureEnhancedMonitorForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRQcm9jZXNzb3JUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRJZGxlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50UHJpdmlsZWdlZFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudEludGVycnVwdFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudERQQ1RpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudFVzZXJUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnROaWNlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50SU9XYWl0VGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZE1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxVc2VkTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRBdmFpbGFibGVNZW1vcnkiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRVc2VkQnlDYWNoZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcVXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1BlclNlYyIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1JlYWRQZXJTZWMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcUGFnZXNXcml0dGVuUGVyU2VjIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VUcmFuc2ZlclRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQXZlcmFnZVJlYWRUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VXcml0ZVRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcVHJhbnNmZXJzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFJlYWRzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFdyaXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xCeXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xXcml0ZUJ5dGVzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VEaXNrUXVldWVMZW5ndGgiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVG90YWwiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVHJhbnNtaXR0ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzUmVjZWl2ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXFBhY2tldHNUcmFuc21pdHRlZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcUGFja2V0c1JlY2VpdmVkIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFJ4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFR4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbENvbGxpc2lvbnMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457/extensions/LinuxDiagnostic\",\r\n \"name\": \"LinuxDiagnostic\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457\",\r\n \"name\": \"vmcrptestps3457\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "10081" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "26f12fc4-8eb9-4d56-a212-3022986c4ae0" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14736" + ], + "x-ms-correlation-request-id": [ + "7391d62a-857c-4603-9b20-8af23626860a" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T140123Z:7391d62a-857c-4603-9b20-8af23626860a" + ], + "Date": [ + "Tue, 16 Feb 2016 14:01:22 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM0NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczM0NTc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1b3c02ff-fdde-49be-bbba-fc93fecf4090" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"f0450819-1af8-4bd4-a847-3c3fa9d49689\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3457.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3457.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3457.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/networkInterfaces/nic0crptestps3457\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRQcm9jZXNzb3JUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRJZGxlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50UHJpdmlsZWdlZFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudEludGVycnVwdFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudERQQ1RpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudFVzZXJUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnROaWNlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50SU9XYWl0VGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZE1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxVc2VkTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRBdmFpbGFibGVNZW1vcnkiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRVc2VkQnlDYWNoZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcVXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1BlclNlYyIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1JlYWRQZXJTZWMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcUGFnZXNXcml0dGVuUGVyU2VjIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VUcmFuc2ZlclRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQXZlcmFnZVJlYWRUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VXcml0ZVRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcVHJhbnNmZXJzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFJlYWRzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFdyaXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xCeXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xXcml0ZUJ5dGVzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VEaXNrUXVldWVMZW5ndGgiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVG90YWwiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVHJhbnNtaXR0ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzUmVjZWl2ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXFBhY2tldHNUcmFuc21pdHRlZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcUGFja2V0c1JlY2VpdmVkIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFJ4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFR4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbENvbGxpc2lvbnMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457/extensions/LinuxDiagnostic\",\r\n \"name\": \"LinuxDiagnostic\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457\",\r\n \"name\": \"vmcrptestps3457\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "7801" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "3b72f1cf-34a7-4099-a949-2d6c0ee79051" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14729" + ], + "x-ms-correlation-request-id": [ + "951bc40a-00e6-4ff0-a9ea-0a4c9a80982e" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T140256Z:951bc40a-00e6-4ff0-a9ea-0a4c9a80982e" + ], + "Date": [ + "Tue, 16 Feb 2016 14:02:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457?$expand=instanceView&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM0NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczM0NTc/JGV4cGFuZD1pbnN0YW5jZVZpZXcmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "377b132b-4ea3-4538-b39f-08f027da391c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"f0450819-1af8-4bd4-a847-3c3fa9d49689\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3457.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3457.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3457.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/networkInterfaces/nic0crptestps3457\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"WALinuxAgent-2.0.14\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"GuestAgent is running and accepting new configurations.\",\r\n \"time\": \"2016-02-16T14:24:16+01:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"osDisk\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T14:19:37.6831475+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T14:19:37.5582212+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T14:19:37.6206482+01:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T14:24:20.9331261+01:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n }\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457\",\r\n \"name\": \"vmcrptestps3457\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3876" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "0cb8a301-5dcd-452e-aa0b-f5a130f785ef" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14867" + ], + "x-ms-correlation-request-id": [ + "233e8e1a-c301-4160-96a1-6030dc47a708" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T132440Z:233e8e1a-c301-4160-96a1-6030dc47a708" + ], + "Date": [ + "Tue, 16 Feb 2016 13:24:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457?$expand=instanceView&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM0NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczM0NTc/JGV4cGFuZD1pbnN0YW5jZVZpZXcmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ebfbe6df-d798-46c0-b9fb-b54c573bc808" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"f0450819-1af8-4bd4-a847-3c3fa9d49689\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3457.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3457.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3457.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/networkInterfaces/nic0crptestps3457\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"WALinuxAgent-2.0.14\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"GuestAgent is running and accepting new configurations.\",\r\n \"time\": \"2016-02-16T14:24:16+01:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"osDisk\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T14:19:37.6831475+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T14:19:37.5582212+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T14:19:37.6206482+01:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T14:24:20.9331261+01:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n }\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457\",\r\n \"name\": \"vmcrptestps3457\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3876" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "6cf01c73-dfdc-4c9d-aabb-add3186a61b1" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14865" + ], + "x-ms-correlation-request-id": [ + "b3317868-3cc3-40a5-847a-770b0c6083b3" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T132442Z:b3317868-3cc3-40a5-847a-770b0c6083b3" + ], + "Date": [ + "Tue, 16 Feb 2016 13:24:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457?$expand=instanceView&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM0NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczM0NTc/JGV4cGFuZD1pbnN0YW5jZVZpZXcmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7dbaccdd-479e-4da5-8e73-efdaa61ca7e4" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"f0450819-1af8-4bd4-a847-3c3fa9d49689\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3457.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3457.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3457.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/networkInterfaces/nic0crptestps3457\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"WALinuxAgent-2.0.14\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"GuestAgent is running and accepting new configurations.\",\r\n \"time\": \"2016-02-16T14:27:57+01:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": [\r\n {\r\n \"type\": \"Microsoft.OSTCExtensions.AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0.0.5\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.OSTCExtensions.LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.2.0\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\"\r\n }\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"osDisk\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T14:26:18.4644175+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T14:26:18.4644175+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T14:26:18.4644175+01:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"extensions\": [\r\n {\r\n \"name\": \"AzureEnhancedMonitorForLinux\",\r\n \"type\": \"Microsoft.OSTCExtensions.AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0.0.5\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"deploymentId=06fa642d-13c3-45b5-bd46-0f6a4b8ba306 roleInstance=_vmcrptestps3457 OK\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"LinuxDiagnostic\",\r\n \"type\": \"Microsoft.OSTCExtensions.LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.2.0\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"Enable succeeded\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T14:27:53.1831478+01:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_A2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"osdisk.connminute\",\r\n \"value\": \"stocrptestps3457.minute\"\r\n },\r\n {\r\n \"key\": \"osdisk.connhour\",\r\n \"value\": \"stocrptestps3457.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.1\",\r\n \"value\": \"stocrptestps3457.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.1\",\r\n \"value\": \"stocrptestps3457.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.2\",\r\n \"value\": \"stocrptestps3457.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.2\",\r\n \"value\": \"stocrptestps3457.hour\"\r\n },\r\n {\r\n \"key\": \"stocrptestps3457.hour.uri\",\r\n \"value\": \"https://stocrptestps3457.table.core.windows.net/$MetricsHourPrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps3457.minute.uri\",\r\n \"value\": \"https://stocrptestps3457.table.core.windows.net/$MetricsMinutePrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps3457.hour.name\",\r\n \"value\": \"stocrptestps3457\"\r\n },\r\n {\r\n \"key\": \"stocrptestps3457.minute.name\",\r\n \"value\": \"stocrptestps3457\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps3457\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps3457.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457/extensions/AzureEnhancedMonitorForLinux\",\r\n \"name\": \"AzureEnhancedMonitorForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRQcm9jZXNzb3JUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRJZGxlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50UHJpdmlsZWdlZFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudEludGVycnVwdFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudERQQ1RpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudFVzZXJUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnROaWNlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50SU9XYWl0VGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZE1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxVc2VkTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRBdmFpbGFibGVNZW1vcnkiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRVc2VkQnlDYWNoZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcVXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1BlclNlYyIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1JlYWRQZXJTZWMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcUGFnZXNXcml0dGVuUGVyU2VjIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VUcmFuc2ZlclRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQXZlcmFnZVJlYWRUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VXcml0ZVRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcVHJhbnNmZXJzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFJlYWRzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFdyaXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xCeXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xXcml0ZUJ5dGVzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VEaXNrUXVldWVMZW5ndGgiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVG90YWwiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVHJhbnNtaXR0ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzUmVjZWl2ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXFBhY2tldHNUcmFuc21pdHRlZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcUGFja2V0c1JlY2VpdmVkIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFJ4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFR4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbENvbGxpc2lvbnMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457/extensions/LinuxDiagnostic\",\r\n \"name\": \"LinuxDiagnostic\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457\",\r\n \"name\": \"vmcrptestps3457\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "13521" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "646254c0-4d20-4cdb-beb7-03fa195da23b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14855" + ], + "x-ms-correlation-request-id": [ + "df113750-2db5-4ddc-a5c1-9b072defb3f0" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T132823Z:df113750-2db5-4ddc-a5c1-9b072defb3f0" + ], + "Date": [ + "Tue, 16 Feb 2016 13:28:22 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2c326d82-68f5-4a56-859d-4e86d6aae2da" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/ase/providers/Microsoft.Storage/storageAccounts/ase7745\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"ase7745\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-08-22T12:09:54.6487474Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ase7745.blob.core.windows.net/\",\r\n \"file\": \"https://ase7745.file.core.windows.net/\",\r\n \"queue\": \"https://ase7745.queue.core.windows.net/\",\r\n \"table\": \"https://ase7745.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/benolwtlz6gcrtv2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"benolwtlz6gcrtv2\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-02T15:37:42.4160913Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://benolwtlz6gcrtv2.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/sapresourcegroup/providers/Microsoft.Storage/storageAccounts/de8da241d96f400ba8791029\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"de8da241d96f400ba8791029\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-09-18T13:22:47.5628749Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://de8da241d96f400ba8791029.blob.core.windows.net/\",\r\n \"file\": \"https://de8da241d96f400ba8791029.file.core.windows.net/\",\r\n \"queue\": \"https://de8da241d96f400ba8791029.queue.core.windows.net/\",\r\n \"table\": \"https://de8da241d96f400ba8791029.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/group-4/providers/Microsoft.Storage/storageAccounts/dsdevstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"dsdevstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-22T21:10:41.790448Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://dsdevstorage.blob.core.windows.net/\",\r\n \"file\": \"https://dsdevstorage.file.core.windows.net/\",\r\n \"queue\": \"https://dsdevstorage.queue.core.windows.net/\",\r\n \"table\": \"https://dsdevstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduscherp/providers/Microsoft.Storage/storageAccounts/erpio6r4un3ewfnm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"erpio6r4un3ewfnm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-08T12:41:16.6105852Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://erpio6r4un3ewfnm.blob.core.windows.net/\",\r\n \"file\": \"https://erpio6r4un3ewfnm.file.core.windows.net/\",\r\n \"queue\": \"https://erpio6r4un3ewfnm.queue.core.windows.net/\",\r\n \"table\": \"https://erpio6r4un3ewfnm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/glsresgroup1/providers/Microsoft.Storage/storageAccounts/glsstoraccount1\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"glsstoraccount1\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T12:37:47.5420067Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://glsstoraccount1.blob.core.windows.net/\",\r\n \"file\": \"https://glsstoraccount1.file.core.windows.net/\",\r\n \"queue\": \"https://glsstoraccount1.queue.core.windows.net/\",\r\n \"table\": \"https://glsstoraccount1.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmpremstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmpremstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:21.7378841Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmpremstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmpremstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmpremstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmpremstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmstdstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmstdstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:22.2160008Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmstdstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmstdstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmstdstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmstdstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-test2/providers/Microsoft.Storage/storageAccounts/gortestacc2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gortestacc2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-08T21:18:17.9028388Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gortestacc2.blob.core.windows.net/\",\r\n \"file\": \"https://gortestacc2.file.core.windows.net/\",\r\n \"queue\": \"https://gortestacc2.queue.core.windows.net/\",\r\n \"table\": \"https://gortestacc2.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-04-16T13:50:52.0015725Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspacepremium\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspacepremium\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-10-23T10:22:10.7216809Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspacepremium.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvmtest/providers/Microsoft.Storage/storageAccounts/lvmtestspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmtestspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T16:56:41.5005505Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmtestspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmtestspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmtestspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmtestspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-eml2/providers/Microsoft.Storage/storageAccounts/rgeml2stacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"rgeml2stacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T08:00:29.8670815Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://rgeml2stacc.blob.core.windows.net/\",\r\n \"file\": \"https://rgeml2stacc.file.core.windows.net/\",\r\n \"queue\": \"https://rgeml2stacc.queue.core.windows.net/\",\r\n \"table\": \"https://rgeml2stacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/sapcalrg/providers/Microsoft.Storage/storageAccounts/sapcalrg8522\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"sapcalrg8522\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-28T06:54:16.0456896Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sapcalrg8522.blob.core.windows.net/\",\r\n \"file\": \"https://sapcalrg8522.file.core.windows.net/\",\r\n \"queue\": \"https://sapcalrg8522.queue.core.windows.net/\",\r\n \"table\": \"https://sapcalrg8522.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/saperpdemo859644\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"saperpdemo859644\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-01-26T11:02:43.8634331Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saperpdemo859644.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1prstacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1prstacc\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-12-10T17:35:29.0415914Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1prstacc.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1ststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1ststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-10T17:36:26.4810072Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1ststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saphana1ststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saphana1ststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saphana1ststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-linux-docu-tests/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saplinuxdocuststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-24T09:25:04.4473982Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-linux-docu-tests-we/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststaccwe\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saplinuxdocuststaccwe\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-25T13:11:50.5477032Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststaccwe.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststaccwe.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststaccwe.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststaccwe.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/sappseduscsape012612030\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"sappseduscsape012612030\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2016-01-26T11:03:56.0307387Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sappseduscsape012612030.blob.core.windows.net/\",\r\n \"file\": \"https://sappseduscsape012612030.file.core.windows.net/\",\r\n \"queue\": \"https://sappseduscsape012612030.queue.core.windows.net/\",\r\n \"table\": \"https://sappseduscsape012612030.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"westeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/saptesiarm/providers/Microsoft.Storage/storageAccounts/saptesiarm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saptesiarm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-08-27T12:13:00.4049179Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptesiarm.blob.core.windows.net/\",\r\n \"file\": \"https://saptesiarm.file.core.windows.net/\",\r\n \"queue\": \"https://saptesiarm.queue.core.windows.net/\",\r\n \"table\": \"https://saptesiarm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/saptestrajrg/providers/Microsoft.Storage/storageAccounts/saptestrajrg4518\",\r\n \"location\": \"westus\",\r\n \"name\": \"saptestrajrg4518\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-07-22T19:24:21.1065762Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptestrajrg4518.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps311/providers/Microsoft.Storage/storageAccounts/stocrptestps311\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps311\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T10:47:27.4960365Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps311.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps311.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps311.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps311.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Storage/storageAccounts/stocrptestps3457\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps3457\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T13:19:07.5618762Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps3457.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps3457.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps3457.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps3457.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/temptestsap\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"temptestsap\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-10T14:03:58.3799849Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://temptestsap.blob.core.windows.net/\",\r\n \"file\": \"https://temptestsap.file.core.windows.net/\",\r\n \"queue\": \"https://temptestsap.queue.core.windows.net/\",\r\n \"table\": \"https://temptestsap.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "16392" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "acc915a2-6da4-4b6b-9cc8-12cab721537e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14857" + ], + "x-ms-correlation-request-id": [ + "acc915a2-6da4-4b6b-9cc8-12cab721537e" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T132441Z:acc915a2-6da4-4b6b-9cc8-12cab721537e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Tue, 16 Feb 2016 13:24:41 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "74207215-15c4-45d5-ae5c-1141792a20e1" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/ase/providers/Microsoft.Storage/storageAccounts/ase7745\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"ase7745\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-08-22T12:09:54.6487474Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ase7745.blob.core.windows.net/\",\r\n \"file\": \"https://ase7745.file.core.windows.net/\",\r\n \"queue\": \"https://ase7745.queue.core.windows.net/\",\r\n \"table\": \"https://ase7745.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/benolwtlz6gcrtv2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"benolwtlz6gcrtv2\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-02T15:37:42.4160913Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://benolwtlz6gcrtv2.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/sapresourcegroup/providers/Microsoft.Storage/storageAccounts/de8da241d96f400ba8791029\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"de8da241d96f400ba8791029\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-09-18T13:22:47.5628749Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://de8da241d96f400ba8791029.blob.core.windows.net/\",\r\n \"file\": \"https://de8da241d96f400ba8791029.file.core.windows.net/\",\r\n \"queue\": \"https://de8da241d96f400ba8791029.queue.core.windows.net/\",\r\n \"table\": \"https://de8da241d96f400ba8791029.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/group-4/providers/Microsoft.Storage/storageAccounts/dsdevstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"dsdevstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-22T21:10:41.790448Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://dsdevstorage.blob.core.windows.net/\",\r\n \"file\": \"https://dsdevstorage.file.core.windows.net/\",\r\n \"queue\": \"https://dsdevstorage.queue.core.windows.net/\",\r\n \"table\": \"https://dsdevstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduscherp/providers/Microsoft.Storage/storageAccounts/erpio6r4un3ewfnm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"erpio6r4un3ewfnm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-08T12:41:16.6105852Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://erpio6r4un3ewfnm.blob.core.windows.net/\",\r\n \"file\": \"https://erpio6r4un3ewfnm.file.core.windows.net/\",\r\n \"queue\": \"https://erpio6r4un3ewfnm.queue.core.windows.net/\",\r\n \"table\": \"https://erpio6r4un3ewfnm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/glsresgroup1/providers/Microsoft.Storage/storageAccounts/glsstoraccount1\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"glsstoraccount1\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T12:37:47.5420067Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://glsstoraccount1.blob.core.windows.net/\",\r\n \"file\": \"https://glsstoraccount1.file.core.windows.net/\",\r\n \"queue\": \"https://glsstoraccount1.queue.core.windows.net/\",\r\n \"table\": \"https://glsstoraccount1.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmpremstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmpremstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:21.7378841Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmpremstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmpremstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmpremstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmpremstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmstdstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmstdstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:22.2160008Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmstdstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmstdstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmstdstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmstdstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-test2/providers/Microsoft.Storage/storageAccounts/gortestacc2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gortestacc2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-08T21:18:17.9028388Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gortestacc2.blob.core.windows.net/\",\r\n \"file\": \"https://gortestacc2.file.core.windows.net/\",\r\n \"queue\": \"https://gortestacc2.queue.core.windows.net/\",\r\n \"table\": \"https://gortestacc2.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-04-16T13:50:52.0015725Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspacepremium\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspacepremium\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-10-23T10:22:10.7216809Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspacepremium.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvmtest/providers/Microsoft.Storage/storageAccounts/lvmtestspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmtestspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T16:56:41.5005505Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmtestspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmtestspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmtestspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmtestspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-eml2/providers/Microsoft.Storage/storageAccounts/rgeml2stacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"rgeml2stacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T08:00:29.8670815Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://rgeml2stacc.blob.core.windows.net/\",\r\n \"file\": \"https://rgeml2stacc.file.core.windows.net/\",\r\n \"queue\": \"https://rgeml2stacc.queue.core.windows.net/\",\r\n \"table\": \"https://rgeml2stacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/sapcalrg/providers/Microsoft.Storage/storageAccounts/sapcalrg8522\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"sapcalrg8522\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-28T06:54:16.0456896Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sapcalrg8522.blob.core.windows.net/\",\r\n \"file\": \"https://sapcalrg8522.file.core.windows.net/\",\r\n \"queue\": \"https://sapcalrg8522.queue.core.windows.net/\",\r\n \"table\": \"https://sapcalrg8522.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/saperpdemo859644\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"saperpdemo859644\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-01-26T11:02:43.8634331Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saperpdemo859644.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1prstacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1prstacc\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-12-10T17:35:29.0415914Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1prstacc.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1ststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1ststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-10T17:36:26.4810072Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1ststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saphana1ststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saphana1ststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saphana1ststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-linux-docu-tests/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saplinuxdocuststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-24T09:25:04.4473982Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-linux-docu-tests-we/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststaccwe\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saplinuxdocuststaccwe\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-25T13:11:50.5477032Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststaccwe.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststaccwe.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststaccwe.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststaccwe.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/sappseduscsape012612030\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"sappseduscsape012612030\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2016-01-26T11:03:56.0307387Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sappseduscsape012612030.blob.core.windows.net/\",\r\n \"file\": \"https://sappseduscsape012612030.file.core.windows.net/\",\r\n \"queue\": \"https://sappseduscsape012612030.queue.core.windows.net/\",\r\n \"table\": \"https://sappseduscsape012612030.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"westeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/saptesiarm/providers/Microsoft.Storage/storageAccounts/saptesiarm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saptesiarm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-08-27T12:13:00.4049179Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptesiarm.blob.core.windows.net/\",\r\n \"file\": \"https://saptesiarm.file.core.windows.net/\",\r\n \"queue\": \"https://saptesiarm.queue.core.windows.net/\",\r\n \"table\": \"https://saptesiarm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/saptestrajrg/providers/Microsoft.Storage/storageAccounts/saptestrajrg4518\",\r\n \"location\": \"westus\",\r\n \"name\": \"saptestrajrg4518\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-07-22T19:24:21.1065762Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptestrajrg4518.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps311/providers/Microsoft.Storage/storageAccounts/stocrptestps311\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps311\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T10:47:27.4960365Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps311.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps311.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps311.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps311.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Storage/storageAccounts/stocrptestps3457\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps3457\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T13:19:07.5618762Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps3457.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps3457.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps3457.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps3457.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/temptestsap\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"temptestsap\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-10T14:03:58.3799849Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://temptestsap.blob.core.windows.net/\",\r\n \"file\": \"https://temptestsap.file.core.windows.net/\",\r\n \"queue\": \"https://temptestsap.queue.core.windows.net/\",\r\n \"table\": \"https://temptestsap.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "16392" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "cd450d59-6ab7-4759-8b3f-36a3850e7a0e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14855" + ], + "x-ms-correlation-request-id": [ + "cd450d59-6ab7-4759-8b3f-36a3850e7a0e" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T132443Z:cd450d59-6ab7-4759-8b3f-36a3850e7a0e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Tue, 16 Feb 2016 13:24:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c3c09ab9-8646-438a-9498-b05a74b1bdcf" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/ase/providers/Microsoft.Storage/storageAccounts/ase7745\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"ase7745\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-08-22T12:09:54.6487474Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ase7745.blob.core.windows.net/\",\r\n \"file\": \"https://ase7745.file.core.windows.net/\",\r\n \"queue\": \"https://ase7745.queue.core.windows.net/\",\r\n \"table\": \"https://ase7745.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/benolwtlz6gcrtv2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"benolwtlz6gcrtv2\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-02T15:37:42.4160913Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://benolwtlz6gcrtv2.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/sapresourcegroup/providers/Microsoft.Storage/storageAccounts/de8da241d96f400ba8791029\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"de8da241d96f400ba8791029\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-09-18T13:22:47.5628749Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://de8da241d96f400ba8791029.blob.core.windows.net/\",\r\n \"file\": \"https://de8da241d96f400ba8791029.file.core.windows.net/\",\r\n \"queue\": \"https://de8da241d96f400ba8791029.queue.core.windows.net/\",\r\n \"table\": \"https://de8da241d96f400ba8791029.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/group-4/providers/Microsoft.Storage/storageAccounts/dsdevstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"dsdevstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-22T21:10:41.790448Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://dsdevstorage.blob.core.windows.net/\",\r\n \"file\": \"https://dsdevstorage.file.core.windows.net/\",\r\n \"queue\": \"https://dsdevstorage.queue.core.windows.net/\",\r\n \"table\": \"https://dsdevstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduscherp/providers/Microsoft.Storage/storageAccounts/erpio6r4un3ewfnm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"erpio6r4un3ewfnm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-08T12:41:16.6105852Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://erpio6r4un3ewfnm.blob.core.windows.net/\",\r\n \"file\": \"https://erpio6r4un3ewfnm.file.core.windows.net/\",\r\n \"queue\": \"https://erpio6r4un3ewfnm.queue.core.windows.net/\",\r\n \"table\": \"https://erpio6r4un3ewfnm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/glsresgroup1/providers/Microsoft.Storage/storageAccounts/glsstoraccount1\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"glsstoraccount1\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T12:37:47.5420067Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://glsstoraccount1.blob.core.windows.net/\",\r\n \"file\": \"https://glsstoraccount1.file.core.windows.net/\",\r\n \"queue\": \"https://glsstoraccount1.queue.core.windows.net/\",\r\n \"table\": \"https://glsstoraccount1.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmpremstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmpremstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:21.7378841Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmpremstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmpremstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmpremstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmpremstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmstdstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmstdstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:22.2160008Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmstdstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmstdstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmstdstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmstdstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-test2/providers/Microsoft.Storage/storageAccounts/gortestacc2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gortestacc2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-08T21:18:17.9028388Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gortestacc2.blob.core.windows.net/\",\r\n \"file\": \"https://gortestacc2.file.core.windows.net/\",\r\n \"queue\": \"https://gortestacc2.queue.core.windows.net/\",\r\n \"table\": \"https://gortestacc2.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-04-16T13:50:52.0015725Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspacepremium\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspacepremium\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-10-23T10:22:10.7216809Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspacepremium.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvmtest/providers/Microsoft.Storage/storageAccounts/lvmtestspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmtestspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T16:56:41.5005505Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmtestspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmtestspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmtestspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmtestspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduschdply2/providers/Microsoft.Storage/storageAccounts/qasv2jzqfmuokqxs\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"qasv2jzqfmuokqxs\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T13:26:31.1299248Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://qasv2jzqfmuokqxs.blob.core.windows.net/\",\r\n \"file\": \"https://qasv2jzqfmuokqxs.file.core.windows.net/\",\r\n \"queue\": \"https://qasv2jzqfmuokqxs.queue.core.windows.net/\",\r\n \"table\": \"https://qasv2jzqfmuokqxs.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-eml2/providers/Microsoft.Storage/storageAccounts/rgeml2stacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"rgeml2stacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T08:00:29.8670815Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://rgeml2stacc.blob.core.windows.net/\",\r\n \"file\": \"https://rgeml2stacc.file.core.windows.net/\",\r\n \"queue\": \"https://rgeml2stacc.queue.core.windows.net/\",\r\n \"table\": \"https://rgeml2stacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/sapcalrg/providers/Microsoft.Storage/storageAccounts/sapcalrg8522\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"sapcalrg8522\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-28T06:54:16.0456896Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sapcalrg8522.blob.core.windows.net/\",\r\n \"file\": \"https://sapcalrg8522.file.core.windows.net/\",\r\n \"queue\": \"https://sapcalrg8522.queue.core.windows.net/\",\r\n \"table\": \"https://sapcalrg8522.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/saperpdemo859644\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"saperpdemo859644\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-01-26T11:02:43.8634331Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saperpdemo859644.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1prstacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1prstacc\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-12-10T17:35:29.0415914Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1prstacc.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1ststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1ststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-10T17:36:26.4810072Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1ststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saphana1ststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saphana1ststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saphana1ststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-linux-docu-tests/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saplinuxdocuststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-24T09:25:04.4473982Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-linux-docu-tests-we/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststaccwe\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saplinuxdocuststaccwe\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-25T13:11:50.5477032Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststaccwe.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststaccwe.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststaccwe.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststaccwe.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/sappseduscsape012612030\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"sappseduscsape012612030\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2016-01-26T11:03:56.0307387Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sappseduscsape012612030.blob.core.windows.net/\",\r\n \"file\": \"https://sappseduscsape012612030.file.core.windows.net/\",\r\n \"queue\": \"https://sappseduscsape012612030.queue.core.windows.net/\",\r\n \"table\": \"https://sappseduscsape012612030.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"westeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/saptesiarm/providers/Microsoft.Storage/storageAccounts/saptesiarm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saptesiarm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-08-27T12:13:00.4049179Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptesiarm.blob.core.windows.net/\",\r\n \"file\": \"https://saptesiarm.file.core.windows.net/\",\r\n \"queue\": \"https://saptesiarm.queue.core.windows.net/\",\r\n \"table\": \"https://saptesiarm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/saptestrajrg/providers/Microsoft.Storage/storageAccounts/saptestrajrg4518\",\r\n \"location\": \"westus\",\r\n \"name\": \"saptestrajrg4518\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-07-22T19:24:21.1065762Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptestrajrg4518.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps311/providers/Microsoft.Storage/storageAccounts/stocrptestps311\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps311\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T10:47:27.4960365Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps311.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps311.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps311.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps311.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Storage/storageAccounts/stocrptestps3457\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps3457\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T13:19:07.5618762Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps3457.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps3457.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps3457.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps3457.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/temptestsap\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"temptestsap\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-10T14:03:58.3799849Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://temptestsap.blob.core.windows.net/\",\r\n \"file\": \"https://temptestsap.file.core.windows.net/\",\r\n \"queue\": \"https://temptestsap.queue.core.windows.net/\",\r\n \"table\": \"https://temptestsap.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "17081" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "0916ca32-f47e-4530-bc36-ae66523227a7" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14824" + ], + "x-ms-correlation-request-id": [ + "0916ca32-f47e-4530-bc36-ae66523227a7" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T132824Z:0916ca32-f47e-4530-bc36-ae66523227a7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Tue, 16 Feb 2016 13:28:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457/extensions/LinuxDiagnostic?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM0NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczM0NTcvZXh0ZW5zaW9ucy9MaW51eERpYWdub3N0aWM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRQcm9jZXNzb3JUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRJZGxlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50UHJpdmlsZWdlZFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudEludGVycnVwdFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudERQQ1RpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudFVzZXJUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnROaWNlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50SU9XYWl0VGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZE1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxVc2VkTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRBdmFpbGFibGVNZW1vcnkiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRVc2VkQnlDYWNoZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcVXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1BlclNlYyIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1JlYWRQZXJTZWMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcUGFnZXNXcml0dGVuUGVyU2VjIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VUcmFuc2ZlclRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQXZlcmFnZVJlYWRUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VXcml0ZVRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcVHJhbnNmZXJzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFJlYWRzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFdyaXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xCeXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xXcml0ZUJ5dGVzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VEaXNrUXVldWVMZW5ndGgiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVG90YWwiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVHJhbnNtaXR0ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzUmVjZWl2ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXFBhY2tldHNUcmFuc21pdHRlZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcUGFja2V0c1JlY2VpdmVkIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFJ4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFR4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbENvbGxpc2lvbnMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"protectedSettings\": {\r\n \"storageAccountName\": \"stocrptestps3457\",\r\n \"storageAccountKey\": \"drNk94kdlVm8VdcXAYBrEWgh1d4NM+8N46tOxAUMKTV6PpZjmYlkb/DB5UG75cj8PUvD4kK6ssxByIyMgNcSyA==\",\r\n \"storageAccountEndPoint\": \"https://core.windows.net\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "5616" + ], + "x-ms-client-request-id": [ + "1a353e9b-e79e-4150-8734-8a8d3f41791c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRQcm9jZXNzb3JUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRJZGxlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50UHJpdmlsZWdlZFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudEludGVycnVwdFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudERQQ1RpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudFVzZXJUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnROaWNlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50SU9XYWl0VGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZE1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxVc2VkTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRBdmFpbGFibGVNZW1vcnkiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRVc2VkQnlDYWNoZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcVXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1BlclNlYyIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1JlYWRQZXJTZWMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcUGFnZXNXcml0dGVuUGVyU2VjIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VUcmFuc2ZlclRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQXZlcmFnZVJlYWRUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VXcml0ZVRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcVHJhbnNmZXJzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFJlYWRzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFdyaXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xCeXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xXcml0ZUJ5dGVzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VEaXNrUXVldWVMZW5ndGgiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVG90YWwiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVHJhbnNtaXR0ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzUmVjZWl2ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXFBhY2tldHNUcmFuc21pdHRlZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcUGFja2V0c1JlY2VpdmVkIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFJ4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFR4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbENvbGxpc2lvbnMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457/extensions/LinuxDiagnostic\",\r\n \"name\": \"LinuxDiagnostic\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "5682" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/f02a775c-77b1-4d84-93b1-bb9be1855222?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "f02a775c-77b1-4d84-93b1-bb9be1855222" + ], + "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": [ + "da476dc1-7da0-46a5-aeac-6f1cabc9e328" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T132446Z:da476dc1-7da0-46a5-aeac-6f1cabc9e328" + ], + "Date": [ + "Tue, 16 Feb 2016 13:24:46 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/f02a775c-77b1-4d84-93b1-bb9be1855222?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZjAyYTc3NWMtNzdiMS00ZDg0LTkzYjEtYmI5YmUxODU1MjIyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f02a775c-77b1-4d84-93b1-bb9be1855222\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T14:24:45.1518831+01: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-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "5f60db23-e660-48f8-bb8c-4e0088b8f12c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14872" + ], + "x-ms-correlation-request-id": [ + "c8db06f7-9504-4526-9c74-e9a7f89f2a01" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T132516Z:c8db06f7-9504-4526-9c74-e9a7f89f2a01" + ], + "Date": [ + "Tue, 16 Feb 2016 13:25:16 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/f02a775c-77b1-4d84-93b1-bb9be1855222?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZjAyYTc3NWMtNzdiMS00ZDg0LTkzYjEtYmI5YmUxODU1MjIyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f02a775c-77b1-4d84-93b1-bb9be1855222\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T14:24:45.1518831+01: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-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "1555a200-8d51-4cfa-9b9b-09a3e22262ad" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14871" + ], + "x-ms-correlation-request-id": [ + "62887652-c1ab-4121-b8e0-e697d7740e04" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T132546Z:62887652-c1ab-4121-b8e0-e697d7740e04" + ], + "Date": [ + "Tue, 16 Feb 2016 13:25:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/f02a775c-77b1-4d84-93b1-bb9be1855222?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZjAyYTc3NWMtNzdiMS00ZDg0LTkzYjEtYmI5YmUxODU1MjIyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f02a775c-77b1-4d84-93b1-bb9be1855222\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-02-16T14:24:45.1518831+01:00\",\r\n \"endTime\": \"2016-02-16T14:26:09.2143984+01: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-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "bc6d3678-e9f1-47c4-8c96-2e67b7eab0d6" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14869" + ], + "x-ms-correlation-request-id": [ + "74fe983d-c339-49fc-b200-d6341262cb70" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T132616Z:74fe983d-c339-49fc-b200-d6341262cb70" + ], + "Date": [ + "Tue, 16 Feb 2016 13:26:16 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457/extensions/LinuxDiagnostic?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM0NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczM0NTcvZXh0ZW5zaW9ucy9MaW51eERpYWdub3N0aWM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRQcm9jZXNzb3JUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRJZGxlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50UHJpdmlsZWdlZFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudEludGVycnVwdFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudERQQ1RpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudFVzZXJUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnROaWNlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50SU9XYWl0VGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZE1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxVc2VkTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRBdmFpbGFibGVNZW1vcnkiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRVc2VkQnlDYWNoZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcVXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1BlclNlYyIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1JlYWRQZXJTZWMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcUGFnZXNXcml0dGVuUGVyU2VjIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VUcmFuc2ZlclRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQXZlcmFnZVJlYWRUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VXcml0ZVRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcVHJhbnNmZXJzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFJlYWRzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFdyaXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xCeXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xXcml0ZUJ5dGVzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VEaXNrUXVldWVMZW5ndGgiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVG90YWwiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVHJhbnNtaXR0ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzUmVjZWl2ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXFBhY2tldHNUcmFuc21pdHRlZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcUGFja2V0c1JlY2VpdmVkIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFJ4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFR4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbENvbGxpc2lvbnMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457/extensions/LinuxDiagnostic\",\r\n \"name\": \"LinuxDiagnostic\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "5683" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "1c579127-c793-4ab9-beeb-b6b3f2022af5" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14868" + ], + "x-ms-correlation-request-id": [ + "2c988f33-d21a-46d8-9046-87c24b5f4911" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T132617Z:2c988f33-d21a-46d8-9046-87c24b5f4911" + ], + "Date": [ + "Tue, 16 Feb 2016 13:26:16 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457/extensions/AzureEnhancedMonitorForLinux?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM0NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczM0NTcvZXh0ZW5zaW9ucy9BenVyZUVuaGFuY2VkTW9uaXRvckZvckxpbnV4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_A2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"osdisk.connminute\",\r\n \"value\": \"stocrptestps3457.minute\"\r\n },\r\n {\r\n \"key\": \"osdisk.connhour\",\r\n \"value\": \"stocrptestps3457.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.1\",\r\n \"value\": \"stocrptestps3457.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.1\",\r\n \"value\": \"stocrptestps3457.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.2\",\r\n \"value\": \"stocrptestps3457.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.2\",\r\n \"value\": \"stocrptestps3457.hour\"\r\n },\r\n {\r\n \"key\": \"stocrptestps3457.hour.uri\",\r\n \"value\": \"https://stocrptestps3457.table.core.windows.net/$MetricsHourPrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps3457.minute.uri\",\r\n \"value\": \"https://stocrptestps3457.table.core.windows.net/$MetricsMinutePrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps3457.hour.name\",\r\n \"value\": \"stocrptestps3457\"\r\n },\r\n {\r\n \"key\": \"stocrptestps3457.minute.name\",\r\n \"value\": \"stocrptestps3457\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps3457\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps3457.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"protectedSettings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"stocrptestps3457.hour.key\",\r\n \"value\": \"drNk94kdlVm8VdcXAYBrEWgh1d4NM+8N46tOxAUMKTV6PpZjmYlkb/DB5UG75cj8PUvD4kK6ssxByIyMgNcSyA==\"\r\n },\r\n {\r\n \"key\": \"stocrptestps3457.minute.key\",\r\n \"value\": \"drNk94kdlVm8VdcXAYBrEWgh1d4NM+8N46tOxAUMKTV6PpZjmYlkb/DB5UG75cj8PUvD4kK6ssxByIyMgNcSyA==\"\r\n },\r\n {\r\n \"key\": \"wad.key\",\r\n \"value\": \"drNk94kdlVm8VdcXAYBrEWgh1d4NM+8N46tOxAUMKTV6PpZjmYlkb/DB5UG75cj8PUvD4kK6ssxByIyMgNcSyA==\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "3877" + ], + "x-ms-client-request-id": [ + "b8f593c4-6cf7-454c-9436-efaf66f0208b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_A2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"osdisk.connminute\",\r\n \"value\": \"stocrptestps3457.minute\"\r\n },\r\n {\r\n \"key\": \"osdisk.connhour\",\r\n \"value\": \"stocrptestps3457.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.1\",\r\n \"value\": \"stocrptestps3457.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.1\",\r\n \"value\": \"stocrptestps3457.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.2\",\r\n \"value\": \"stocrptestps3457.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.2\",\r\n \"value\": \"stocrptestps3457.hour\"\r\n },\r\n {\r\n \"key\": \"stocrptestps3457.hour.uri\",\r\n \"value\": \"https://stocrptestps3457.table.core.windows.net/$MetricsHourPrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps3457.minute.uri\",\r\n \"value\": \"https://stocrptestps3457.table.core.windows.net/$MetricsMinutePrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps3457.hour.name\",\r\n \"value\": \"stocrptestps3457\"\r\n },\r\n {\r\n \"key\": \"stocrptestps3457.minute.name\",\r\n \"value\": \"stocrptestps3457\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps3457\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps3457.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457/extensions/AzureEnhancedMonitorForLinux\",\r\n \"name\": \"AzureEnhancedMonitorForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2220" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/a1abbb1c-bd4c-4ac9-a650-091cca79aff2?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "a1abbb1c-bd4c-4ac9-a650-091cca79aff2" + ], + "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": [ + "a2ccd01a-a949-4c7e-9549-98141e860aa7" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T132618Z:a2ccd01a-a949-4c7e-9549-98141e860aa7" + ], + "Date": [ + "Tue, 16 Feb 2016 13:26:17 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/a1abbb1c-bd4c-4ac9-a650-091cca79aff2?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTFhYmJiMWMtYmQ0Yy00YWM5LWE2NTAtMDkxY2NhNzlhZmYyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"a1abbb1c-bd4c-4ac9-a650-091cca79aff2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T14:26:18.2456559+01: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-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "5ae1968e-793f-4cc0-b1a1-e811a2ebe3fd" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14865" + ], + "x-ms-correlation-request-id": [ + "d5ba8a71-1c9d-4615-ae1e-49d613bdebf7" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T132648Z:d5ba8a71-1c9d-4615-ae1e-49d613bdebf7" + ], + "Date": [ + "Tue, 16 Feb 2016 13:26:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/a1abbb1c-bd4c-4ac9-a650-091cca79aff2?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTFhYmJiMWMtYmQ0Yy00YWM5LWE2NTAtMDkxY2NhNzlhZmYyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"a1abbb1c-bd4c-4ac9-a650-091cca79aff2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T14:26:18.2456559+01: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-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "9e0e7f63-053f-41ba-9544-f981c0afed63" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14864" + ], + "x-ms-correlation-request-id": [ + "8bde2f76-706a-4fc9-a957-aa5979f1abaf" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T132719Z:8bde2f76-706a-4fc9-a957-aa5979f1abaf" + ], + "Date": [ + "Tue, 16 Feb 2016 13:27:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/a1abbb1c-bd4c-4ac9-a650-091cca79aff2?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTFhYmJiMWMtYmQ0Yy00YWM5LWE2NTAtMDkxY2NhNzlhZmYyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"a1abbb1c-bd4c-4ac9-a650-091cca79aff2\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-02-16T14:26:18.2456559+01:00\",\r\n \"endTime\": \"2016-02-16T14:27:37.1362366+01: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-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "ccaf5edb-dd63-4a10-9d30-2416ca65d347" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14862" + ], + "x-ms-correlation-request-id": [ + "3a0ce685-f66f-4f6c-8839-9e14fb06c810" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T132749Z:3a0ce685-f66f-4f6c-8839-9e14fb06c810" + ], + "Date": [ + "Tue, 16 Feb 2016 13:27:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457/extensions/AzureEnhancedMonitorForLinux?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM0NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczM0NTcvZXh0ZW5zaW9ucy9BenVyZUVuaGFuY2VkTW9uaXRvckZvckxpbnV4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_A2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"osdisk.connminute\",\r\n \"value\": \"stocrptestps3457.minute\"\r\n },\r\n {\r\n \"key\": \"osdisk.connhour\",\r\n \"value\": \"stocrptestps3457.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.1\",\r\n \"value\": \"stocrptestps3457.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.1\",\r\n \"value\": \"stocrptestps3457.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.2\",\r\n \"value\": \"stocrptestps3457.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.2\",\r\n \"value\": \"stocrptestps3457.hour\"\r\n },\r\n {\r\n \"key\": \"stocrptestps3457.hour.uri\",\r\n \"value\": \"https://stocrptestps3457.table.core.windows.net/$MetricsHourPrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps3457.minute.uri\",\r\n \"value\": \"https://stocrptestps3457.table.core.windows.net/$MetricsMinutePrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps3457.hour.name\",\r\n \"value\": \"stocrptestps3457\"\r\n },\r\n {\r\n \"key\": \"stocrptestps3457.minute.name\",\r\n \"value\": \"stocrptestps3457\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps3457\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps3457.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457/extensions/AzureEnhancedMonitorForLinux\",\r\n \"name\": \"AzureEnhancedMonitorForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2221" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "4b7a28eb-b2cd-4d78-8dd8-8d8d4b1c4fb2" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14861" + ], + "x-ms-correlation-request-id": [ + "7fa3c00d-412c-4824-9963-e5b60321035d" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T132749Z:7fa3c00d-412c-4824-9963-e5b60321035d" + ], + "Date": [ + "Tue, 16 Feb 2016 13:27:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457/extensions/AzureEnhancedMonitorForLinux?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM0NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczM0NTcvZXh0ZW5zaW9ucy9BenVyZUVuaGFuY2VkTW9uaXRvckZvckxpbnV4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e814e808-e585-4809-bc8b-f3405643cd8e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_A2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"osdisk.connminute\",\r\n \"value\": \"stocrptestps3457.minute\"\r\n },\r\n {\r\n \"key\": \"osdisk.connhour\",\r\n \"value\": \"stocrptestps3457.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.1\",\r\n \"value\": \"stocrptestps3457.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.1\",\r\n \"value\": \"stocrptestps3457.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.2\",\r\n \"value\": \"stocrptestps3457.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.2\",\r\n \"value\": \"stocrptestps3457.hour\"\r\n },\r\n {\r\n \"key\": \"stocrptestps3457.hour.uri\",\r\n \"value\": \"https://stocrptestps3457.table.core.windows.net/$MetricsHourPrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps3457.minute.uri\",\r\n \"value\": \"https://stocrptestps3457.table.core.windows.net/$MetricsMinutePrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps3457.hour.name\",\r\n \"value\": \"stocrptestps3457\"\r\n },\r\n {\r\n \"key\": \"stocrptestps3457.minute.name\",\r\n \"value\": \"stocrptestps3457\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps3457\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps3457.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457/extensions/AzureEnhancedMonitorForLinux\",\r\n \"name\": \"AzureEnhancedMonitorForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2221" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "b8d1d9f5-5830-46bf-93d9-1682833533e0" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14859" + ], + "x-ms-correlation-request-id": [ + "25787fa3-dbfd-4a6e-9407-ca66cbb10ca7" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T132749Z:25787fa3-dbfd-4a6e-9407-ca66cbb10ca7" + ], + "Date": [ + "Tue, 16 Feb 2016 13:27:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457/restart?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM0NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczM0NTcvcmVzdGFydD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3b3b28f8-2a0d-4501-946e-a9da64fcbeeb" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/54ca1a3c-a536-428e-85ec-7e69670c9452?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "54ca1a3c-a536-428e-85ec-7e69670c9452" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/54ca1a3c-a536-428e-85ec-7e69670c9452?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "dba62499-a107-4c78-a0a3-8e29e226bf43" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T132752Z:dba62499-a107-4c78-a0a3-8e29e226bf43" + ], + "Date": [ + "Tue, 16 Feb 2016 13:27:52 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/54ca1a3c-a536-428e-85ec-7e69670c9452?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNTRjYTFhM2MtYTUzNi00MjhlLTg1ZWMtN2U2OTY3MGM5NDUyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"54ca1a3c-a536-428e-85ec-7e69670c9452\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-02-16T14:27:52.7925278+01:00\",\r\n \"endTime\": \"2016-02-16T14:27:53.2456479+01: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-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "c678f6c1-ea64-41e0-ae00-ea9f7db63afe" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14857" + ], + "x-ms-correlation-request-id": [ + "fd1834f4-d60f-43d5-944f-4e3131692809" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T132823Z:fd1834f4-d60f-43d5-944f-4e3131692809" + ], + "Date": [ + "Tue, 16 Feb 2016 13:28:22 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457/extensions/AzureEnhancedMonitorForLinux?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM0NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczM0NTcvZXh0ZW5zaW9ucy9BenVyZUVuaGFuY2VkTW9uaXRvckZvckxpbnV4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "54ec4079-5164-4aee-bb88-7f8e4d316057" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/3fc0acb1-7347-42b0-96c2-4a3e8ecbe125?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "3fc0acb1-7347-42b0-96c2-4a3e8ecbe125" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/3fc0acb1-7347-42b0-96c2-4a3e8ecbe125?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1186" + ], + "x-ms-correlation-request-id": [ + "4655ea41-8167-4dee-ab8a-578453d93010" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T140125Z:4655ea41-8167-4dee-ab8a-578453d93010" + ], + "Date": [ + "Tue, 16 Feb 2016 14:01:25 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/3fc0acb1-7347-42b0-96c2-4a3e8ecbe125?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2ZjMGFjYjEtNzM0Ny00MmIwLTk2YzItNGEzZThlY2JlMTI1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"3fc0acb1-7347-42b0-96c2-4a3e8ecbe125\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T15:01:25.4175126+01: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-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "9b123391-ba44-4752-968c-223fa7f5db7d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14735" + ], + "x-ms-correlation-request-id": [ + "e190c8d7-0f48-4ba9-8035-66cc17dfc7b3" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T140155Z:e190c8d7-0f48-4ba9-8035-66cc17dfc7b3" + ], + "Date": [ + "Tue, 16 Feb 2016 14:01:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/3fc0acb1-7347-42b0-96c2-4a3e8ecbe125?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2ZjMGFjYjEtNzM0Ny00MmIwLTk2YzItNGEzZThlY2JlMTI1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"3fc0acb1-7347-42b0-96c2-4a3e8ecbe125\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T15:01:25.4175126+01: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-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "3b627594-e66a-4785-b70b-664257a6b9e3" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14733" + ], + "x-ms-correlation-request-id": [ + "2ef76b53-45b9-47ab-9fb3-b7a0f528da80" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T140226Z:2ef76b53-45b9-47ab-9fb3-b7a0f528da80" + ], + "Date": [ + "Tue, 16 Feb 2016 14:02:25 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/3fc0acb1-7347-42b0-96c2-4a3e8ecbe125?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2ZjMGFjYjEtNzM0Ny00MmIwLTk2YzItNGEzZThlY2JlMTI1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"3fc0acb1-7347-42b0-96c2-4a3e8ecbe125\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-02-16T15:01:25.4175126+01:00\",\r\n \"endTime\": \"2016-02-16T15:02:46.058158+01: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-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "b3f21a75-43ee-4f95-a081-35d64073d430" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14730" + ], + "x-ms-correlation-request-id": [ + "615ffb68-590f-4336-bbc3-404cefeb2f1d" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T140256Z:615ffb68-590f-4336-bbc3-404cefeb2f1d" + ], + "Date": [ + "Tue, 16 Feb 2016 14:02:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourcegroups/crptestps3457?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczM0NTc/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": [ + "1198" + ], + "x-ms-request-id": [ + "799c55a5-f9a9-4ede-85d4-f00679cae7be" + ], + "x-ms-correlation-request-id": [ + "799c55a5-f9a9-4ede-85d4-f00679cae7be" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T140258Z:799c55a5-f9a9-4ede-85d4-f00679cae7be" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 14:02:57 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TkRVM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14836" + ], + "x-ms-request-id": [ + "15f26ca6-2fb7-4b9b-bfb7-1ab3435156ca" + ], + "x-ms-correlation-request-id": [ + "15f26ca6-2fb7-4b9b-bfb7-1ab3435156ca" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T140258Z:15f26ca6-2fb7-4b9b-bfb7-1ab3435156ca" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 14:02:57 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TkRVM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14835" + ], + "x-ms-request-id": [ + "b6d436db-85f2-4fe1-a7d4-136e7f05778c" + ], + "x-ms-correlation-request-id": [ + "b6d436db-85f2-4fe1-a7d4-136e7f05778c" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T140313Z:b6d436db-85f2-4fe1-a7d4-136e7f05778c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 14:03:12 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TkRVM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14834" + ], + "x-ms-request-id": [ + "4982189a-5320-4255-baec-9f8e14d0e9ff" + ], + "x-ms-correlation-request-id": [ + "4982189a-5320-4255-baec-9f8e14d0e9ff" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T140328Z:4982189a-5320-4255-baec-9f8e14d0e9ff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 14:03:27 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TkRVM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14832" + ], + "x-ms-request-id": [ + "76b74dfc-6e91-4390-aca4-4a7b392cd843" + ], + "x-ms-correlation-request-id": [ + "76b74dfc-6e91-4390-aca4-4a7b392cd843" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T140343Z:76b74dfc-6e91-4390-aca4-4a7b392cd843" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 14:03:43 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TkRVM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14830" + ], + "x-ms-request-id": [ + "60a27f3d-93de-4e9c-96b3-9e858c96b299" + ], + "x-ms-correlation-request-id": [ + "60a27f3d-93de-4e9c-96b3-9e858c96b299" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T140359Z:60a27f3d-93de-4e9c-96b3-9e858c96b299" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 14:03:58 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TkRVM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14829" + ], + "x-ms-request-id": [ + "02c8c8a9-784f-49f3-9fe1-4dc4b3c1fb6f" + ], + "x-ms-correlation-request-id": [ + "02c8c8a9-784f-49f3-9fe1-4dc4b3c1fb6f" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T140414Z:02c8c8a9-784f-49f3-9fe1-4dc4b3c1fb6f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 14:04:13 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TkRVM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14828" + ], + "x-ms-request-id": [ + "b8186c3e-7720-48bc-bb00-3eeb6237a645" + ], + "x-ms-correlation-request-id": [ + "b8186c3e-7720-48bc-bb00-3eeb6237a645" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T140429Z:b8186c3e-7720-48bc-bb00-3eeb6237a645" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 14:04:29 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TkRVM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14827" + ], + "x-ms-request-id": [ + "aa9f7833-8c01-422f-92d5-c7b332d60d2f" + ], + "x-ms-correlation-request-id": [ + "aa9f7833-8c01-422f-92d5-c7b332d60d2f" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T140444Z:aa9f7833-8c01-422f-92d5-c7b332d60d2f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 14:04:43 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TkRVM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14826" + ], + "x-ms-request-id": [ + "a3df6ed3-4d33-4bf6-a1f1-0562a309564d" + ], + "x-ms-correlation-request-id": [ + "a3df6ed3-4d33-4bf6-a1f1-0562a309564d" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T140459Z:a3df6ed3-4d33-4bf6-a1f1-0562a309564d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 14:04:58 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TkRVM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14840" + ], + "x-ms-request-id": [ + "8d2a9390-21f4-4665-81ff-d79864cb7277" + ], + "x-ms-correlation-request-id": [ + "8d2a9390-21f4-4665-81ff-d79864cb7277" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T140514Z:8d2a9390-21f4-4665-81ff-d79864cb7277" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 14:05:14 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TkRVM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14839" + ], + "x-ms-request-id": [ + "f90a48aa-df4f-4d52-8ebf-4ad91657de7a" + ], + "x-ms-correlation-request-id": [ + "f90a48aa-df4f-4d52-8ebf-4ad91657de7a" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T140530Z:f90a48aa-df4f-4d52-8ebf-4ad91657de7a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 14:05:29 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TkRVM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14837" + ], + "x-ms-request-id": [ + "4dda11a7-4611-4726-ad85-80bceefa9dcc" + ], + "x-ms-correlation-request-id": [ + "4dda11a7-4611-4726-ad85-80bceefa9dcc" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T140545Z:4dda11a7-4611-4726-ad85-80bceefa9dcc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 14:05:44 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TkRVM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14836" + ], + "x-ms-request-id": [ + "dd8ea004-acaa-45d8-8012-8c3606b02839" + ], + "x-ms-correlation-request-id": [ + "dd8ea004-acaa-45d8-8012-8c3606b02839" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T140600Z:dd8ea004-acaa-45d8-8012-8c3606b02839" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 14:06:00 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TkRVM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14835" + ], + "x-ms-request-id": [ + "0e52eb85-0d02-436d-b163-bc6284bc87c5" + ], + "x-ms-correlation-request-id": [ + "0e52eb85-0d02-436d-b163-bc6284bc87c5" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T140615Z:0e52eb85-0d02-436d-b163-bc6284bc87c5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 14:06:14 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TkRVM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14834" + ], + "x-ms-request-id": [ + "f4c12674-1017-4f50-a47b-fdb2da2c9623" + ], + "x-ms-correlation-request-id": [ + "f4c12674-1017-4f50-a47b-fdb2da2c9623" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T140630Z:f4c12674-1017-4f50-a47b-fdb2da2c9623" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 14:06:30 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TkRVM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14833" + ], + "x-ms-request-id": [ + "9d1f3a10-4b1b-48fb-8458-86f47f3d0086" + ], + "x-ms-correlation-request-id": [ + "9d1f3a10-4b1b-48fb-8458-86f47f3d0086" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T140645Z:9d1f3a10-4b1b-48fb-8458-86f47f3d0086" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 14:06:45 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TkRVM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14831" + ], + "x-ms-request-id": [ + "c4120ebb-75f1-4dd5-9383-399019059fd1" + ], + "x-ms-correlation-request-id": [ + "c4120ebb-75f1-4dd5-9383-399019059fd1" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T140701Z:c4120ebb-75f1-4dd5-9383-399019059fd1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 14:07:00 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TkRVM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14830" + ], + "x-ms-request-id": [ + "7ac9fa2f-79a8-42f2-bb93-2a72531bd566" + ], + "x-ms-correlation-request-id": [ + "7ac9fa2f-79a8-42f2-bb93-2a72531bd566" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T140716Z:7ac9fa2f-79a8-42f2-bb93-2a72531bd566" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 14:07:15 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TkRVM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14828" + ], + "x-ms-request-id": [ + "12680434-1bd8-47b5-b56c-57bd690e4726" + ], + "x-ms-correlation-request-id": [ + "12680434-1bd8-47b5-b56c-57bd690e4726" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T140731Z:12680434-1bd8-47b5-b56c-57bd690e4726" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 14:07:31 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TkRVM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14826" + ], + "x-ms-request-id": [ + "a73f1c47-893d-4d15-8ede-0e2af1abe5ad" + ], + "x-ms-correlation-request-id": [ + "a73f1c47-893d-4d15-8ede-0e2af1abe5ad" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T140746Z:a73f1c47-893d-4d15-8ede-0e2af1abe5ad" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 14:07:46 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TkRVM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14825" + ], + "x-ms-request-id": [ + "c9e63c86-abed-4148-b636-c259cf49404a" + ], + "x-ms-correlation-request-id": [ + "c9e63c86-abed-4148-b636-c259cf49404a" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T140801Z:c9e63c86-abed-4148-b636-c259cf49404a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 14:08:01 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TkRVM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14823" + ], + "x-ms-request-id": [ + "55306dc6-1727-4bbe-84eb-01e0346b6717" + ], + "x-ms-correlation-request-id": [ + "55306dc6-1727-4bbe-84eb-01e0346b6717" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T140816Z:55306dc6-1727-4bbe-84eb-01e0346b6717" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 14:08:16 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TkRVM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14822" + ], + "x-ms-request-id": [ + "55ba65c7-8277-40ea-9b4d-9b54ceaed5a9" + ], + "x-ms-correlation-request-id": [ + "55ba65c7-8277-40ea-9b4d-9b54ceaed5a9" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T140832Z:55ba65c7-8277-40ea-9b4d-9b54ceaed5a9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 14:08:31 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TkRVM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14820" + ], + "x-ms-request-id": [ + "ab965460-2add-445f-882b-5702d6ea815c" + ], + "x-ms-correlation-request-id": [ + "ab965460-2add-445f-882b-5702d6ea815c" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T140847Z:ab965460-2add-445f-882b-5702d6ea815c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 14:08:46 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TkRVM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14818" + ], + "x-ms-request-id": [ + "5169f118-c4b9-4054-8078-63517dcfa313" + ], + "x-ms-correlation-request-id": [ + "5169f118-c4b9-4054-8078-63517dcfa313" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T140902Z:5169f118-c4b9-4054-8078-63517dcfa313" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 14:09:02 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TkRVM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14814" + ], + "x-ms-request-id": [ + "e3dcb3bf-405f-484c-a072-5786ea67434a" + ], + "x-ms-correlation-request-id": [ + "e3dcb3bf-405f-484c-a072-5786ea67434a" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T140917Z:e3dcb3bf-405f-484c-a072-5786ea67434a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 14:09:16 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TkRVM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14812" + ], + "x-ms-request-id": [ + "c66507eb-e577-4ed0-80a0-389a4591ff88" + ], + "x-ms-correlation-request-id": [ + "c66507eb-e577-4ed0-80a0-389a4591ff88" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T140932Z:c66507eb-e577-4ed0-80a0-389a4591ff88" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 14:09:32 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-AEMExtensionBasicLinux": [ + "crptestps3457" + ] + }, + "Variables": { + "SubscriptionId": "acf8322c-ac5c-4cbd-8907-5f5920784774" + } +} \ No newline at end of file diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.AEMExtensionTests/TestAEMExtensionBasicWindows.json b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.AEMExtensionTests/TestAEMExtensionBasicWindows.json new file mode 100644 index 000000000000..41e05701c247 --- /dev/null +++ b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.AEMExtensionTests/TestAEMExtensionBasicWindows.json @@ -0,0 +1,6737 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "5199" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14818" + ], + "x-ms-request-id": [ + "c1411a76-510e-44b5-bf90-43efa55cffb9" + ], + "x-ms-correlation-request-id": [ + "c1411a76-510e-44b5-bf90-43efa55cffb9" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T151351Z:c1411a76-510e-44b5-bf90-43efa55cffb9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 15:13:50 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourcegroups/crptestps2691?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczI2OTE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "105" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14817" + ], + "x-ms-request-id": [ + "670b558d-78f4-4043-a625-258fc9f865f7" + ], + "x-ms-correlation-request-id": [ + "670b558d-78f4-4043-a625-258fc9f865f7" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T151351Z:670b558d-78f4-4043-a625-258fc9f865f7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 15:13:50 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourcegroups/crptestps2691?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczI2OTE/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": [ + "14343" + ], + "x-ms-request-id": [ + "72a121e7-6096-4b70-a124-4697288b9348" + ], + "x-ms-correlation-request-id": [ + "72a121e7-6096-4b70-a124-4697288b9348" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T160226Z:72a121e7-6096-4b70-a124-4697288b9348" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 16:02:25 GMT" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourcegroups/crptestps2691?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczI2OTE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691\",\r\n \"name\": \"crptestps2691\",\r\n \"location\": \"eastus\",\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": [ + "1198" + ], + "x-ms-request-id": [ + "6a66fb3d-58b6-4215-b781-bc7fd7112b9e" + ], + "x-ms-correlation-request-id": [ + "6a66fb3d-58b6-4215-b781-bc7fd7112b9e" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T151352Z:6a66fb3d-58b6-4215-b781-bc7fd7112b9e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 15:13:51 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTEvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "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": [ + "14816" + ], + "x-ms-request-id": [ + "100e3e43-10a2-40e2-99db-fafe98c33d84" + ], + "x-ms-correlation-request-id": [ + "100e3e43-10a2-40e2-99db-fafe98c33d84" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T151352Z:100e3e43-10a2-40e2-99db-fafe98c33d84" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 15:13:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/virtualnetworks/vnetcrptestps2691?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzMjY5MT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "36ae3835-7f5e-46d4-aa89-163b4b720d63" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/vnetcrptestps2691' under resource group 'crptestps2691' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "168" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "49148b40-5136-4b6f-8f40-0d24447d5639" + ], + "x-ms-correlation-request-id": [ + "49148b40-5136-4b6f-8f40-0d24447d5639" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T151354Z:49148b40-5136-4b6f-8f40-0d24447d5639" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 15:13:53 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/virtualnetworks/vnetcrptestps2691?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzMjY5MT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps2691\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/virtualNetworks/vnetcrptestps2691\",\r\n \"etag\": \"W/\\\"26b95c7e-92d6-4836-87d9-2c9e4475e2fd\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c7052896-9c9b-4d0f-b2ef-6e9ab05704ff\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps2691\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/virtualNetworks/vnetcrptestps2691/subnets/subnetcrptestps2691\",\r\n \"etag\": \"W/\\\"26b95c7e-92d6-4836-87d9-2c9e4475e2fd\\\"\",\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}", + "ResponseHeaders": { + "Content-Length": [ + "994" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2b1762aa-04f1-4418-ba2a-24ade60d4d50" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"26b95c7e-92d6-4836-87d9-2c9e4475e2fd\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14841" + ], + "x-ms-correlation-request-id": [ + "612016d4-d1e1-4966-be28-1d200ba57a74" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T151406Z:612016d4-d1e1-4966-be28-1d200ba57a74" + ], + "Date": [ + "Tue, 16 Feb 2016 15:14:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/virtualnetworks/vnetcrptestps2691?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzMjY5MT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6f07af56-8a5b-4016-9e7b-03994231df94" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps2691\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/virtualNetworks/vnetcrptestps2691\",\r\n \"etag\": \"W/\\\"26b95c7e-92d6-4836-87d9-2c9e4475e2fd\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c7052896-9c9b-4d0f-b2ef-6e9ab05704ff\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps2691\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/virtualNetworks/vnetcrptestps2691/subnets/subnetcrptestps2691\",\r\n \"etag\": \"W/\\\"26b95c7e-92d6-4836-87d9-2c9e4475e2fd\\\"\",\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}", + "ResponseHeaders": { + "Content-Length": [ + "994" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c35cc692-0eae-4a28-a87c-ddddd0998f9c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"26b95c7e-92d6-4836-87d9-2c9e4475e2fd\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14840" + ], + "x-ms-correlation-request-id": [ + "f378b51f-660c-49c5-a406-287ccd618116" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T151406Z:f378b51f-660c-49c5-a406-287ccd618116" + ], + "Date": [ + "Tue, 16 Feb 2016 15:14:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/virtualnetworks/vnetcrptestps2691?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzMjY5MT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "995d7feb-919f-4178-b2a3-7a1c572b2e08" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps2691\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/virtualNetworks/vnetcrptestps2691\",\r\n \"etag\": \"W/\\\"26b95c7e-92d6-4836-87d9-2c9e4475e2fd\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c7052896-9c9b-4d0f-b2ef-6e9ab05704ff\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps2691\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/virtualNetworks/vnetcrptestps2691/subnets/subnetcrptestps2691\",\r\n \"etag\": \"W/\\\"26b95c7e-92d6-4836-87d9-2c9e4475e2fd\\\"\",\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}", + "ResponseHeaders": { + "Content-Length": [ + "994" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "5f756212-33cc-40e3-bf50-cad71851d643" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"26b95c7e-92d6-4836-87d9-2c9e4475e2fd\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14839" + ], + "x-ms-correlation-request-id": [ + "692fd296-8d70-44e1-ac93-9446b9c69ffd" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T151406Z:692fd296-8d70-44e1-ac93-9446b9c69ffd" + ], + "Date": [ + "Tue, 16 Feb 2016 15:14:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/virtualnetworks/vnetcrptestps2691?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzMjY5MT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps2691\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "341" + ], + "x-ms-client-request-id": [ + "2687dbc7-6657-4e3b-8869-f3e94f902c82" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps2691\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/virtualNetworks/vnetcrptestps2691\",\r\n \"etag\": \"W/\\\"a65db7af-c827-4886-9d3a-131f573a4425\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"c7052896-9c9b-4d0f-b2ef-6e9ab05704ff\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps2691\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/virtualNetworks/vnetcrptestps2691/subnets/subnetcrptestps2691\",\r\n \"etag\": \"W/\\\"a65db7af-c827-4886-9d3a-131f573a4425\\\"\",\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}", + "ResponseHeaders": { + "Content-Length": [ + "992" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "a473402a-cb1c-4a91-811a-f25423e9d3d9" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Network/locations/eastus/operations/a473402a-cb1c-4a91-811a-f25423e9d3d9?api-version=2015-06-15" + ], + "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": [ + "a4ac6da4-f269-42d9-9655-3d3cf5c0485b" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T151355Z:a4ac6da4-f269-42d9-9655-3d3cf5c0485b" + ], + "Date": [ + "Tue, 16 Feb 2016 15:13:54 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Network/locations/eastus/operations/a473402a-cb1c-4a91-811a-f25423e9d3d9?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTQ3MzQwMmEtY2IxYy00YTkxLTgxMWEtZjI1NDIzZTlkM2Q5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkManagementClient/3.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": [ + "9855aa1f-6763-4d16-bf8e-4eb8f09ab795" + ], + "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": [ + "14842" + ], + "x-ms-correlation-request-id": [ + "abd0218f-e555-46f7-ab71-6703209ec387" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T151406Z:abd0218f-e555-46f7-ab71-6703209ec387" + ], + "Date": [ + "Tue, 16 Feb 2016 15:14:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps2691?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzMjY5MT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a8441fd3-a3cb-456b-848f-c3b4ef97a11e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/pubipcrptestps2691' under resource group 'crptestps2691' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "171" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "263e8800-bf9b-4137-9eb2-815d3e098884" + ], + "x-ms-correlation-request-id": [ + "263e8800-bf9b-4137-9eb2-815d3e098884" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T151407Z:263e8800-bf9b-4137-9eb2-815d3e098884" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 15:14:06 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps2691?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzMjY5MT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps2691\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps2691\",\r\n \"etag\": \"W/\\\"f9d4a38a-7d78-48ed-9054-71b1db192337\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"32e660bf-aeea-4294-bd1b-ecdb3c7cadd8\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps2691\",\r\n \"fqdn\": \"pubipcrptestps2691.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "666" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "02a855e7-77fd-4eb7-9f1e-a7f433b7327f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"f9d4a38a-7d78-48ed-9054-71b1db192337\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14836" + ], + "x-ms-correlation-request-id": [ + "8887f184-3843-4be8-bc1d-c0fc9e244b24" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T151419Z:8887f184-3843-4be8-bc1d-c0fc9e244b24" + ], + "Date": [ + "Tue, 16 Feb 2016 15:14:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps2691?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzMjY5MT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "82770257-6286-440d-a03e-0dc8e290e0f4" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps2691\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps2691\",\r\n \"etag\": \"W/\\\"f9d4a38a-7d78-48ed-9054-71b1db192337\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"32e660bf-aeea-4294-bd1b-ecdb3c7cadd8\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps2691\",\r\n \"fqdn\": \"pubipcrptestps2691.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "666" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "05875093-8049-4b39-bfac-d20469c14225" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"f9d4a38a-7d78-48ed-9054-71b1db192337\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14835" + ], + "x-ms-correlation-request-id": [ + "00aa3ef2-5bdd-447d-9d6e-595220523624" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T151419Z:00aa3ef2-5bdd-447d-9d6e-595220523624" + ], + "Date": [ + "Tue, 16 Feb 2016 15:14:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps2691?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzMjY5MT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0711fea8-e936-4290-a1bc-c2f42c8d1c3a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps2691\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps2691\",\r\n \"etag\": \"W/\\\"f9d4a38a-7d78-48ed-9054-71b1db192337\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"32e660bf-aeea-4294-bd1b-ecdb3c7cadd8\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps2691\",\r\n \"fqdn\": \"pubipcrptestps2691.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "666" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "04cecc5c-1e10-4ac1-95c2-789c6e62cf51" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"f9d4a38a-7d78-48ed-9054-71b1db192337\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14834" + ], + "x-ms-correlation-request-id": [ + "c91f51ff-cd59-4fad-84aa-547becd68b5b" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T151419Z:c91f51ff-cd59-4fad-84aa-547becd68b5b" + ], + "Date": [ + "Tue, 16 Feb 2016 15:14:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps2691?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzMjY5MT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps2691\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "174" + ], + "x-ms-client-request-id": [ + "13150050-1e3f-48b6-80e4-4a351120d538" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps2691\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps2691\",\r\n \"etag\": \"W/\\\"503be1c5-1f7b-413c-b7f9-9815c3864988\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"32e660bf-aeea-4294-bd1b-ecdb3c7cadd8\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps2691\",\r\n \"fqdn\": \"pubipcrptestps2691.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "665" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "bc685989-e665-43bc-a05d-9d80d6ad5fdd" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Network/locations/eastus/operations/bc685989-e665-43bc-a05d-9d80d6ad5fdd?api-version=2015-06-15" + ], + "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": [ + "d6a4d3f7-9ad5-4800-98a3-53b2bf37b796" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T151408Z:d6a4d3f7-9ad5-4800-98a3-53b2bf37b796" + ], + "Date": [ + "Tue, 16 Feb 2016 15:14:07 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Network/locations/eastus/operations/bc685989-e665-43bc-a05d-9d80d6ad5fdd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYmM2ODU5ODktZTY2NS00M2JjLWEwNWQtOWQ4MGQ2YWQ1ZmRkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkManagementClient/3.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": [ + "901838fc-d8f2-45a3-a198-7e77fe743f39" + ], + "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": [ + "14837" + ], + "x-ms-correlation-request-id": [ + "1311cf8f-6f2f-4720-a950-0fe179be58bd" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T151418Z:1311cf8f-6f2f-4720-a950-0fe179be58bd" + ], + "Date": [ + "Tue, 16 Feb 2016 15:14:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/networkInterfaces/nic0crptestps2691?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzBjcnB0ZXN0cHMyNjkxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "24a0d83a-4668-45b5-8a75-19d4bdeb0988" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/nic0crptestps2691' under resource group 'crptestps2691' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "170" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "80cf63d7-9d17-4283-bae8-b4c26030bcf9" + ], + "x-ms-correlation-request-id": [ + "80cf63d7-9d17-4283-bae8-b4c26030bcf9" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T151419Z:80cf63d7-9d17-4283-bae8-b4c26030bcf9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 15:14:19 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/networkInterfaces/nic0crptestps2691?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzBjcnB0ZXN0cHMyNjkxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0588c80d-8641-4e3e-a321-9e4ea52be9b8" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"nic0crptestps2691\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/networkInterfaces/nic0crptestps2691\",\r\n \"etag\": \"W/\\\"5737d1f9-a306-493d-b40f-6100f06df517\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a0a24c03-d721-40ef-92ee-ebcbf3e570b3\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/networkInterfaces/nic0crptestps2691/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"5737d1f9-a306-493d-b40f-6100f06df517\\\"\",\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/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps2691\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/virtualNetworks/vnetcrptestps2691/subnets/subnetcrptestps2691\"\r\n },\r\n \"primary\": true\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1548" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "00c42ccb-c16b-4c00-b4ac-8922c76d38d9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"5737d1f9-a306-493d-b40f-6100f06df517\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14832" + ], + "x-ms-correlation-request-id": [ + "0d991e26-6a3a-4f3c-b89b-a262901ce7d5" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T151422Z:0d991e26-6a3a-4f3c-b89b-a262901ce7d5" + ], + "Date": [ + "Tue, 16 Feb 2016 15:14:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/networkInterfaces/nic0crptestps2691?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzBjcnB0ZXN0cHMyNjkxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "67089845-93e5-4be9-a258-cf4b7e64321c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"nic0crptestps2691\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/networkInterfaces/nic0crptestps2691\",\r\n \"etag\": \"W/\\\"5737d1f9-a306-493d-b40f-6100f06df517\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a0a24c03-d721-40ef-92ee-ebcbf3e570b3\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/networkInterfaces/nic0crptestps2691/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"5737d1f9-a306-493d-b40f-6100f06df517\\\"\",\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/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps2691\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/virtualNetworks/vnetcrptestps2691/subnets/subnetcrptestps2691\"\r\n },\r\n \"primary\": true\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1548" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "89f5e6a0-4072-48be-b074-044409c94dfb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"5737d1f9-a306-493d-b40f-6100f06df517\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14831" + ], + "x-ms-correlation-request-id": [ + "135f5a49-b90f-4731-b5b5-d546ea935925" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T151422Z:135f5a49-b90f-4731-b5b5-d546ea935925" + ], + "Date": [ + "Tue, 16 Feb 2016 15:14:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/networkInterfaces/nic0crptestps2691?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzBjcnB0ZXN0cHMyNjkxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"properties\": {\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": [],\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/virtualNetworks/vnetcrptestps2691/subnets/subnetcrptestps2691\",\r\n \"properties\": {\r\n \"ipConfigurations\": []\r\n }\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps2691\"\r\n }\r\n }\r\n }\r\n ],\r\n \"primary\": false,\r\n \"enableIPForwarding\": false\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "900" + ], + "x-ms-client-request-id": [ + "607da7d5-69b7-4164-b58c-30c48d3b3357" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"nic0crptestps2691\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/networkInterfaces/nic0crptestps2691\",\r\n \"etag\": \"W/\\\"5737d1f9-a306-493d-b40f-6100f06df517\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a0a24c03-d721-40ef-92ee-ebcbf3e570b3\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/networkInterfaces/nic0crptestps2691/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"5737d1f9-a306-493d-b40f-6100f06df517\\\"\",\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/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps2691\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/virtualNetworks/vnetcrptestps2691/subnets/subnetcrptestps2691\"\r\n },\r\n \"primary\": true\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1548" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d0a1240a-5736-40ad-95f3-97f141280296" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Network/locations/eastus/operations/d0a1240a-5736-40ad-95f3-97f141280296?api-version=2015-06-15" + ], + "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": [ + "9f9c60f4-b63c-4ac2-994c-e6c5f649a287" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T151421Z:9f9c60f4-b63c-4ac2-994c-e6c5f649a287" + ], + "Date": [ + "Tue, 16 Feb 2016 15:14:21 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Storage/storageAccounts/stocrptestps2691?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHMyNjkxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "89" + ], + "x-ms-client-request-id": [ + "b2bbfcd2-0740-439b-a538-5250b7632a46" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "25" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "f55da0a5-52eb-4545-9734-fb65e106d262" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Storage/operations/a952f0f3-f165-4ef0-a1fe-b614dcf0ed1a?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "f55da0a5-52eb-4545-9734-fb65e106d262" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T151424Z:f55da0a5-52eb-4545-9734-fb65e106d262" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Tue, 16 Feb 2016 15:14:24 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Storage/operations/a952f0f3-f165-4ef0-a1fe-b614dcf0ed1a?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2E5NTJmMGYzLWYxNjUtNGVmMC1hMWZlLWI2MTRkY2YwZWQxYT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8efe3173-f373-4d62-bb52-9fc198abee95" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "25" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14868" + ], + "x-ms-request-id": [ + "bf2d30ab-7349-4069-8a91-bc6e6626c13a" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Storage/operations/a952f0f3-f165-4ef0-a1fe-b614dcf0ed1a?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "bf2d30ab-7349-4069-8a91-bc6e6626c13a" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T151425Z:bf2d30ab-7349-4069-8a91-bc6e6626c13a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Tue, 16 Feb 2016 15:14:24 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Storage/operations/a952f0f3-f165-4ef0-a1fe-b614dcf0ed1a?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2E5NTJmMGYzLWYxNjUtNGVmMC1hMWZlLWI2MTRkY2YwZWQxYT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e1f0cf56-bc08-41c1-bf48-41e4f33087fc" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "89" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c585c5b9-bacd-4c54-815c-b0dd9cad0286" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14863" + ], + "x-ms-correlation-request-id": [ + "c585c5b9-bacd-4c54-815c-b0dd9cad0286" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T151450Z:c585c5b9-bacd-4c54-815c-b0dd9cad0286" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Tue, 16 Feb 2016 15:14:50 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Storage/storageAccounts/stocrptestps2691?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHMyNjkxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5c6d316a-8d71-4e3a-aae3-19f2f3ccc0f4" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Storage/storageAccounts/stocrptestps2691\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps2691\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T15:14:23.8540635Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps2691.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps2691.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps2691.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps2691.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "682" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e86f1116-30ae-4072-bc4c-2ac153dd21ce" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14862" + ], + "x-ms-correlation-request-id": [ + "e86f1116-30ae-4072-bc4c-2ac153dd21ce" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T151450Z:e86f1116-30ae-4072-bc4c-2ac153dd21ce" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Tue, 16 Feb 2016 15:14:50 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Storage/storageAccounts/stocrptestps2691?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHMyNjkxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e3f8b2cc-0e34-41b4-8417-e7499f05acb9" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Storage/storageAccounts/stocrptestps2691\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps2691\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T15:14:23.8540635Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps2691.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps2691.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps2691.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps2691.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "682" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f2ac0c0e-8671-4f5a-a01c-350cb002a58d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14861" + ], + "x-ms-correlation-request-id": [ + "f2ac0c0e-8671-4f5a-a01c-350cb002a58d" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T151450Z:f2ac0c0e-8671-4f5a-a01c-350cb002a58d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Tue, 16 Feb 2016 15:14:50 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Storage/storageAccounts/stocrptestps2691/listKeys?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHMyNjkxL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4df13c53-e5f4-4761-91c2-09a63b9f9c22" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"key1\": \"ksbyRlxAgqiyj0T6m8/jNJkzfJOUm+tYeTfeHuIPoAR8my4OeyDrwitpaMkzY3ldPO6fvGus0iW1r5Af4qhI0g==\",\r\n \"key2\": \"oEn0grvJggcQqt6He/c+seFg34c6Y6InSgtNCiOZnUFfhI3mH83d+9CfzhOhBKx1hoieO1vErk4PT+wEWmZmNA==\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "198" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "59ede576-8cb8-4909-8c56-5ad5b3e03192" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "59ede576-8cb8-4909-8c56-5ad5b3e03192" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T151451Z:59ede576-8cb8-4909-8c56-5ad5b3e03192" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Tue, 16 Feb 2016 15:14:50 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Storage/storageAccounts/stocrptestps2691/listKeys?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHMyNjkxL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "30d438e9-7c7d-4611-8d05-c9298f18d0a1" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"key1\": \"ksbyRlxAgqiyj0T6m8/jNJkzfJOUm+tYeTfeHuIPoAR8my4OeyDrwitpaMkzY3ldPO6fvGus0iW1r5Af4qhI0g==\",\r\n \"key2\": \"oEn0grvJggcQqt6He/c+seFg34c6Y6InSgtNCiOZnUFfhI3mH83d+9CfzhOhBKx1hoieO1vErk4PT+wEWmZmNA==\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "198" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "87e5e950-f56b-4f35-85f8-0cbb5acf8cb4" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "87e5e950-f56b-4f35-85f8-0cbb5acf8cb4" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T152336Z:87e5e950-f56b-4f35-85f8-0cbb5acf8cb4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Tue, 16 Feb 2016 15:23:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Storage/storageAccounts/stocrptestps2691/listKeys?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHMyNjkxL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e03bbd2d-b52e-43f7-989a-62d28ee10fb5" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"key1\": \"ksbyRlxAgqiyj0T6m8/jNJkzfJOUm+tYeTfeHuIPoAR8my4OeyDrwitpaMkzY3ldPO6fvGus0iW1r5Af4qhI0g==\",\r\n \"key2\": \"oEn0grvJggcQqt6He/c+seFg34c6Y6InSgtNCiOZnUFfhI3mH83d+9CfzhOhBKx1hoieO1vErk4PT+wEWmZmNA==\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "198" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e2634cab-9a40-459e-b14e-ccbfb280336d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "e2634cab-9a40-459e-b14e-ccbfb280336d" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T152338Z:e2634cab-9a40-459e-b14e-ccbfb280336d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Tue, 16 Feb 2016 15:23:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Storage/storageAccounts/stocrptestps2691/listKeys?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHMyNjkxL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f415fecd-5beb-41b3-afb2-5e965148d100" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"key1\": \"ksbyRlxAgqiyj0T6m8/jNJkzfJOUm+tYeTfeHuIPoAR8my4OeyDrwitpaMkzY3ldPO6fvGus0iW1r5Af4qhI0g==\",\r\n \"key2\": \"oEn0grvJggcQqt6He/c+seFg34c6Y6InSgtNCiOZnUFfhI3mH83d+9CfzhOhBKx1hoieO1vErk4PT+wEWmZmNA==\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "198" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "70474bd4-4ee5-459d-9608-e0c4e75c95d9" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "70474bd4-4ee5-459d-9608-e0c4e75c95d9" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T152919Z:70474bd4-4ee5-459d-9608-e0c4e75c95d9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Tue, 16 Feb 2016 15:29:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Storage/storageAccounts/stocrptestps2691/listKeys?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHMyNjkxL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e6fff645-906b-4b77-be57-edb3e93c259b" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"key1\": \"ksbyRlxAgqiyj0T6m8/jNJkzfJOUm+tYeTfeHuIPoAR8my4OeyDrwitpaMkzY3ldPO6fvGus0iW1r5Af4qhI0g==\",\r\n \"key2\": \"oEn0grvJggcQqt6He/c+seFg34c6Y6InSgtNCiOZnUFfhI3mH83d+9CfzhOhBKx1hoieO1vErk4PT+wEWmZmNA==\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "198" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "351004b4-cbbb-4b35-adf0-625209029580" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "351004b4-cbbb-4b35-adf0-625209029580" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T152952Z:351004b4-cbbb-4b35-adf0-625209029580" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Tue, 16 Feb 2016 15:29:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczI2OTE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East US\",\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\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2691.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 \"name\": \"testDataDisk1\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2691.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"Empty\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2691.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"Empty\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123crptestps2691\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true\r\n }\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/networkInterfaces/nic0crptestps2691\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1832" + ], + "x-ms-client-request-id": [ + "15f78c98-94a7-41db-b2fc-0f76452f2aaa" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"7dbdc860-a1bc-4dc5-8185-dd49fda78b4b\",\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\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2691.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2691.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2691.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/networkInterfaces/nic0crptestps2691\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691\",\r\n \"name\": \"vmcrptestps2691\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/b4e2f5c0-9075-4ae1-a3fe-de24c1a3d21e?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "b4e2f5c0-9075-4ae1-a3fe-de24c1a3d21e" + ], + "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": [ + "f4c3c3ad-6674-47d7-afd2-6b4dbb7f192c" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T151455Z:f4c3c3ad-6674-47d7-afd2-6b4dbb7f192c" + ], + "Date": [ + "Tue, 16 Feb 2016 15:14:54 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/b4e2f5c0-9075-4ae1-a3fe-de24c1a3d21e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjRlMmY1YzAtOTA3NS00YWUxLWEzZmUtZGUyNGMxYTNkMjFlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"b4e2f5c0-9075-4ae1-a3fe-de24c1a3d21e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T16:14:54.017645+01:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "140" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "81f9b131-c029-46c0-88cb-5f1784b786f4" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14836" + ], + "x-ms-correlation-request-id": [ + "81475012-b32c-44c4-a8ae-00ad669c97d4" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T151525Z:81475012-b32c-44c4-a8ae-00ad669c97d4" + ], + "Date": [ + "Tue, 16 Feb 2016 15:15:25 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/b4e2f5c0-9075-4ae1-a3fe-de24c1a3d21e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjRlMmY1YzAtOTA3NS00YWUxLWEzZmUtZGUyNGMxYTNkMjFlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"b4e2f5c0-9075-4ae1-a3fe-de24c1a3d21e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T16:14:54.017645+01:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "140" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "5ae38a97-d6a3-435e-bf2c-db689536bbd4" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14835" + ], + "x-ms-correlation-request-id": [ + "621c0f18-790a-446d-80f3-0f29e275c449" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T151555Z:621c0f18-790a-446d-80f3-0f29e275c449" + ], + "Date": [ + "Tue, 16 Feb 2016 15:15:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/b4e2f5c0-9075-4ae1-a3fe-de24c1a3d21e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjRlMmY1YzAtOTA3NS00YWUxLWEzZmUtZGUyNGMxYTNkMjFlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"b4e2f5c0-9075-4ae1-a3fe-de24c1a3d21e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T16:14:54.017645+01:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "140" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "c4b053f7-2049-40b5-bdb5-d0b4e94560fc" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14833" + ], + "x-ms-correlation-request-id": [ + "ceb3b277-7f0c-4462-9dfa-b45c9ac2223d" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T151625Z:ceb3b277-7f0c-4462-9dfa-b45c9ac2223d" + ], + "Date": [ + "Tue, 16 Feb 2016 15:16:25 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/b4e2f5c0-9075-4ae1-a3fe-de24c1a3d21e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjRlMmY1YzAtOTA3NS00YWUxLWEzZmUtZGUyNGMxYTNkMjFlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"b4e2f5c0-9075-4ae1-a3fe-de24c1a3d21e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T16:14:54.017645+01:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "140" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "8e3fd9ce-4ca1-4d2c-a2da-1d676dc1db3d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14832" + ], + "x-ms-correlation-request-id": [ + "f5a8c384-c10d-41fc-bd84-a738363283cf" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T151656Z:f5a8c384-c10d-41fc-bd84-a738363283cf" + ], + "Date": [ + "Tue, 16 Feb 2016 15:16:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/b4e2f5c0-9075-4ae1-a3fe-de24c1a3d21e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjRlMmY1YzAtOTA3NS00YWUxLWEzZmUtZGUyNGMxYTNkMjFlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"b4e2f5c0-9075-4ae1-a3fe-de24c1a3d21e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T16:14:54.017645+01:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "140" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "8110e068-282a-4f56-8c53-2d8a3370c872" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14830" + ], + "x-ms-correlation-request-id": [ + "9e7c716e-30d7-4415-85fa-cf7303862aae" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T151726Z:9e7c716e-30d7-4415-85fa-cf7303862aae" + ], + "Date": [ + "Tue, 16 Feb 2016 15:17:25 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/b4e2f5c0-9075-4ae1-a3fe-de24c1a3d21e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjRlMmY1YzAtOTA3NS00YWUxLWEzZmUtZGUyNGMxYTNkMjFlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"b4e2f5c0-9075-4ae1-a3fe-de24c1a3d21e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T16:14:54.017645+01:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "140" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "30e7e70d-0ab8-449d-b6c0-8ed08ba31c67" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14828" + ], + "x-ms-correlation-request-id": [ + "ab6e5383-a9db-4d3c-9fe3-8cf3ce815a2d" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T151756Z:ab6e5383-a9db-4d3c-9fe3-8cf3ce815a2d" + ], + "Date": [ + "Tue, 16 Feb 2016 15:17:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/b4e2f5c0-9075-4ae1-a3fe-de24c1a3d21e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjRlMmY1YzAtOTA3NS00YWUxLWEzZmUtZGUyNGMxYTNkMjFlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"b4e2f5c0-9075-4ae1-a3fe-de24c1a3d21e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T16:14:54.017645+01:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "140" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "4243fcf2-2402-4827-aabb-70c93825c028" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14826" + ], + "x-ms-correlation-request-id": [ + "95dd066a-9c1e-487d-b5b5-2569318c1575" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T151826Z:95dd066a-9c1e-487d-b5b5-2569318c1575" + ], + "Date": [ + "Tue, 16 Feb 2016 15:18:26 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/b4e2f5c0-9075-4ae1-a3fe-de24c1a3d21e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjRlMmY1YzAtOTA3NS00YWUxLWEzZmUtZGUyNGMxYTNkMjFlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"b4e2f5c0-9075-4ae1-a3fe-de24c1a3d21e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T16:14:54.017645+01:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "140" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "0299b8e7-546c-4566-98ac-971e74116a19" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14824" + ], + "x-ms-correlation-request-id": [ + "7a624384-f298-46b0-b13c-0ad166c1c4a7" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T151856Z:7a624384-f298-46b0-b13c-0ad166c1c4a7" + ], + "Date": [ + "Tue, 16 Feb 2016 15:18:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/b4e2f5c0-9075-4ae1-a3fe-de24c1a3d21e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjRlMmY1YzAtOTA3NS00YWUxLWEzZmUtZGUyNGMxYTNkMjFlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"b4e2f5c0-9075-4ae1-a3fe-de24c1a3d21e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T16:14:54.017645+01:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "140" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "0800a0f9-ea57-42f8-b576-edac839c7f32" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14816" + ], + "x-ms-correlation-request-id": [ + "fba9e5e7-acb1-40c6-b0f3-346ed0ec591b" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T151926Z:fba9e5e7-acb1-40c6-b0f3-346ed0ec591b" + ], + "Date": [ + "Tue, 16 Feb 2016 15:19:26 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/b4e2f5c0-9075-4ae1-a3fe-de24c1a3d21e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjRlMmY1YzAtOTA3NS00YWUxLWEzZmUtZGUyNGMxYTNkMjFlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"b4e2f5c0-9075-4ae1-a3fe-de24c1a3d21e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T16:14:54.017645+01:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "140" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "518cf776-7381-49e4-a7e9-dfe13c275501" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14813" + ], + "x-ms-correlation-request-id": [ + "34a3257e-30e7-402a-8471-741635fa4b06" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T151957Z:34a3257e-30e7-402a-8471-741635fa4b06" + ], + "Date": [ + "Tue, 16 Feb 2016 15:19:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/b4e2f5c0-9075-4ae1-a3fe-de24c1a3d21e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjRlMmY1YzAtOTA3NS00YWUxLWEzZmUtZGUyNGMxYTNkMjFlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"b4e2f5c0-9075-4ae1-a3fe-de24c1a3d21e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T16:14:54.017645+01:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "140" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "fc2cdf3b-2fca-42bd-ab29-2244f97cbd50" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14816" + ], + "x-ms-correlation-request-id": [ + "84863f03-f084-4ba5-8840-db1fcdf8dbc6" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T152027Z:84863f03-f084-4ba5-8840-db1fcdf8dbc6" + ], + "Date": [ + "Tue, 16 Feb 2016 15:20:26 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/b4e2f5c0-9075-4ae1-a3fe-de24c1a3d21e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjRlMmY1YzAtOTA3NS00YWUxLWEzZmUtZGUyNGMxYTNkMjFlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"b4e2f5c0-9075-4ae1-a3fe-de24c1a3d21e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T16:14:54.017645+01:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "140" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "477aa92f-3b79-4088-9f5f-ca64fd178854" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14813" + ], + "x-ms-correlation-request-id": [ + "fd127be8-71ed-4ec7-a1b4-5e5285b4ce1a" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T152057Z:fd127be8-71ed-4ec7-a1b4-5e5285b4ce1a" + ], + "Date": [ + "Tue, 16 Feb 2016 15:20:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/b4e2f5c0-9075-4ae1-a3fe-de24c1a3d21e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjRlMmY1YzAtOTA3NS00YWUxLWEzZmUtZGUyNGMxYTNkMjFlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"b4e2f5c0-9075-4ae1-a3fe-de24c1a3d21e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T16:14:54.017645+01:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "140" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "258bb458-0bef-45c9-a6db-11eba30a4685" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14808" + ], + "x-ms-correlation-request-id": [ + "47f50cc6-a08a-4f03-a72e-b243782fec9b" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T152127Z:47f50cc6-a08a-4f03-a72e-b243782fec9b" + ], + "Date": [ + "Tue, 16 Feb 2016 15:21:26 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/b4e2f5c0-9075-4ae1-a3fe-de24c1a3d21e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjRlMmY1YzAtOTA3NS00YWUxLWEzZmUtZGUyNGMxYTNkMjFlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"b4e2f5c0-9075-4ae1-a3fe-de24c1a3d21e\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-02-16T16:14:54.017645+01:00\",\r\n \"endTime\": \"2016-02-16T16:21:50.671231+01: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-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "fea66346-dd22-41ef-ba83-c48cdfb7f830" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14805" + ], + "x-ms-correlation-request-id": [ + "44b3d4a1-c209-4e46-8a8e-b9ff2523d754" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T152157Z:44b3d4a1-c209-4e46-8a8e-b9ff2523d754" + ], + "Date": [ + "Tue, 16 Feb 2016 15:21:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczI2OTE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"7dbdc860-a1bc-4dc5-8185-dd49fda78b4b\",\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\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2691.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2691.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2691.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/networkInterfaces/nic0crptestps2691\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691\",\r\n \"name\": \"vmcrptestps2691\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2103" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "b306cd01-55b3-47fd-a9c6-28cac6634ef0" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14804" + ], + "x-ms-correlation-request-id": [ + "c2db5cf4-f473-45b9-ac46-f5ab39e6a485" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T152157Z:c2db5cf4-f473-45b9-ac46-f5ab39e6a485" + ], + "Date": [ + "Tue, 16 Feb 2016 15:21:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczI2OTE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e4fda424-ce7e-4d8e-9c23-f222543fd420" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"7dbdc860-a1bc-4dc5-8185-dd49fda78b4b\",\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\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2691.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2691.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2691.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/networkInterfaces/nic0crptestps2691\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\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\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691/extensions/BGInfo\",\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691\",\r\n \"name\": \"vmcrptestps2691\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2657" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "a3595c3e-68e4-467d-b9d2-2dc47af1b2c6" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14790" + ], + "x-ms-correlation-request-id": [ + "3014fac3-f5ba-46de-b450-3b96520fc914" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T152334Z:3014fac3-f5ba-46de-b450-3b96520fc914" + ], + "Date": [ + "Tue, 16 Feb 2016 15:23:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczI2OTE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d6078a9b-6ff9-4776-8f8f-50c83ff1cfd2" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"7dbdc860-a1bc-4dc5-8185-dd49fda78b4b\",\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\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2691.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2691.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2691.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/networkInterfaces/nic0crptestps2691\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\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\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691/extensions/BGInfo\",\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691\",\r\n \"name\": \"vmcrptestps2691\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2657" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "9393a934-aaac-4124-80ef-60459b95f575" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14789" + ], + "x-ms-correlation-request-id": [ + "5207e109-887d-40a3-abf7-dfc3ee1c4246" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T152334Z:5207e109-887d-40a3-abf7-dfc3ee1c4246" + ], + "Date": [ + "Tue, 16 Feb 2016 15:23:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczI2OTE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3a4a95ea-7b13-4b79-a5cb-019849226231" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"7dbdc860-a1bc-4dc5-8185-dd49fda78b4b\",\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\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2691.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2691.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2691.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/networkInterfaces/nic0crptestps2691\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\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\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691/extensions/BGInfo\",\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691\",\r\n \"name\": \"vmcrptestps2691\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2657" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "9c6eb407-cc84-4e8e-a76b-67d0de958c79" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14788" + ], + "x-ms-correlation-request-id": [ + "d7530e8e-3bd9-4c68-be26-07277bf4d65f" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T152334Z:d7530e8e-3bd9-4c68-be26-07277bf4d65f" + ], + "Date": [ + "Tue, 16 Feb 2016 15:23:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczI2OTE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2b9c5eae-fbbe-4dd6-9c57-08be444efab7" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"7dbdc860-a1bc-4dc5-8185-dd49fda78b4b\",\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\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2691.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2691.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2691.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/networkInterfaces/nic0crptestps2691\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\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\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691/extensions/BGInfo\",\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691\",\r\n \"name\": \"vmcrptestps2691\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2657" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "f47b2393-e783-421b-a1ee-e07c05f88109" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14786" + ], + "x-ms-correlation-request-id": [ + "35018ac4-8372-4e55-b22d-03b4cecff61a" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T152337Z:35018ac4-8372-4e55-b22d-03b4cecff61a" + ], + "Date": [ + "Tue, 16 Feb 2016 15:23:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczI2OTE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "58cd02bf-86d8-4655-a236-eeb8576a03d0" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"7dbdc860-a1bc-4dc5-8185-dd49fda78b4b\",\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\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2691.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2691.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2691.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/networkInterfaces/nic0crptestps2691\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\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\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691/extensions/BGInfo\",\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Azure.Diagnostics\",\r\n \"type\": \"IaaSDiagnostics\",\r\n \"typeHandlerVersion\": \"1.5\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yKF9Ub3RhbClcJSBQcm9jZXNzb3IgVGltZSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yIEluZm9ybWF0aW9uKF9Ub3RhbClcUHJvY2Vzc29yIEZyZXF1ZW5jeSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XEF2YWlsYWJsZSBCeXRlcyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcVENQdjZcU2VnbWVudHMgUmV0cmFuc21pdHRlZC9zZWMiIHNhbXBsZVJhdGU9IlBUMU0iIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFRDUHY0XFNlZ21lbnRzIFJldHJhbnNtaXR0ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrIEludGVyZmFjZSgqKVxCeXRlcyBTZW50L3NlYyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29yayBJbnRlcmZhY2UoKilcQnl0ZXMgUmVjZWl2ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691/extensions/IaaSDiagnostics\",\r\n \"name\": \"IaaSDiagnostics\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691\",\r\n \"name\": \"vmcrptestps2691\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "4518" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "5e8b435b-e449-4712-9107-561efe40b7d6" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14780" + ], + "x-ms-correlation-request-id": [ + "9092550a-8d1a-46db-88fe-41aa5fa27563" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T152615Z:9092550a-8d1a-46db-88fe-41aa5fa27563" + ], + "Date": [ + "Tue, 16 Feb 2016 15:26:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczI2OTE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fbff749c-981b-46de-ba96-4e64e5794086" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"7dbdc860-a1bc-4dc5-8185-dd49fda78b4b\",\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\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2691.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2691.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2691.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/networkInterfaces/nic0crptestps2691\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"type\": \"AzureCATExtensionHandler\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_A2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"osdisk.connminute\",\r\n \"value\": \"stocrptestps2691.minute\"\r\n },\r\n {\r\n \"key\": \"osdisk.connhour\",\r\n \"value\": \"stocrptestps2691.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.1\",\r\n \"value\": \"stocrptestps2691.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.1\",\r\n \"value\": \"stocrptestps2691.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.2\",\r\n \"value\": \"stocrptestps2691.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.2\",\r\n \"value\": \"stocrptestps2691.hour\"\r\n },\r\n {\r\n \"key\": \"stocrptestps2691.hour.uri\",\r\n \"value\": \"https://stocrptestps2691.table.core.windows.net/$MetricsHourPrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps2691.minute.uri\",\r\n \"value\": \"https://stocrptestps2691.table.core.windows.net/$MetricsMinutePrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps2691.hour.name\",\r\n \"value\": \"stocrptestps2691\"\r\n },\r\n {\r\n \"key\": \"stocrptestps2691.minute.name\",\r\n \"value\": \"stocrptestps2691\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps2691\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps2691.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691/extensions/AzureCATExtensionHandler\",\r\n \"name\": \"AzureCATExtensionHandler\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691/extensions/BGInfo\",\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Azure.Diagnostics\",\r\n \"type\": \"IaaSDiagnostics\",\r\n \"typeHandlerVersion\": \"1.5\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yKF9Ub3RhbClcJSBQcm9jZXNzb3IgVGltZSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yIEluZm9ybWF0aW9uKF9Ub3RhbClcUHJvY2Vzc29yIEZyZXF1ZW5jeSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XEF2YWlsYWJsZSBCeXRlcyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcVENQdjZcU2VnbWVudHMgUmV0cmFuc21pdHRlZC9zZWMiIHNhbXBsZVJhdGU9IlBUMU0iIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFRDUHY0XFNlZ21lbnRzIFJldHJhbnNtaXR0ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrIEludGVyZmFjZSgqKVxCeXRlcyBTZW50L3NlYyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29yayBJbnRlcmZhY2UoKilcQnl0ZXMgUmVjZWl2ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691/extensions/IaaSDiagnostics\",\r\n \"name\": \"IaaSDiagnostics\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691\",\r\n \"name\": \"vmcrptestps2691\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "6804" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "7a6221af-66bb-40f8-9f15-3eb4e776700a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14765" + ], + "x-ms-correlation-request-id": [ + "374b66c3-53fc-4890-b018-acd1f786b0bd" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T152919Z:374b66c3-53fc-4890-b018-acd1f786b0bd" + ], + "Date": [ + "Tue, 16 Feb 2016 15:29:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczI2OTE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cecaaf3a-b691-4a56-8d8e-c005dc5e3234" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"7dbdc860-a1bc-4dc5-8185-dd49fda78b4b\",\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\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2691.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2691.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2691.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/networkInterfaces/nic0crptestps2691\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"type\": \"AzureCATExtensionHandler\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_A2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"osdisk.connminute\",\r\n \"value\": \"stocrptestps2691.minute\"\r\n },\r\n {\r\n \"key\": \"osdisk.connhour\",\r\n \"value\": \"stocrptestps2691.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.1\",\r\n \"value\": \"stocrptestps2691.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.1\",\r\n \"value\": \"stocrptestps2691.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.2\",\r\n \"value\": \"stocrptestps2691.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.2\",\r\n \"value\": \"stocrptestps2691.hour\"\r\n },\r\n {\r\n \"key\": \"stocrptestps2691.hour.uri\",\r\n \"value\": \"https://stocrptestps2691.table.core.windows.net/$MetricsHourPrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps2691.minute.uri\",\r\n \"value\": \"https://stocrptestps2691.table.core.windows.net/$MetricsMinutePrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps2691.hour.name\",\r\n \"value\": \"stocrptestps2691\"\r\n },\r\n {\r\n \"key\": \"stocrptestps2691.minute.name\",\r\n \"value\": \"stocrptestps2691\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps2691\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps2691.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691/extensions/AzureCATExtensionHandler\",\r\n \"name\": \"AzureCATExtensionHandler\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691/extensions/BGInfo\",\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Azure.Diagnostics\",\r\n \"type\": \"IaaSDiagnostics\",\r\n \"typeHandlerVersion\": \"1.5\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yKF9Ub3RhbClcJSBQcm9jZXNzb3IgVGltZSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yIEluZm9ybWF0aW9uKF9Ub3RhbClcUHJvY2Vzc29yIEZyZXF1ZW5jeSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XEF2YWlsYWJsZSBCeXRlcyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcVENQdjZcU2VnbWVudHMgUmV0cmFuc21pdHRlZC9zZWMiIHNhbXBsZVJhdGU9IlBUMU0iIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFRDUHY0XFNlZ21lbnRzIFJldHJhbnNtaXR0ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrIEludGVyZmFjZSgqKVxCeXRlcyBTZW50L3NlYyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29yayBJbnRlcmZhY2UoKilcQnl0ZXMgUmVjZWl2ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691/extensions/IaaSDiagnostics\",\r\n \"name\": \"IaaSDiagnostics\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691\",\r\n \"name\": \"vmcrptestps2691\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "6804" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "50a4a9f9-3a95-42b7-b2a4-b734c6f4f42c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14761" + ], + "x-ms-correlation-request-id": [ + "c7d48d4b-5565-4433-af0d-da6f17e2e96b" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T152951Z:c7d48d4b-5565-4433-af0d-da6f17e2e96b" + ], + "Date": [ + "Tue, 16 Feb 2016 15:29:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczI2OTE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e56890e7-b209-4c2f-b606-000318af1c7b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"7dbdc860-a1bc-4dc5-8185-dd49fda78b4b\",\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\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2691.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2691.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2691.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/networkInterfaces/nic0crptestps2691\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"type\": \"AzureCATExtensionHandler\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_A2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"osdisk.connminute\",\r\n \"value\": \"stocrptestps2691.minute\"\r\n },\r\n {\r\n \"key\": \"osdisk.connhour\",\r\n \"value\": \"stocrptestps2691.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.1\",\r\n \"value\": \"stocrptestps2691.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.1\",\r\n \"value\": \"stocrptestps2691.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.2\",\r\n \"value\": \"stocrptestps2691.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.2\",\r\n \"value\": \"stocrptestps2691.hour\"\r\n },\r\n {\r\n \"key\": \"stocrptestps2691.hour.uri\",\r\n \"value\": \"https://stocrptestps2691.table.core.windows.net/$MetricsHourPrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps2691.minute.uri\",\r\n \"value\": \"https://stocrptestps2691.table.core.windows.net/$MetricsMinutePrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps2691.hour.name\",\r\n \"value\": \"stocrptestps2691\"\r\n },\r\n {\r\n \"key\": \"stocrptestps2691.minute.name\",\r\n \"value\": \"stocrptestps2691\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps2691\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps2691.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691/extensions/AzureCATExtensionHandler\",\r\n \"name\": \"AzureCATExtensionHandler\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691/extensions/BGInfo\",\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Azure.Diagnostics\",\r\n \"type\": \"IaaSDiagnostics\",\r\n \"typeHandlerVersion\": \"1.5\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yKF9Ub3RhbClcJSBQcm9jZXNzb3IgVGltZSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yIEluZm9ybWF0aW9uKF9Ub3RhbClcUHJvY2Vzc29yIEZyZXF1ZW5jeSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XEF2YWlsYWJsZSBCeXRlcyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcVENQdjZcU2VnbWVudHMgUmV0cmFuc21pdHRlZC9zZWMiIHNhbXBsZVJhdGU9IlBUMU0iIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFRDUHY0XFNlZ21lbnRzIFJldHJhbnNtaXR0ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrIEludGVyZmFjZSgqKVxCeXRlcyBTZW50L3NlYyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29yayBJbnRlcmZhY2UoKilcQnl0ZXMgUmVjZWl2ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691/extensions/IaaSDiagnostics\",\r\n \"name\": \"IaaSDiagnostics\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691\",\r\n \"name\": \"vmcrptestps2691\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "6804" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "39059582-b208-4676-8bef-da28d0ee5934" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14793" + ], + "x-ms-correlation-request-id": [ + "b0d69ff7-7d14-4abf-b810-da6b83a31f2b" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T160124Z:b0d69ff7-7d14-4abf-b810-da6b83a31f2b" + ], + "Date": [ + "Tue, 16 Feb 2016 16:01:23 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczI2OTE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "196fb6c8-b10e-40d8-979f-57608644bf9f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"7dbdc860-a1bc-4dc5-8185-dd49fda78b4b\",\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\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2691.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2691.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2691.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/networkInterfaces/nic0crptestps2691\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\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\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691/extensions/BGInfo\",\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Azure.Diagnostics\",\r\n \"type\": \"IaaSDiagnostics\",\r\n \"typeHandlerVersion\": \"1.5\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yKF9Ub3RhbClcJSBQcm9jZXNzb3IgVGltZSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yIEluZm9ybWF0aW9uKF9Ub3RhbClcUHJvY2Vzc29yIEZyZXF1ZW5jeSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XEF2YWlsYWJsZSBCeXRlcyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcVENQdjZcU2VnbWVudHMgUmV0cmFuc21pdHRlZC9zZWMiIHNhbXBsZVJhdGU9IlBUMU0iIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFRDUHY0XFNlZ21lbnRzIFJldHJhbnNtaXR0ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrIEludGVyZmFjZSgqKVxCeXRlcyBTZW50L3NlYyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29yayBJbnRlcmZhY2UoKilcQnl0ZXMgUmVjZWl2ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691/extensions/IaaSDiagnostics\",\r\n \"name\": \"IaaSDiagnostics\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691\",\r\n \"name\": \"vmcrptestps2691\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "4518" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "6409e8e2-66c6-4a08-9197-d05738c6e2f0" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14787" + ], + "x-ms-correlation-request-id": [ + "1c8701e0-2e23-4d60-ac30-872f6484f357" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T160225Z:1c8701e0-2e23-4d60-ac30-872f6484f357" + ], + "Date": [ + "Tue, 16 Feb 2016 16:02:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/publishers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3b272547-2ea1-4909-a258-6e30738850b5" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4ward365\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/4ward365\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"active-navigation\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/active-navigation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"adam-software\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/adam-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"adatao\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/adatao\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"adobe\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/adobe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"adobe_test\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/adobe_test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"adra-match\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/adra-match\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aimsinnovation\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/aimsinnovation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"algebraix-data\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/algebraix-data\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alteryx\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/alteryx\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"altiar\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/altiar\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appcelerator\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/appcelerator\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appcitoinc\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/appcitoinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"apprenda\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/apprenda\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appveyorci\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/appveyorci\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appzero\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/appzero\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"array_networks\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/array_networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aspex-managed-cloud\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/aspex-managed-cloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"avepoint\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/avepoint\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aviatrix-systems\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/aviatrix-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"axway\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/axway\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azuresyncfusion\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/azuresyncfusion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bizagi\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/bizagi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"biztalk360\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/biztalk360\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blackberry\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/blackberry\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"boundlessgeo\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/boundlessgeo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"brocade_communications\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/brocade_communications\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bwappengine\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/bwappengine\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"caringo\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/caringo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cautelalabs\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/cautelalabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"checkpointsystems\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/checkpointsystems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cherwell\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/cherwell\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cisco\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/cisco\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"citrix\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/citrix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"clickberry\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/clickberry\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloud-cruiser\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloud-cruiser\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudbolt-software\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudbolt-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudera1qaz2wsx\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudera1qaz2wsx\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudhouse\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudhouse\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"CloudLinkEMC.SecureVM.Test\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/CloudLinkEMC.SecureVM.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Confer.TestSensor\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Confer.TestSensor\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"consensys\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/consensys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cordis\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/cordis\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cortical-io\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/cortical-io\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"credativ\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/credativ\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Dans.Windows.App\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Dans.Windows.App\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Dans2.Windows.App\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Dans2.Windows.App\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Dans3.Windows.App\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Dans3.Windows.App\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datacastle\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/datacastle\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dataexpeditioninc\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/dataexpeditioninc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dataiku\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/dataiku\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dataliberation\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/dataliberation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datasunrise\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/datasunrise\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"defacto_global_\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/defacto_global_\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dell-software\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/dell-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"denyall\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/denyall\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"docscorp-us\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/docscorp-us\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dolbydeveloper\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/dolbydeveloper\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dome9\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/dome9\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"donovapub\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/donovapub\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"easyterritory\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/easyterritory\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"edevtech\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/edevtech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"egress\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/egress\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eip\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/eip\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eip-eipower\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/eip-eipower\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elastacloud\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/elastacloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eloquera\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/eloquera\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eperi\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/eperi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ESET.FileSecurity\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/ESET.FileSecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eurotech\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/eurotech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"exit-games\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/exit-games\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"expertime\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/expertime\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"filebridge\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/filebridge\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"flexerasoftware\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/flexerasoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"forscene\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/forscene\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fortycloud\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/fortycloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fw\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/fw\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"g-data-software\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/g-data-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"greathorn\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/greathorn\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"haivision\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/haivision\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"halobicloud\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/halobicloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iamcloud\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/iamcloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ibabs-eu\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/ibabs-eu\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"imaginecommunications\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/imaginecommunications\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"imc\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/imc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"imperva\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/imperva\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"incredibuild\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/incredibuild\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"informatica\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/informatica\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infostrat\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/infostrat\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intel\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/intel\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ishlangu-load-balancer-adc\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/ishlangu-load-balancer-adc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jedox\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/jedox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jitterbit_integration\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/jitterbit_integration\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kepion\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/kepion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kollective\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/kollective\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"le\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/le\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lieberlieber\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/lieberlieber\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"LocalTest.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/LocalTest.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"logi-analytics\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/logi-analytics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"loginpeople\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/loginpeople\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"luxoft\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/luxoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"magelia\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/magelia\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"manageengine\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/manageengine\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mariadb\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/mariadb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mediazenie\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/mediazenie\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"memsql\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/memsql\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mendix\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/mendix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mentalnotes\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/mentalnotes\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mesosphere\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/mesosphere\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-ads\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-ads\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-r-products\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-r-products\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.Internal\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.Internal\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Test\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.SiteRecovery.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.OSTCExtensions.Test\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.OSTCExtensions.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Install\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Install\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Internal\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Internal\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.PaaS\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.PaaS\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Preview\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Preview\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Telemetry\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Telemetry\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Test.0\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Test.0\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Test.1\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Test.1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Test0\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Test0\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Test2\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Test2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Test3\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Test3\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.UtcTest\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.UtcTest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Wmf\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Wmf\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Wmf4Test\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Wmf4Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Wmf5\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Wmf5\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.ETWTraceListenerService\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.Azure.ETWTraceListenerService\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.ServiceProfiler\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.ServiceProfiler\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.ServiceProfiler.Test\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.ServiceProfiler.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftWindowsServerRemoteDesktop\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerRemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"miracl_linux\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/miracl_linux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mokxa-technologies\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/mokxa-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nasuni\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/nasuni\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"new-signature\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/new-signature\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nextlimit\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/nextlimit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nexus\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/nexus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nuxeo\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/nuxeo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"officeclipsuite\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/officeclipsuite\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"op5\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/op5\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"openmeap\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/openmeap\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"opennebulasystems\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/opennebulasystems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"opentext\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/opentext\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"panzura-file-system\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/panzura-file-system\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pointmatter\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/pointmatter\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"predictionio\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/predictionio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"predixion\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/predixion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"prime-strategy\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/prime-strategy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"primestream\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/primestream\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ptv_group\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/ptv_group\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pxlag_swiss\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/pxlag_swiss\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"quasardb\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/quasardb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"RedHat\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/RedHat\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rocketsoftware\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/rocketsoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rocket_software\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/rocket_software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"saama\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/saama\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scalebase\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/scalebase\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"searchblox\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/searchblox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sensorberg\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/sensorberg\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"servoy\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/servoy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"shavlik\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/shavlik\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"snip2code\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/snip2code\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stonefly\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/stonefly\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"storreduce\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/storreduce\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stratalux\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/stratalux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sunview-software\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/sunview-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"talon\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/talon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tentity\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/tentity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.HP.AppDefender\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.HP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity2\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.TrendMicro.DeepSecurity2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity3\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.TrendMicro.DeepSecurity3\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test1.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test1.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thinkboxsoftware\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/thinkboxsoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"topdesk\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/topdesk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test2\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/TrendMicro.DeepSecurity.Test2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unidesk\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/unidesk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unidesk-corp\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/unidesk-corp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vbot\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/vbot\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vecompsoftware\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/vecompsoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vircom\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/vircom\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"virtualworks\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/virtualworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vmturbo\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/vmturbo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Vormetric.VormetricTransparentEncryption\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Vormetric.VormetricTransparentEncryption\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"WAD-VMSS.Test\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/WAD-VMSS.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"WAD2AI.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/WAD2AI.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"WADVMSS.Test\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/WADVMSS.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"waratek\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/waratek\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"warewolf-esb\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/warewolf-esb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"watchfulsoftware\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/watchfulsoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xebialabs\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/xebialabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xmpro\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/xmpro\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xrm\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/xrm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zementis\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/zementis\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/zend\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zoomdata\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/zoomdata\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "75349" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3b77b967-2194-460d-b328-5df2c8a7d998" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14803" + ], + "x-ms-correlation-request-id": [ + "a2215dab-6a9b-4a4c-ae8d-b4542040058a" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T152158Z:a2215dab-6a9b-4a4c-ae8d-b4542040058a" + ], + "Date": [ + "Tue, 16 Feb 2016 15:21:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4b822928-28c4-45cb-a1d3-3c8d4051524d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"CustomScriptExtension\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"JsonADDomainExtension\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/JsonADDomainExtension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"VMAccessAgent\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "1033" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d2f83ac8-b3ff-47af-8b26-00e4cfcc221b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14802" + ], + "x-ms-correlation-request-id": [ + "de965209-1e2b-46e2-abf0-1a7d0276fe6f" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T152158Z:de965209-1e2b-46e2-abf0-1a7d0276fe6f" + ], + "Date": [ + "Tue, 16 Feb 2016 15:21:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/BGInfo/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9CR0luZm8vdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b0ba4761-3515-4b76-9e96-e184c923bada" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"name\": \"2.1\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/2.1\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "252" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f84f2647-40da-4742-a04d-a2a2471c79eb" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14801" + ], + "x-ms-correlation-request-id": [ + "12e45275-863d-46e6-8b81-3e428faab2ed" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T152158Z:12e45275-863d-46e6-8b81-3e428faab2ed" + ], + "Date": [ + "Tue, 16 Feb 2016 15:21:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691/extensions/BGInfo?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczI2OTEvZXh0ZW5zaW9ucy9CR0luZm8/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "187" + ], + "x-ms-client-request-id": [ + "28c792c2-6903-4bd3-9ce2-76e61c8b7a92" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691/extensions/BGInfo\",\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "475" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/7a26e0f5-a2a5-4833-83d7-4c730bb441da?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "7a26e0f5-a2a5-4833-83d7-4c730bb441da" + ], + "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": [ + "5a6aeb1b-73e5-4e55-a786-a4750d90228a" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T152203Z:5a6aeb1b-73e5-4e55-a786-a4750d90228a" + ], + "Date": [ + "Tue, 16 Feb 2016 15:22:03 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/7a26e0f5-a2a5-4833-83d7-4c730bb441da?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvN2EyNmUwZjUtYTJhNS00ODMzLTgzZDctNGM3MzBiYjQ0MWRhP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"7a26e0f5-a2a5-4833-83d7-4c730bb441da\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T16:22:01.1399099+01: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-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "463a924e-6e8d-4cd3-bd9e-9b31f6517648" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14797" + ], + "x-ms-correlation-request-id": [ + "bc55c2b8-1335-41ed-9755-7af4236aca48" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T152233Z:bc55c2b8-1335-41ed-9755-7af4236aca48" + ], + "Date": [ + "Tue, 16 Feb 2016 15:22:33 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/7a26e0f5-a2a5-4833-83d7-4c730bb441da?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvN2EyNmUwZjUtYTJhNS00ODMzLTgzZDctNGM3MzBiYjQ0MWRhP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"7a26e0f5-a2a5-4833-83d7-4c730bb441da\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T16:22:01.1399099+01: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-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "ee151cbe-536a-4f00-ad62-f891d4138597" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14795" + ], + "x-ms-correlation-request-id": [ + "b3f7032b-f1e7-4a75-9e72-49af581477d5" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T152303Z:b3f7032b-f1e7-4a75-9e72-49af581477d5" + ], + "Date": [ + "Tue, 16 Feb 2016 15:23:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/7a26e0f5-a2a5-4833-83d7-4c730bb441da?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvN2EyNmUwZjUtYTJhNS00ODMzLTgzZDctNGM3MzBiYjQ0MWRhP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"7a26e0f5-a2a5-4833-83d7-4c730bb441da\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-02-16T16:22:01.1399099+01:00\",\r\n \"endTime\": \"2016-02-16T16:23:21.7175127+01: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-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "2a1d6573-ea96-4906-8766-4c64f527950d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14792" + ], + "x-ms-correlation-request-id": [ + "62712e0c-06fb-4f1f-a881-45143cff9f87" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T152333Z:62712e0c-06fb-4f1f-a881-45143cff9f87" + ], + "Date": [ + "Tue, 16 Feb 2016 15:23:33 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691/extensions/BGInfo?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczI2OTEvZXh0ZW5zaW9ucy9CR0luZm8/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691/extensions/BGInfo\",\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "476" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "15243d60-969e-43a5-9f1e-92a6e14b5a5a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14791" + ], + "x-ms-correlation-request-id": [ + "f4694034-7eeb-4597-ab99-1fe1011efa53" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T152334Z:f4694034-7eeb-4597-ab99-1fe1011efa53" + ], + "Date": [ + "Tue, 16 Feb 2016 15:23:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691?$expand=instanceView&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczI2OTE/JGV4cGFuZD1pbnN0YW5jZVZpZXcmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "afadc78c-2d0e-4133-99df-c2846ec77a81" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"7dbdc860-a1bc-4dc5-8185-dd49fda78b4b\",\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\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2691.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2691.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2691.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/networkInterfaces/nic0crptestps2691\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.7.1198.735\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"GuestAgent is running and accepting new configurations.\",\r\n \"time\": \"2016-02-16T16:23:34+01:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": [\r\n {\r\n \"type\": \"Microsoft.Compute.BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"Plugin enabled (name: Microsoft.Compute.BGInfo, version: 2.1).\"\r\n }\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"osDisk\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T16:22:01.5618017+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T16:22:01.6867815+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T16:22:01.6867815+01:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"extensions\": [\r\n {\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute.BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"Plugin enabled (name: Microsoft.Compute.BGInfo, version: 2.1).\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T16:23:21.6550201+01:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691/extensions/BGInfo\",\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691\",\r\n \"name\": \"vmcrptestps2691\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "5349" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "fa7e22c6-6bac-40fe-8704-f925d1f4ce4c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14787" + ], + "x-ms-correlation-request-id": [ + "6045a23b-15d2-4b2c-bb3d-e495b5914db6" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T152335Z:6045a23b-15d2-4b2c-bb3d-e495b5914db6" + ], + "Date": [ + "Tue, 16 Feb 2016 15:23:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691?$expand=instanceView&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczI2OTE/JGV4cGFuZD1pbnN0YW5jZVZpZXcmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5619b38f-dbd1-4d31-b0d1-213bef736188" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"7dbdc860-a1bc-4dc5-8185-dd49fda78b4b\",\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\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2691.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2691.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2691.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/networkInterfaces/nic0crptestps2691\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.7.1198.735\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"GuestAgent is running and accepting new configurations.\",\r\n \"time\": \"2016-02-16T16:23:34+01:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": [\r\n {\r\n \"type\": \"Microsoft.Compute.BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"Plugin enabled (name: Microsoft.Compute.BGInfo, version: 2.1).\"\r\n }\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"osDisk\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T16:22:01.5618017+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T16:22:01.6867815+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T16:22:01.6867815+01:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"extensions\": [\r\n {\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute.BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"Plugin enabled (name: Microsoft.Compute.BGInfo, version: 2.1).\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T16:23:21.6550201+01:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691/extensions/BGInfo\",\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691\",\r\n \"name\": \"vmcrptestps2691\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "5349" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "a8fb785b-a625-44bb-bd22-f2a1efeba9fa" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14785" + ], + "x-ms-correlation-request-id": [ + "0b623519-ddd2-4d57-9200-e49a3299fb01" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T152337Z:0b623519-ddd2-4d57-9200-e49a3299fb01" + ], + "Date": [ + "Tue, 16 Feb 2016 15:23:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691?$expand=instanceView&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczI2OTE/JGV4cGFuZD1pbnN0YW5jZVZpZXcmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3bef5790-c3b9-44c9-aefa-4bea5d10c185" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"7dbdc860-a1bc-4dc5-8185-dd49fda78b4b\",\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\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2691.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2691.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2691.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/networkInterfaces/nic0crptestps2691\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.7.1198.735\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"GuestAgent is running and accepting new configurations.\",\r\n \"time\": \"2016-02-16T16:29:45+01:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": [\r\n {\r\n \"type\": \"Microsoft.Azure.Diagnostics.IaaSDiagnostics\",\r\n \"typeHandlerVersion\": \"1.5.8.0\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"Diagnostics extension running\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring.AzureCATExtensionHandler\",\r\n \"typeHandlerVersion\": \"2.2.0.68\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Compute.BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"Plugin enabled (name: Microsoft.Compute.BGInfo, version: 2.1).\"\r\n }\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"osDisk\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T16:29:21.308975+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T16:29:21.308975+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T16:29:21.308975+01:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"extensions\": [\r\n {\r\n \"name\": \"AzureCATExtensionHandler\",\r\n \"type\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring.AzureCATExtensionHandler\",\r\n \"typeHandlerVersion\": \"2.2.0.68\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"deploymentId=0a25142e-5ac7-4f42-91c9-9c3b7ff5263f roleInstance=_vmcrptestps2691\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute.BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"Plugin enabled (name: Microsoft.Compute.BGInfo, version: 2.1).\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"IaaSDiagnostics\",\r\n \"type\": \"Microsoft.Azure.Diagnostics.IaaSDiagnostics\",\r\n \"typeHandlerVersion\": \"1.5.8.0\",\r\n \"substatuses\": [\r\n {\r\n \"code\": \"ComponentStatus//succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"N/A\"\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"Diagnostic extension set successfully\",\r\n \"time\": \"2016-02-16T16:28:34+01:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T16:29:39.9806962+01:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"type\": \"AzureCATExtensionHandler\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_A2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"osdisk.connminute\",\r\n \"value\": \"stocrptestps2691.minute\"\r\n },\r\n {\r\n \"key\": \"osdisk.connhour\",\r\n \"value\": \"stocrptestps2691.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.1\",\r\n \"value\": \"stocrptestps2691.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.1\",\r\n \"value\": \"stocrptestps2691.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.2\",\r\n \"value\": \"stocrptestps2691.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.2\",\r\n \"value\": \"stocrptestps2691.hour\"\r\n },\r\n {\r\n \"key\": \"stocrptestps2691.hour.uri\",\r\n \"value\": \"https://stocrptestps2691.table.core.windows.net/$MetricsHourPrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps2691.minute.uri\",\r\n \"value\": \"https://stocrptestps2691.table.core.windows.net/$MetricsMinutePrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps2691.hour.name\",\r\n \"value\": \"stocrptestps2691\"\r\n },\r\n {\r\n \"key\": \"stocrptestps2691.minute.name\",\r\n \"value\": \"stocrptestps2691\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps2691\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps2691.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691/extensions/AzureCATExtensionHandler\",\r\n \"name\": \"AzureCATExtensionHandler\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691/extensions/BGInfo\",\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Azure.Diagnostics\",\r\n \"type\": \"IaaSDiagnostics\",\r\n \"typeHandlerVersion\": \"1.5\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yKF9Ub3RhbClcJSBQcm9jZXNzb3IgVGltZSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yIEluZm9ybWF0aW9uKF9Ub3RhbClcUHJvY2Vzc29yIEZyZXF1ZW5jeSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XEF2YWlsYWJsZSBCeXRlcyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcVENQdjZcU2VnbWVudHMgUmV0cmFuc21pdHRlZC9zZWMiIHNhbXBsZVJhdGU9IlBUMU0iIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFRDUHY0XFNlZ21lbnRzIFJldHJhbnNtaXR0ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrIEludGVyZmFjZSgqKVxCeXRlcyBTZW50L3NlYyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29yayBJbnRlcmZhY2UoKilcQnl0ZXMgUmVjZWl2ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691/extensions/IaaSDiagnostics\",\r\n \"name\": \"IaaSDiagnostics\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691\",\r\n \"name\": \"vmcrptestps2691\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "11464" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "f67bb7ec-e997-41d5-bb17-4c4c6f6ea590" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14760" + ], + "x-ms-correlation-request-id": [ + "fa6c469c-3596-4f15-bc46-29503427d8eb" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T152951Z:fa6c469c-3596-4f15-bc46-29503427d8eb" + ], + "Date": [ + "Tue, 16 Feb 2016 15:29:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "055d0067-ca16-40a5-a0ce-5c45cbb99996" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/ase/providers/Microsoft.Storage/storageAccounts/ase7745\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"ase7745\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-08-22T12:09:54.6487474Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ase7745.blob.core.windows.net/\",\r\n \"file\": \"https://ase7745.file.core.windows.net/\",\r\n \"queue\": \"https://ase7745.queue.core.windows.net/\",\r\n \"table\": \"https://ase7745.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/benolwtlz6gcrtv2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"benolwtlz6gcrtv2\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-02T15:37:42.4160913Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://benolwtlz6gcrtv2.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/sapresourcegroup/providers/Microsoft.Storage/storageAccounts/de8da241d96f400ba8791029\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"de8da241d96f400ba8791029\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-09-18T13:22:47.5628749Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://de8da241d96f400ba8791029.blob.core.windows.net/\",\r\n \"file\": \"https://de8da241d96f400ba8791029.file.core.windows.net/\",\r\n \"queue\": \"https://de8da241d96f400ba8791029.queue.core.windows.net/\",\r\n \"table\": \"https://de8da241d96f400ba8791029.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/group-4/providers/Microsoft.Storage/storageAccounts/dsdevstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"dsdevstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-22T21:10:41.790448Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://dsdevstorage.blob.core.windows.net/\",\r\n \"file\": \"https://dsdevstorage.file.core.windows.net/\",\r\n \"queue\": \"https://dsdevstorage.queue.core.windows.net/\",\r\n \"table\": \"https://dsdevstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduscherp/providers/Microsoft.Storage/storageAccounts/erpio6r4un3ewfnm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"erpio6r4un3ewfnm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-08T12:41:16.6105852Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://erpio6r4un3ewfnm.blob.core.windows.net/\",\r\n \"file\": \"https://erpio6r4un3ewfnm.file.core.windows.net/\",\r\n \"queue\": \"https://erpio6r4un3ewfnm.queue.core.windows.net/\",\r\n \"table\": \"https://erpio6r4un3ewfnm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/glsresgroup1/providers/Microsoft.Storage/storageAccounts/glsstoraccount1\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"glsstoraccount1\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T12:37:47.5420067Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://glsstoraccount1.blob.core.windows.net/\",\r\n \"file\": \"https://glsstoraccount1.file.core.windows.net/\",\r\n \"queue\": \"https://glsstoraccount1.queue.core.windows.net/\",\r\n \"table\": \"https://glsstoraccount1.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmpremstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmpremstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:21.7378841Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmpremstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmpremstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmpremstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmpremstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmstdstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmstdstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:22.2160008Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmstdstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmstdstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmstdstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmstdstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-test2/providers/Microsoft.Storage/storageAccounts/gortestacc2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gortestacc2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-08T21:18:17.9028388Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gortestacc2.blob.core.windows.net/\",\r\n \"file\": \"https://gortestacc2.file.core.windows.net/\",\r\n \"queue\": \"https://gortestacc2.queue.core.windows.net/\",\r\n \"table\": \"https://gortestacc2.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-04-16T13:50:52.0015725Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspacepremium\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspacepremium\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-10-23T10:22:10.7216809Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspacepremium.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvmtest/providers/Microsoft.Storage/storageAccounts/lvmtestspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmtestspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T16:56:41.5005505Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmtestspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmtestspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmtestspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmtestspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduschdply4/providers/Microsoft.Storage/storageAccounts/qassle2xgziurjau\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"qassle2xgziurjau\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T14:29:32.9856364Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://qassle2xgziurjau.blob.core.windows.net/\",\r\n \"file\": \"https://qassle2xgziurjau.file.core.windows.net/\",\r\n \"queue\": \"https://qassle2xgziurjau.queue.core.windows.net/\",\r\n \"table\": \"https://qassle2xgziurjau.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduschdply3/providers/Microsoft.Storage/storageAccounts/qasxxtruocsxaqvc\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"qasxxtruocsxaqvc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T13:43:03.8950522Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://qasxxtruocsxaqvc.blob.core.windows.net/\",\r\n \"file\": \"https://qasxxtruocsxaqvc.file.core.windows.net/\",\r\n \"queue\": \"https://qasxxtruocsxaqvc.queue.core.windows.net/\",\r\n \"table\": \"https://qasxxtruocsxaqvc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-eml2/providers/Microsoft.Storage/storageAccounts/rgeml2stacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"rgeml2stacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T08:00:29.8670815Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://rgeml2stacc.blob.core.windows.net/\",\r\n \"file\": \"https://rgeml2stacc.file.core.windows.net/\",\r\n \"queue\": \"https://rgeml2stacc.queue.core.windows.net/\",\r\n \"table\": \"https://rgeml2stacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/sapcalrg/providers/Microsoft.Storage/storageAccounts/sapcalrg8522\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"sapcalrg8522\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-28T06:54:16.0456896Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sapcalrg8522.blob.core.windows.net/\",\r\n \"file\": \"https://sapcalrg8522.file.core.windows.net/\",\r\n \"queue\": \"https://sapcalrg8522.queue.core.windows.net/\",\r\n \"table\": \"https://sapcalrg8522.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/saperpdemo859644\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"saperpdemo859644\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-01-26T11:02:43.8634331Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saperpdemo859644.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1prstacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1prstacc\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-12-10T17:35:29.0415914Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1prstacc.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1ststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1ststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-10T17:36:26.4810072Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1ststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saphana1ststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saphana1ststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saphana1ststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-linux-docu-tests/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saplinuxdocuststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-24T09:25:04.4473982Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-linux-docu-tests-we/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststaccwe\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saplinuxdocuststaccwe\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-25T13:11:50.5477032Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststaccwe.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststaccwe.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststaccwe.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststaccwe.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/sappseduscsape012612030\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"sappseduscsape012612030\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2016-01-26T11:03:56.0307387Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sappseduscsape012612030.blob.core.windows.net/\",\r\n \"file\": \"https://sappseduscsape012612030.file.core.windows.net/\",\r\n \"queue\": \"https://sappseduscsape012612030.queue.core.windows.net/\",\r\n \"table\": \"https://sappseduscsape012612030.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"westeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/saptesiarm/providers/Microsoft.Storage/storageAccounts/saptesiarm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saptesiarm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-08-27T12:13:00.4049179Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptesiarm.blob.core.windows.net/\",\r\n \"file\": \"https://saptesiarm.file.core.windows.net/\",\r\n \"queue\": \"https://saptesiarm.queue.core.windows.net/\",\r\n \"table\": \"https://saptesiarm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/saptestrajrg/providers/Microsoft.Storage/storageAccounts/saptestrajrg4518\",\r\n \"location\": \"westus\",\r\n \"name\": \"saptestrajrg4518\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-07-22T19:24:21.1065762Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptestrajrg4518.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Storage/storageAccounts/stocrptestps2691\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps2691\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T15:14:23.8540635Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps2691.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps2691.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps2691.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps2691.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/temptestsap\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"temptestsap\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-10T14:03:58.3799849Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://temptestsap.blob.core.windows.net/\",\r\n \"file\": \"https://temptestsap.file.core.windows.net/\",\r\n \"queue\": \"https://temptestsap.queue.core.windows.net/\",\r\n \"table\": \"https://temptestsap.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "17095" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "cc3048ec-cef9-4913-aafd-f82449834d1a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14594" + ], + "x-ms-correlation-request-id": [ + "cc3048ec-cef9-4913-aafd-f82449834d1a" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T152336Z:cc3048ec-cef9-4913-aafd-f82449834d1a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Tue, 16 Feb 2016 15:23:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dc03a374-2431-4310-86a6-bde20886d7b6" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/ase/providers/Microsoft.Storage/storageAccounts/ase7745\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"ase7745\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-08-22T12:09:54.6487474Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ase7745.blob.core.windows.net/\",\r\n \"file\": \"https://ase7745.file.core.windows.net/\",\r\n \"queue\": \"https://ase7745.queue.core.windows.net/\",\r\n \"table\": \"https://ase7745.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/benolwtlz6gcrtv2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"benolwtlz6gcrtv2\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-02T15:37:42.4160913Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://benolwtlz6gcrtv2.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/sapresourcegroup/providers/Microsoft.Storage/storageAccounts/de8da241d96f400ba8791029\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"de8da241d96f400ba8791029\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-09-18T13:22:47.5628749Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://de8da241d96f400ba8791029.blob.core.windows.net/\",\r\n \"file\": \"https://de8da241d96f400ba8791029.file.core.windows.net/\",\r\n \"queue\": \"https://de8da241d96f400ba8791029.queue.core.windows.net/\",\r\n \"table\": \"https://de8da241d96f400ba8791029.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/group-4/providers/Microsoft.Storage/storageAccounts/dsdevstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"dsdevstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-22T21:10:41.790448Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://dsdevstorage.blob.core.windows.net/\",\r\n \"file\": \"https://dsdevstorage.file.core.windows.net/\",\r\n \"queue\": \"https://dsdevstorage.queue.core.windows.net/\",\r\n \"table\": \"https://dsdevstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduscherp/providers/Microsoft.Storage/storageAccounts/erpio6r4un3ewfnm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"erpio6r4un3ewfnm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-08T12:41:16.6105852Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://erpio6r4un3ewfnm.blob.core.windows.net/\",\r\n \"file\": \"https://erpio6r4un3ewfnm.file.core.windows.net/\",\r\n \"queue\": \"https://erpio6r4un3ewfnm.queue.core.windows.net/\",\r\n \"table\": \"https://erpio6r4un3ewfnm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/glsresgroup1/providers/Microsoft.Storage/storageAccounts/glsstoraccount1\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"glsstoraccount1\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T12:37:47.5420067Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://glsstoraccount1.blob.core.windows.net/\",\r\n \"file\": \"https://glsstoraccount1.file.core.windows.net/\",\r\n \"queue\": \"https://glsstoraccount1.queue.core.windows.net/\",\r\n \"table\": \"https://glsstoraccount1.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmpremstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmpremstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:21.7378841Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmpremstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmpremstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmpremstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmpremstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmstdstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmstdstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:22.2160008Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmstdstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmstdstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmstdstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmstdstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-test2/providers/Microsoft.Storage/storageAccounts/gortestacc2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gortestacc2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-08T21:18:17.9028388Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gortestacc2.blob.core.windows.net/\",\r\n \"file\": \"https://gortestacc2.file.core.windows.net/\",\r\n \"queue\": \"https://gortestacc2.queue.core.windows.net/\",\r\n \"table\": \"https://gortestacc2.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-04-16T13:50:52.0015725Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspacepremium\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspacepremium\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-10-23T10:22:10.7216809Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspacepremium.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvmtest/providers/Microsoft.Storage/storageAccounts/lvmtestspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmtestspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T16:56:41.5005505Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmtestspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmtestspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmtestspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmtestspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduschdply4/providers/Microsoft.Storage/storageAccounts/qassle2xgziurjau\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"qassle2xgziurjau\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T14:29:32.9856364Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://qassle2xgziurjau.blob.core.windows.net/\",\r\n \"file\": \"https://qassle2xgziurjau.file.core.windows.net/\",\r\n \"queue\": \"https://qassle2xgziurjau.queue.core.windows.net/\",\r\n \"table\": \"https://qassle2xgziurjau.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduschdply3/providers/Microsoft.Storage/storageAccounts/qasxxtruocsxaqvc\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"qasxxtruocsxaqvc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T13:43:03.8950522Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://qasxxtruocsxaqvc.blob.core.windows.net/\",\r\n \"file\": \"https://qasxxtruocsxaqvc.file.core.windows.net/\",\r\n \"queue\": \"https://qasxxtruocsxaqvc.queue.core.windows.net/\",\r\n \"table\": \"https://qasxxtruocsxaqvc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-eml2/providers/Microsoft.Storage/storageAccounts/rgeml2stacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"rgeml2stacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T08:00:29.8670815Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://rgeml2stacc.blob.core.windows.net/\",\r\n \"file\": \"https://rgeml2stacc.file.core.windows.net/\",\r\n \"queue\": \"https://rgeml2stacc.queue.core.windows.net/\",\r\n \"table\": \"https://rgeml2stacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/sapcalrg/providers/Microsoft.Storage/storageAccounts/sapcalrg8522\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"sapcalrg8522\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-28T06:54:16.0456896Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sapcalrg8522.blob.core.windows.net/\",\r\n \"file\": \"https://sapcalrg8522.file.core.windows.net/\",\r\n \"queue\": \"https://sapcalrg8522.queue.core.windows.net/\",\r\n \"table\": \"https://sapcalrg8522.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/saperpdemo859644\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"saperpdemo859644\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-01-26T11:02:43.8634331Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saperpdemo859644.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1prstacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1prstacc\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-12-10T17:35:29.0415914Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1prstacc.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1ststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1ststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-10T17:36:26.4810072Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1ststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saphana1ststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saphana1ststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saphana1ststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-linux-docu-tests/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saplinuxdocuststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-24T09:25:04.4473982Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-linux-docu-tests-we/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststaccwe\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saplinuxdocuststaccwe\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-25T13:11:50.5477032Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststaccwe.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststaccwe.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststaccwe.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststaccwe.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/sappseduscsape012612030\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"sappseduscsape012612030\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2016-01-26T11:03:56.0307387Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sappseduscsape012612030.blob.core.windows.net/\",\r\n \"file\": \"https://sappseduscsape012612030.file.core.windows.net/\",\r\n \"queue\": \"https://sappseduscsape012612030.queue.core.windows.net/\",\r\n \"table\": \"https://sappseduscsape012612030.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"westeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/saptesiarm/providers/Microsoft.Storage/storageAccounts/saptesiarm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saptesiarm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-08-27T12:13:00.4049179Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptesiarm.blob.core.windows.net/\",\r\n \"file\": \"https://saptesiarm.file.core.windows.net/\",\r\n \"queue\": \"https://saptesiarm.queue.core.windows.net/\",\r\n \"table\": \"https://saptesiarm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/saptestrajrg/providers/Microsoft.Storage/storageAccounts/saptestrajrg4518\",\r\n \"location\": \"westus\",\r\n \"name\": \"saptestrajrg4518\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-07-22T19:24:21.1065762Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptestrajrg4518.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Storage/storageAccounts/stocrptestps2691\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps2691\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T15:14:23.8540635Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps2691.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps2691.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps2691.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps2691.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/temptestsap\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"temptestsap\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-10T14:03:58.3799849Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://temptestsap.blob.core.windows.net/\",\r\n \"file\": \"https://temptestsap.file.core.windows.net/\",\r\n \"queue\": \"https://temptestsap.queue.core.windows.net/\",\r\n \"table\": \"https://temptestsap.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "17095" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "30287782-96a2-452c-a930-2cf0a480c5b9" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14593" + ], + "x-ms-correlation-request-id": [ + "30287782-96a2-452c-a930-2cf0a480c5b9" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T152337Z:30287782-96a2-452c-a930-2cf0a480c5b9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Tue, 16 Feb 2016 15:23:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d32b4e0d-e65d-4d83-9af7-ce98b5f0113f" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/ase/providers/Microsoft.Storage/storageAccounts/ase7745\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"ase7745\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-08-22T12:09:54.6487474Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ase7745.blob.core.windows.net/\",\r\n \"file\": \"https://ase7745.file.core.windows.net/\",\r\n \"queue\": \"https://ase7745.queue.core.windows.net/\",\r\n \"table\": \"https://ase7745.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/benolwtlz6gcrtv2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"benolwtlz6gcrtv2\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-02T15:37:42.4160913Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://benolwtlz6gcrtv2.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/sapresourcegroup/providers/Microsoft.Storage/storageAccounts/de8da241d96f400ba8791029\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"de8da241d96f400ba8791029\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-09-18T13:22:47.5628749Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://de8da241d96f400ba8791029.blob.core.windows.net/\",\r\n \"file\": \"https://de8da241d96f400ba8791029.file.core.windows.net/\",\r\n \"queue\": \"https://de8da241d96f400ba8791029.queue.core.windows.net/\",\r\n \"table\": \"https://de8da241d96f400ba8791029.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/group-4/providers/Microsoft.Storage/storageAccounts/dsdevstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"dsdevstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-22T21:10:41.790448Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://dsdevstorage.blob.core.windows.net/\",\r\n \"file\": \"https://dsdevstorage.file.core.windows.net/\",\r\n \"queue\": \"https://dsdevstorage.queue.core.windows.net/\",\r\n \"table\": \"https://dsdevstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduscherp/providers/Microsoft.Storage/storageAccounts/erpio6r4un3ewfnm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"erpio6r4un3ewfnm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-08T12:41:16.6105852Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://erpio6r4un3ewfnm.blob.core.windows.net/\",\r\n \"file\": \"https://erpio6r4un3ewfnm.file.core.windows.net/\",\r\n \"queue\": \"https://erpio6r4un3ewfnm.queue.core.windows.net/\",\r\n \"table\": \"https://erpio6r4un3ewfnm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/glsresgroup1/providers/Microsoft.Storage/storageAccounts/glsstoraccount1\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"glsstoraccount1\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T12:37:47.5420067Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://glsstoraccount1.blob.core.windows.net/\",\r\n \"file\": \"https://glsstoraccount1.file.core.windows.net/\",\r\n \"queue\": \"https://glsstoraccount1.queue.core.windows.net/\",\r\n \"table\": \"https://glsstoraccount1.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmpremstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmpremstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:21.7378841Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmpremstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmpremstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmpremstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmpremstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmstdstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmstdstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:22.2160008Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmstdstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmstdstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmstdstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmstdstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-test2/providers/Microsoft.Storage/storageAccounts/gortestacc2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gortestacc2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-08T21:18:17.9028388Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gortestacc2.blob.core.windows.net/\",\r\n \"file\": \"https://gortestacc2.file.core.windows.net/\",\r\n \"queue\": \"https://gortestacc2.queue.core.windows.net/\",\r\n \"table\": \"https://gortestacc2.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-04-16T13:50:52.0015725Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspacepremium\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspacepremium\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-10-23T10:22:10.7216809Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspacepremium.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvmtest/providers/Microsoft.Storage/storageAccounts/lvmtestspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmtestspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T16:56:41.5005505Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmtestspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmtestspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmtestspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmtestspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduschdply5/providers/Microsoft.Storage/storageAccounts/qas77jupdwscgujq\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"qas77jupdwscgujq\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T15:25:13.5232627Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://qas77jupdwscgujq.blob.core.windows.net/\",\r\n \"file\": \"https://qas77jupdwscgujq.file.core.windows.net/\",\r\n \"queue\": \"https://qas77jupdwscgujq.queue.core.windows.net/\",\r\n \"table\": \"https://qas77jupdwscgujq.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-eml2/providers/Microsoft.Storage/storageAccounts/rgeml2stacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"rgeml2stacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T08:00:29.8670815Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://rgeml2stacc.blob.core.windows.net/\",\r\n \"file\": \"https://rgeml2stacc.file.core.windows.net/\",\r\n \"queue\": \"https://rgeml2stacc.queue.core.windows.net/\",\r\n \"table\": \"https://rgeml2stacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/sapcalrg/providers/Microsoft.Storage/storageAccounts/sapcalrg8522\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"sapcalrg8522\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-28T06:54:16.0456896Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sapcalrg8522.blob.core.windows.net/\",\r\n \"file\": \"https://sapcalrg8522.file.core.windows.net/\",\r\n \"queue\": \"https://sapcalrg8522.queue.core.windows.net/\",\r\n \"table\": \"https://sapcalrg8522.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/saperpdemo859644\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"saperpdemo859644\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-01-26T11:02:43.8634331Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saperpdemo859644.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1prstacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1prstacc\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-12-10T17:35:29.0415914Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1prstacc.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1ststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1ststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-10T17:36:26.4810072Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1ststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saphana1ststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saphana1ststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saphana1ststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-linux-docu-tests/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saplinuxdocuststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-24T09:25:04.4473982Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-linux-docu-tests-we/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststaccwe\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saplinuxdocuststaccwe\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-25T13:11:50.5477032Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststaccwe.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststaccwe.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststaccwe.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststaccwe.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/sappseduscsape012612030\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"sappseduscsape012612030\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2016-01-26T11:03:56.0307387Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sappseduscsape012612030.blob.core.windows.net/\",\r\n \"file\": \"https://sappseduscsape012612030.file.core.windows.net/\",\r\n \"queue\": \"https://sappseduscsape012612030.queue.core.windows.net/\",\r\n \"table\": \"https://sappseduscsape012612030.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"westeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/saptesiarm/providers/Microsoft.Storage/storageAccounts/saptesiarm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saptesiarm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-08-27T12:13:00.4049179Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptesiarm.blob.core.windows.net/\",\r\n \"file\": \"https://saptesiarm.file.core.windows.net/\",\r\n \"queue\": \"https://saptesiarm.queue.core.windows.net/\",\r\n \"table\": \"https://saptesiarm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/saptestrajrg/providers/Microsoft.Storage/storageAccounts/saptestrajrg4518\",\r\n \"location\": \"westus\",\r\n \"name\": \"saptestrajrg4518\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-07-22T19:24:21.1065762Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptestrajrg4518.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Storage/storageAccounts/stocrptestps2691\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps2691\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T15:14:23.8540635Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps2691.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps2691.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps2691.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps2691.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/temptestsap\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"temptestsap\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-10T14:03:58.3799849Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://temptestsap.blob.core.windows.net/\",\r\n \"file\": \"https://temptestsap.file.core.windows.net/\",\r\n \"queue\": \"https://temptestsap.queue.core.windows.net/\",\r\n \"table\": \"https://temptestsap.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "16406" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "32a269be-330c-4628-aaee-2e7f7e23489d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14864" + ], + "x-ms-correlation-request-id": [ + "32a269be-330c-4628-aaee-2e7f7e23489d" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T152952Z:32a269be-330c-4628-aaee-2e7f7e23489d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Tue, 16 Feb 2016 15:29:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691/extensions/IaaSDiagnostics?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczI2OTEvZXh0ZW5zaW9ucy9JYWFTRGlhZ25vc3RpY3M/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Azure.Diagnostics\",\r\n \"type\": \"IaaSDiagnostics\",\r\n \"typeHandlerVersion\": \"1.5\",\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yKF9Ub3RhbClcJSBQcm9jZXNzb3IgVGltZSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yIEluZm9ybWF0aW9uKF9Ub3RhbClcUHJvY2Vzc29yIEZyZXF1ZW5jeSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XEF2YWlsYWJsZSBCeXRlcyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcVENQdjZcU2VnbWVudHMgUmV0cmFuc21pdHRlZC9zZWMiIHNhbXBsZVJhdGU9IlBUMU0iIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFRDUHY0XFNlZ21lbnRzIFJldHJhbnNtaXR0ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrIEludGVyZmFjZSgqKVxCeXRlcyBTZW50L3NlYyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29yayBJbnRlcmZhY2UoKilcQnl0ZXMgUmVjZWl2ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"protectedSettings\": {\r\n \"storageAccountName\": \"stocrptestps2691\",\r\n \"storageAccountKey\": \"ksbyRlxAgqiyj0T6m8/jNJkzfJOUm+tYeTfeHuIPoAR8my4OeyDrwitpaMkzY3ldPO6fvGus0iW1r5Af4qhI0g==\",\r\n \"storageAccountEndPoint\": \"https://core.windows.net\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1735" + ], + "x-ms-client-request-id": [ + "5ba3f354-6678-41aa-afdd-61d71f89a056" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Azure.Diagnostics\",\r\n \"type\": \"IaaSDiagnostics\",\r\n \"typeHandlerVersion\": \"1.5\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yKF9Ub3RhbClcJSBQcm9jZXNzb3IgVGltZSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yIEluZm9ybWF0aW9uKF9Ub3RhbClcUHJvY2Vzc29yIEZyZXF1ZW5jeSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XEF2YWlsYWJsZSBCeXRlcyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcVENQdjZcU2VnbWVudHMgUmV0cmFuc21pdHRlZC9zZWMiIHNhbXBsZVJhdGU9IlBUMU0iIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFRDUHY0XFNlZ21lbnRzIFJldHJhbnNtaXR0ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrIEludGVyZmFjZSgqKVxCeXRlcyBTZW50L3NlYyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29yayBJbnRlcmZhY2UoKilcQnl0ZXMgUmVjZWl2ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691/extensions/IaaSDiagnostics\",\r\n \"name\": \"IaaSDiagnostics\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1801" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/fdd21def-ca56-4d59-85b7-7e0a914f3d72?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "fdd21def-ca56-4d59-85b7-7e0a914f3d72" + ], + "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": [ + "67e00cc2-09c9-41e2-9f19-588197cca1bd" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T152343Z:67e00cc2-09c9-41e2-9f19-588197cca1bd" + ], + "Date": [ + "Tue, 16 Feb 2016 15:23:43 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/fdd21def-ca56-4d59-85b7-7e0a914f3d72?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZmRkMjFkZWYtY2E1Ni00ZDU5LTg1YjctN2UwYTkxNGYzZDcyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"fdd21def-ca56-4d59-85b7-7e0a914f3d72\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T16:23:42.6236353+01: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-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "6c4318c9-2a10-49db-b740-0a19f047cc18" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14782" + ], + "x-ms-correlation-request-id": [ + "7a4c8741-0d80-4ec0-8e55-cbb332858d39" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T152414Z:7a4c8741-0d80-4ec0-8e55-cbb332858d39" + ], + "Date": [ + "Tue, 16 Feb 2016 15:24:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/fdd21def-ca56-4d59-85b7-7e0a914f3d72?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZmRkMjFkZWYtY2E1Ni00ZDU5LTg1YjctN2UwYTkxNGYzZDcyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"fdd21def-ca56-4d59-85b7-7e0a914f3d72\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T16:23:42.6236353+01: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-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "086b007b-ba06-4556-a4f4-07335335b30b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14781" + ], + "x-ms-correlation-request-id": [ + "6c614333-4ee3-4d1b-8aa5-20159da397a4" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T152444Z:6c614333-4ee3-4d1b-8aa5-20159da397a4" + ], + "Date": [ + "Tue, 16 Feb 2016 15:24:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/fdd21def-ca56-4d59-85b7-7e0a914f3d72?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZmRkMjFkZWYtY2E1Ni00ZDU5LTg1YjctN2UwYTkxNGYzZDcyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"fdd21def-ca56-4d59-85b7-7e0a914f3d72\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T16:23:42.6236353+01: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-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "22f2dc93-e951-4ada-b0cc-72c0c262b874" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14785" + ], + "x-ms-correlation-request-id": [ + "8c56a5d3-ba1e-4df9-8474-9c72f3cf44b1" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T152514Z:8c56a5d3-ba1e-4df9-8474-9c72f3cf44b1" + ], + "Date": [ + "Tue, 16 Feb 2016 15:25:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/fdd21def-ca56-4d59-85b7-7e0a914f3d72?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZmRkMjFkZWYtY2E1Ni00ZDU5LTg1YjctN2UwYTkxNGYzZDcyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"fdd21def-ca56-4d59-85b7-7e0a914f3d72\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T16:23:42.6236353+01: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-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "2be46c15-91a4-4a00-aaf8-5822bc4ba1a1" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14784" + ], + "x-ms-correlation-request-id": [ + "c1776f3d-19a0-437f-aae8-c7c4fe73d8a8" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T152544Z:c1776f3d-19a0-437f-aae8-c7c4fe73d8a8" + ], + "Date": [ + "Tue, 16 Feb 2016 15:25:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/fdd21def-ca56-4d59-85b7-7e0a914f3d72?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZmRkMjFkZWYtY2E1Ni00ZDU5LTg1YjctN2UwYTkxNGYzZDcyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"fdd21def-ca56-4d59-85b7-7e0a914f3d72\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-02-16T16:23:42.6236353+01:00\",\r\n \"endTime\": \"2016-02-16T16:25:57.513401+01: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-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "7c967a76-0bac-4917-96b9-e920e43887bc" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14782" + ], + "x-ms-correlation-request-id": [ + "9c705cb0-fe8e-455d-81e3-297dd63e67b4" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T152614Z:9c705cb0-fe8e-455d-81e3-297dd63e67b4" + ], + "Date": [ + "Tue, 16 Feb 2016 15:26:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691/extensions/IaaSDiagnostics?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczI2OTEvZXh0ZW5zaW9ucy9JYWFTRGlhZ25vc3RpY3M/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Azure.Diagnostics\",\r\n \"type\": \"IaaSDiagnostics\",\r\n \"typeHandlerVersion\": \"1.5\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yKF9Ub3RhbClcJSBQcm9jZXNzb3IgVGltZSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yIEluZm9ybWF0aW9uKF9Ub3RhbClcUHJvY2Vzc29yIEZyZXF1ZW5jeSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XEF2YWlsYWJsZSBCeXRlcyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcVENQdjZcU2VnbWVudHMgUmV0cmFuc21pdHRlZC9zZWMiIHNhbXBsZVJhdGU9IlBUMU0iIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFRDUHY0XFNlZ21lbnRzIFJldHJhbnNtaXR0ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrIEludGVyZmFjZSgqKVxCeXRlcyBTZW50L3NlYyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29yayBJbnRlcmZhY2UoKilcQnl0ZXMgUmVjZWl2ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691/extensions/IaaSDiagnostics\",\r\n \"name\": \"IaaSDiagnostics\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1802" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "3d10f75f-a6c1-4de8-b703-30905665209e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14781" + ], + "x-ms-correlation-request-id": [ + "c9297aa4-5725-436c-9eed-dd81f912d9f5" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T152615Z:c9297aa4-5725-436c-9eed-dd81f912d9f5" + ], + "Date": [ + "Tue, 16 Feb 2016 15:26:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691/extensions/AzureCATExtensionHandler?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczI2OTEvZXh0ZW5zaW9ucy9BenVyZUNBVEV4dGVuc2lvbkhhbmRsZXI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"type\": \"AzureCATExtensionHandler\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_A2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"osdisk.connminute\",\r\n \"value\": \"stocrptestps2691.minute\"\r\n },\r\n {\r\n \"key\": \"osdisk.connhour\",\r\n \"value\": \"stocrptestps2691.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.1\",\r\n \"value\": \"stocrptestps2691.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.1\",\r\n \"value\": \"stocrptestps2691.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.2\",\r\n \"value\": \"stocrptestps2691.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.2\",\r\n \"value\": \"stocrptestps2691.hour\"\r\n },\r\n {\r\n \"key\": \"stocrptestps2691.hour.uri\",\r\n \"value\": \"https://stocrptestps2691.table.core.windows.net/$MetricsHourPrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps2691.minute.uri\",\r\n \"value\": \"https://stocrptestps2691.table.core.windows.net/$MetricsMinutePrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps2691.hour.name\",\r\n \"value\": \"stocrptestps2691\"\r\n },\r\n {\r\n \"key\": \"stocrptestps2691.minute.name\",\r\n \"value\": \"stocrptestps2691\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps2691\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps2691.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"protectedSettings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"stocrptestps2691.hour.key\",\r\n \"value\": \"ksbyRlxAgqiyj0T6m8/jNJkzfJOUm+tYeTfeHuIPoAR8my4OeyDrwitpaMkzY3ldPO6fvGus0iW1r5Af4qhI0g==\"\r\n },\r\n {\r\n \"key\": \"stocrptestps2691.minute.key\",\r\n \"value\": \"ksbyRlxAgqiyj0T6m8/jNJkzfJOUm+tYeTfeHuIPoAR8my4OeyDrwitpaMkzY3ldPO6fvGus0iW1r5Af4qhI0g==\"\r\n },\r\n {\r\n \"key\": \"wad.key\",\r\n \"value\": \"ksbyRlxAgqiyj0T6m8/jNJkzfJOUm+tYeTfeHuIPoAR8my4OeyDrwitpaMkzY3ldPO6fvGus0iW1r5Af4qhI0g==\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "3891" + ], + "x-ms-client-request-id": [ + "ac403b81-db38-4e02-aeed-4cf2de340c10" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"type\": \"AzureCATExtensionHandler\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_A2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"osdisk.connminute\",\r\n \"value\": \"stocrptestps2691.minute\"\r\n },\r\n {\r\n \"key\": \"osdisk.connhour\",\r\n \"value\": \"stocrptestps2691.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.1\",\r\n \"value\": \"stocrptestps2691.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.1\",\r\n \"value\": \"stocrptestps2691.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.2\",\r\n \"value\": \"stocrptestps2691.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.2\",\r\n \"value\": \"stocrptestps2691.hour\"\r\n },\r\n {\r\n \"key\": \"stocrptestps2691.hour.uri\",\r\n \"value\": \"https://stocrptestps2691.table.core.windows.net/$MetricsHourPrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps2691.minute.uri\",\r\n \"value\": \"https://stocrptestps2691.table.core.windows.net/$MetricsMinutePrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps2691.hour.name\",\r\n \"value\": \"stocrptestps2691\"\r\n },\r\n {\r\n \"key\": \"stocrptestps2691.minute.name\",\r\n \"value\": \"stocrptestps2691\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps2691\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps2691.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691/extensions/AzureCATExtensionHandler\",\r\n \"name\": \"AzureCATExtensionHandler\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2226" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/65deaf1b-fdda-45d0-9102-b586ca528e3b?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "65deaf1b-fdda-45d0-9102-b586ca528e3b" + ], + "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": [ + "16c94ac5-525f-400a-a54d-b667710a3319" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T152617Z:16c94ac5-525f-400a-a54d-b667710a3319" + ], + "Date": [ + "Tue, 16 Feb 2016 15:26:17 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/65deaf1b-fdda-45d0-9102-b586ca528e3b?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNjVkZWFmMWItZmRkYS00NWQwLTkxMDItYjU4NmNhNTI4ZTNiP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"65deaf1b-fdda-45d0-9102-b586ca528e3b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T16:26:16.6226732+01: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-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "f10bf06c-7852-4744-85bf-1fa56585a785" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14776" + ], + "x-ms-correlation-request-id": [ + "0ab3539b-bf13-4fcf-986f-17929f4ac43c" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T152647Z:0ab3539b-bf13-4fcf-986f-17929f4ac43c" + ], + "Date": [ + "Tue, 16 Feb 2016 15:26:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/65deaf1b-fdda-45d0-9102-b586ca528e3b?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNjVkZWFmMWItZmRkYS00NWQwLTkxMDItYjU4NmNhNTI4ZTNiP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"65deaf1b-fdda-45d0-9102-b586ca528e3b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T16:26:16.6226732+01: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-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "12ede86c-e50c-4a5d-8b9f-b0bb591f7936" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14774" + ], + "x-ms-correlation-request-id": [ + "4d71aab3-a484-4b9f-b724-3f19cf97b3ff" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T152717Z:4d71aab3-a484-4b9f-b724-3f19cf97b3ff" + ], + "Date": [ + "Tue, 16 Feb 2016 15:27:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/65deaf1b-fdda-45d0-9102-b586ca528e3b?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNjVkZWFmMWItZmRkYS00NWQwLTkxMDItYjU4NmNhNTI4ZTNiP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"65deaf1b-fdda-45d0-9102-b586ca528e3b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T16:26:16.6226732+01: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-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "7235b885-a5c7-4fa2-b1dc-ceaf98c3bb5c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14773" + ], + "x-ms-correlation-request-id": [ + "85b2938b-8f4e-470b-b6f7-643d83d6bad3" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T152748Z:85b2938b-8f4e-470b-b6f7-643d83d6bad3" + ], + "Date": [ + "Tue, 16 Feb 2016 15:27:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/65deaf1b-fdda-45d0-9102-b586ca528e3b?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNjVkZWFmMWItZmRkYS00NWQwLTkxMDItYjU4NmNhNTI4ZTNiP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"65deaf1b-fdda-45d0-9102-b586ca528e3b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T16:26:16.6226732+01: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-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "b608ab96-71bf-42e8-90ec-f7a4e95c2458" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14772" + ], + "x-ms-correlation-request-id": [ + "889bdefe-1f6b-475e-a571-d441c417c783" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T152818Z:889bdefe-1f6b-475e-a571-d441c417c783" + ], + "Date": [ + "Tue, 16 Feb 2016 15:28:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/65deaf1b-fdda-45d0-9102-b586ca528e3b?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNjVkZWFmMWItZmRkYS00NWQwLTkxMDItYjU4NmNhNTI4ZTNiP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"65deaf1b-fdda-45d0-9102-b586ca528e3b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T16:26:16.6226732+01: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-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "2b9c6960-322c-489b-a2bb-c8ca9a51845e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14771" + ], + "x-ms-correlation-request-id": [ + "f1c95bde-1ced-4536-bb1f-23a4141fe203" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T152848Z:f1c95bde-1ced-4536-bb1f-23a4141fe203" + ], + "Date": [ + "Tue, 16 Feb 2016 15:28:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/65deaf1b-fdda-45d0-9102-b586ca528e3b?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNjVkZWFmMWItZmRkYS00NWQwLTkxMDItYjU4NmNhNTI4ZTNiP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"65deaf1b-fdda-45d0-9102-b586ca528e3b\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-02-16T16:26:16.6226732+01:00\",\r\n \"endTime\": \"2016-02-16T16:28:50.2310717+01: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-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "c5b863cf-9fbd-4102-9da1-78e0691809a3" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14767" + ], + "x-ms-correlation-request-id": [ + "dcf756fc-facc-4a7d-bd66-969b85e9e1e3" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T152918Z:dcf756fc-facc-4a7d-bd66-969b85e9e1e3" + ], + "Date": [ + "Tue, 16 Feb 2016 15:29:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691/extensions/AzureCATExtensionHandler?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczI2OTEvZXh0ZW5zaW9ucy9BenVyZUNBVEV4dGVuc2lvbkhhbmRsZXI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"type\": \"AzureCATExtensionHandler\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_A2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"osdisk.connminute\",\r\n \"value\": \"stocrptestps2691.minute\"\r\n },\r\n {\r\n \"key\": \"osdisk.connhour\",\r\n \"value\": \"stocrptestps2691.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.1\",\r\n \"value\": \"stocrptestps2691.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.1\",\r\n \"value\": \"stocrptestps2691.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.2\",\r\n \"value\": \"stocrptestps2691.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.2\",\r\n \"value\": \"stocrptestps2691.hour\"\r\n },\r\n {\r\n \"key\": \"stocrptestps2691.hour.uri\",\r\n \"value\": \"https://stocrptestps2691.table.core.windows.net/$MetricsHourPrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps2691.minute.uri\",\r\n \"value\": \"https://stocrptestps2691.table.core.windows.net/$MetricsMinutePrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps2691.hour.name\",\r\n \"value\": \"stocrptestps2691\"\r\n },\r\n {\r\n \"key\": \"stocrptestps2691.minute.name\",\r\n \"value\": \"stocrptestps2691\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps2691\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps2691.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691/extensions/AzureCATExtensionHandler\",\r\n \"name\": \"AzureCATExtensionHandler\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2227" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "412759aa-6937-4bca-8c06-efbe0ab96388" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14766" + ], + "x-ms-correlation-request-id": [ + "a5b95aa5-e61b-4937-bac6-47b4ffff9390" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T152918Z:a5b95aa5-e61b-4937-bac6-47b4ffff9390" + ], + "Date": [ + "Tue, 16 Feb 2016 15:29:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691/extensions/AzureCATExtensionHandler?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczI2OTEvZXh0ZW5zaW9ucy9BenVyZUNBVEV4dGVuc2lvbkhhbmRsZXI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "80a4a6c3-7ae4-4f24-a0ad-07c860703be5" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"type\": \"AzureCATExtensionHandler\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_A2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"osdisk.connminute\",\r\n \"value\": \"stocrptestps2691.minute\"\r\n },\r\n {\r\n \"key\": \"osdisk.connhour\",\r\n \"value\": \"stocrptestps2691.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.1\",\r\n \"value\": \"stocrptestps2691.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.1\",\r\n \"value\": \"stocrptestps2691.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.2\",\r\n \"value\": \"stocrptestps2691.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.2\",\r\n \"value\": \"stocrptestps2691.hour\"\r\n },\r\n {\r\n \"key\": \"stocrptestps2691.hour.uri\",\r\n \"value\": \"https://stocrptestps2691.table.core.windows.net/$MetricsHourPrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps2691.minute.uri\",\r\n \"value\": \"https://stocrptestps2691.table.core.windows.net/$MetricsMinutePrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps2691.hour.name\",\r\n \"value\": \"stocrptestps2691\"\r\n },\r\n {\r\n \"key\": \"stocrptestps2691.minute.name\",\r\n \"value\": \"stocrptestps2691\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps2691\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps2691.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691/extensions/AzureCATExtensionHandler\",\r\n \"name\": \"AzureCATExtensionHandler\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2227" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "625f8f46-a22b-4499-972e-d1a450d44ba1" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14764" + ], + "x-ms-correlation-request-id": [ + "9ed8f12e-2343-4291-9772-20004077890b" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T152919Z:9ed8f12e-2343-4291-9772-20004077890b" + ], + "Date": [ + "Tue, 16 Feb 2016 15:29:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691/restart?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczI2OTEvcmVzdGFydD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "be173ef0-9770-44ab-9eff-90db7606c919" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/8fc10530-ab62-40b3-859a-37231a058096?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "8fc10530-ab62-40b3-859a-37231a058096" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/8fc10530-ab62-40b3-859a-37231a058096?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-correlation-request-id": [ + "9263ef6f-0037-4c7e-9586-be6c9d83ed63" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T152921Z:9263ef6f-0037-4c7e-9586-be6c9d83ed63" + ], + "Date": [ + "Tue, 16 Feb 2016 15:29:20 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/8fc10530-ab62-40b3-859a-37231a058096?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOGZjMTA1MzAtYWI2Mi00MGIzLTg1OWEtMzcyMzFhMDU4MDk2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"8fc10530-ab62-40b3-859a-37231a058096\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-02-16T16:29:21.0433228+01:00\",\r\n \"endTime\": \"2016-02-16T16:29:40.043203+01: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-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "4c630565-63ad-4819-8735-99b09790ec74" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14762" + ], + "x-ms-correlation-request-id": [ + "595e2365-9896-4aa8-8d4a-c6277930f35b" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T152951Z:595e2365-9896-4aa8-8d4a-c6277930f35b" + ], + "Date": [ + "Tue, 16 Feb 2016 15:29:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691/extensions/AzureCATExtensionHandler?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczI2OTEvZXh0ZW5zaW9ucy9BenVyZUNBVEV4dGVuc2lvbkhhbmRsZXI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8006bea1-4c6f-4eee-bff1-1761dd9b77c2" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/5410e940-e834-41d8-9653-a4f28008a2eb?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "5410e940-e834-41d8-9653-a4f28008a2eb" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/5410e940-e834-41d8-9653-a4f28008a2eb?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "a26aef1e-b376-4a48-bc6e-6f635a9bd1b3" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T160125Z:a26aef1e-b376-4a48-bc6e-6f635a9bd1b3" + ], + "Date": [ + "Tue, 16 Feb 2016 16:01:25 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/5410e940-e834-41d8-9653-a4f28008a2eb?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNTQxMGU5NDAtZTgzNC00MWQ4LTk2NTMtYTRmMjgwMDhhMmViP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"5410e940-e834-41d8-9653-a4f28008a2eb\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T17:01:24.765351+01:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "140" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "219f54f6-c331-4594-8587-31a764000f53" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14791" + ], + "x-ms-correlation-request-id": [ + "4cade3e6-d109-471d-bb89-2805f8088028" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T160155Z:4cade3e6-d109-471d-bb89-2805f8088028" + ], + "Date": [ + "Tue, 16 Feb 2016 16:01:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/5410e940-e834-41d8-9653-a4f28008a2eb?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNTQxMGU5NDAtZTgzNC00MWQ4LTk2NTMtYTRmMjgwMDhhMmViP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"5410e940-e834-41d8-9653-a4f28008a2eb\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-02-16T17:01:24.765351+01:00\",\r\n \"endTime\": \"2016-02-16T17:02:05.3120184+01: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-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + ], + "x-ms-request-id": [ + "2504c35e-6b76-4de8-8d8e-73e8a7954bae" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14788" + ], + "x-ms-correlation-request-id": [ + "5415bd87-ebae-44ad-a1e9-04e8794d97aa" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T160225Z:5415bd87-ebae-44ad-a1e9-04e8794d97aa" + ], + "Date": [ + "Tue, 16 Feb 2016 16:02:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourcegroups/crptestps2691?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczI2OTE/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": [ + "1198" + ], + "x-ms-request-id": [ + "8ba1713f-62ce-4905-9de9-ff0f254517e3" + ], + "x-ms-correlation-request-id": [ + "8ba1713f-62ce-4905-9de9-ff0f254517e3" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T160226Z:8ba1713f-62ce-4905-9de9-ff0f254517e3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 16:02:26 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TmpreExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14342" + ], + "x-ms-request-id": [ + "220d04e9-62e1-4558-ae4e-1dbebe17f0a9" + ], + "x-ms-correlation-request-id": [ + "220d04e9-62e1-4558-ae4e-1dbebe17f0a9" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T160227Z:220d04e9-62e1-4558-ae4e-1dbebe17f0a9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 16:02:26 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TmpreExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14341" + ], + "x-ms-request-id": [ + "415380a7-a2fe-4cd4-b594-bcaadf0468f5" + ], + "x-ms-correlation-request-id": [ + "415380a7-a2fe-4cd4-b594-bcaadf0468f5" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T160242Z:415380a7-a2fe-4cd4-b594-bcaadf0468f5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 16:02:42 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TmpreExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14340" + ], + "x-ms-request-id": [ + "7cacd6e5-b830-47a5-8d04-22992025a670" + ], + "x-ms-correlation-request-id": [ + "7cacd6e5-b830-47a5-8d04-22992025a670" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T160257Z:7cacd6e5-b830-47a5-8d04-22992025a670" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 16:02:57 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TmpreExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14339" + ], + "x-ms-request-id": [ + "28cec8b5-6f9c-43fd-94bb-74d217fadd8d" + ], + "x-ms-correlation-request-id": [ + "28cec8b5-6f9c-43fd-94bb-74d217fadd8d" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T160312Z:28cec8b5-6f9c-43fd-94bb-74d217fadd8d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 16:03:11 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TmpreExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14336" + ], + "x-ms-request-id": [ + "1ed5179a-4841-4a0a-9300-5032b93f5616" + ], + "x-ms-correlation-request-id": [ + "1ed5179a-4841-4a0a-9300-5032b93f5616" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T160327Z:1ed5179a-4841-4a0a-9300-5032b93f5616" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 16:03:27 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TmpreExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14335" + ], + "x-ms-request-id": [ + "733edec3-cc04-42d0-ab09-140e07b6d886" + ], + "x-ms-correlation-request-id": [ + "733edec3-cc04-42d0-ab09-140e07b6d886" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T160342Z:733edec3-cc04-42d0-ab09-140e07b6d886" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 16:03:42 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TmpreExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14334" + ], + "x-ms-request-id": [ + "a9dbcd10-450e-45c8-ad78-49d0b384a0d8" + ], + "x-ms-correlation-request-id": [ + "a9dbcd10-450e-45c8-ad78-49d0b384a0d8" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T160358Z:a9dbcd10-450e-45c8-ad78-49d0b384a0d8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 16:03:57 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TmpreExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14333" + ], + "x-ms-request-id": [ + "667b40d1-81cd-4509-abd3-a2226168bd76" + ], + "x-ms-correlation-request-id": [ + "667b40d1-81cd-4509-abd3-a2226168bd76" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T160413Z:667b40d1-81cd-4509-abd3-a2226168bd76" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 16:04:12 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TmpreExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14331" + ], + "x-ms-request-id": [ + "9f3b1ae8-bb87-4402-997b-ef9c4ce47b81" + ], + "x-ms-correlation-request-id": [ + "9f3b1ae8-bb87-4402-997b-ef9c4ce47b81" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T160428Z:9f3b1ae8-bb87-4402-997b-ef9c4ce47b81" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 16:04:28 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TmpreExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14330" + ], + "x-ms-request-id": [ + "0a00a8aa-029f-4496-bb1e-c19d696a5188" + ], + "x-ms-correlation-request-id": [ + "0a00a8aa-029f-4496-bb1e-c19d696a5188" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T160443Z:0a00a8aa-029f-4496-bb1e-c19d696a5188" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 16:04:43 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TmpreExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14329" + ], + "x-ms-request-id": [ + "b343a739-09b0-4725-ac12-7d8edbc69c93" + ], + "x-ms-correlation-request-id": [ + "b343a739-09b0-4725-ac12-7d8edbc69c93" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T160458Z:b343a739-09b0-4725-ac12-7d8edbc69c93" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 16:04:58 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TmpreExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14355" + ], + "x-ms-request-id": [ + "94060fb5-5652-45de-82c0-d2f4d8f5dbaa" + ], + "x-ms-correlation-request-id": [ + "94060fb5-5652-45de-82c0-d2f4d8f5dbaa" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T160513Z:94060fb5-5652-45de-82c0-d2f4d8f5dbaa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 16:05:13 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TmpreExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14354" + ], + "x-ms-request-id": [ + "55db9497-cce4-49f2-ad80-f63f433cb9c5" + ], + "x-ms-correlation-request-id": [ + "55db9497-cce4-49f2-ad80-f63f433cb9c5" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T160529Z:55db9497-cce4-49f2-ad80-f63f433cb9c5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 16:05:28 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TmpreExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14353" + ], + "x-ms-request-id": [ + "3fdd7793-5764-4ed3-986f-727bd5a30332" + ], + "x-ms-correlation-request-id": [ + "3fdd7793-5764-4ed3-986f-727bd5a30332" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T160544Z:3fdd7793-5764-4ed3-986f-727bd5a30332" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 16:05:44 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TmpreExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14352" + ], + "x-ms-request-id": [ + "b6295439-3712-4645-8475-dc0b7f7497b4" + ], + "x-ms-correlation-request-id": [ + "b6295439-3712-4645-8475-dc0b7f7497b4" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T160559Z:b6295439-3712-4645-8475-dc0b7f7497b4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 16:05:59 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TmpreExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14351" + ], + "x-ms-request-id": [ + "725ceac7-9c22-4f8e-8c6e-2d85c671448d" + ], + "x-ms-correlation-request-id": [ + "725ceac7-9c22-4f8e-8c6e-2d85c671448d" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T160614Z:725ceac7-9c22-4f8e-8c6e-2d85c671448d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 16:06:14 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TmpreExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14350" + ], + "x-ms-request-id": [ + "ea20127f-5ffd-414a-ae62-110c700f5b8d" + ], + "x-ms-correlation-request-id": [ + "ea20127f-5ffd-414a-ae62-110c700f5b8d" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T160629Z:ea20127f-5ffd-414a-ae62-110c700f5b8d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 16:06:29 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TmpreExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14348" + ], + "x-ms-request-id": [ + "53953f04-7d19-4021-ba9d-c5bd545e0d8b" + ], + "x-ms-correlation-request-id": [ + "53953f04-7d19-4021-ba9d-c5bd545e0d8b" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T160644Z:53953f04-7d19-4021-ba9d-c5bd545e0d8b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 16:06:43 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TmpreExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14347" + ], + "x-ms-request-id": [ + "1edd61c6-87e4-49dc-9764-69c2075e7f85" + ], + "x-ms-correlation-request-id": [ + "1edd61c6-87e4-49dc-9764-69c2075e7f85" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T160700Z:1edd61c6-87e4-49dc-9764-69c2075e7f85" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 16:06:59 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TmpreExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14346" + ], + "x-ms-request-id": [ + "6a9cab04-6343-4eef-9516-854d3f5420a9" + ], + "x-ms-correlation-request-id": [ + "6a9cab04-6343-4eef-9516-854d3f5420a9" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T160715Z:6a9cab04-6343-4eef-9516-854d3f5420a9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 16:07:14 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TmpreExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14345" + ], + "x-ms-request-id": [ + "7e57d6be-e424-41af-a2be-946336a43ea1" + ], + "x-ms-correlation-request-id": [ + "7e57d6be-e424-41af-a2be-946336a43ea1" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T160730Z:7e57d6be-e424-41af-a2be-946336a43ea1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 16:07:29 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TmpreExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14344" + ], + "x-ms-request-id": [ + "ceaef857-1bbe-438d-b96f-98f8ed611ebd" + ], + "x-ms-correlation-request-id": [ + "ceaef857-1bbe-438d-b96f-98f8ed611ebd" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T160745Z:ceaef857-1bbe-438d-b96f-98f8ed611ebd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 16:07:45 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TmpreExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14343" + ], + "x-ms-request-id": [ + "9d0a53c5-8270-4b51-b584-4fc104a5921c" + ], + "x-ms-correlation-request-id": [ + "9d0a53c5-8270-4b51-b584-4fc104a5921c" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T160801Z:9d0a53c5-8270-4b51-b584-4fc104a5921c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 16:08:01 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TmpreExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14342" + ], + "x-ms-request-id": [ + "35c8c2b0-58b2-454c-8c9f-7f85c6f41549" + ], + "x-ms-correlation-request-id": [ + "35c8c2b0-58b2-454c-8c9f-7f85c6f41549" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T160816Z:35c8c2b0-58b2-454c-8c9f-7f85c6f41549" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 16:08:15 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TmpreExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14341" + ], + "x-ms-request-id": [ + "66ab078f-670a-45bb-8355-758fa6bc6b91" + ], + "x-ms-correlation-request-id": [ + "66ab078f-670a-45bb-8355-758fa6bc6b91" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T160831Z:66ab078f-670a-45bb-8355-758fa6bc6b91" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 16:08:31 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TmpreExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14339" + ], + "x-ms-request-id": [ + "07c77dd5-d1d1-4cb8-b0e5-aaeabce846e2" + ], + "x-ms-correlation-request-id": [ + "07c77dd5-d1d1-4cb8-b0e5-aaeabce846e2" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T160846Z:07c77dd5-d1d1-4cb8-b0e5-aaeabce846e2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 16:08:46 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TmpreExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14337" + ], + "x-ms-request-id": [ + "efeb2fea-db20-4438-9d1a-504dd6b8102e" + ], + "x-ms-correlation-request-id": [ + "efeb2fea-db20-4438-9d1a-504dd6b8102e" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160216T160901Z:efeb2fea-db20-4438-9d1a-504dd6b8102e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 16 Feb 2016 16:09:01 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-AEMExtensionBasicWindows": [ + "crptestps2691" + ] + }, + "Variables": { + "SubscriptionId": "acf8322c-ac5c-4cbd-8907-5f5920784774" + } +} \ No newline at end of file diff --git a/src/ResourceManager/Compute/Commands.Compute/Commands.Compute.csproj b/src/ResourceManager/Compute/Commands.Compute/Commands.Compute.csproj index b3b95b251d5d..63c0a31a102d 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Commands.Compute.csproj +++ b/src/ResourceManager/Compute/Commands.Compute/Commands.Compute.csproj @@ -204,6 +204,18 @@ + + + + + + + + + + + + diff --git a/src/ResourceManager/Compute/Commands.Compute/Common/ConstantStringTypes.cs b/src/ResourceManager/Compute/Commands.Compute/Common/ConstantStringTypes.cs index 7d7a1f80e21d..3dbb6abaa083 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Common/ConstantStringTypes.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Common/ConstantStringTypes.cs @@ -88,6 +88,7 @@ public static class ProfileNouns public const string VirtualMachineExtensionImageVersion = "AzureRmVMExtensionImageVersion"; public const string VirtualMachineExtensionImageType = "AzureRmVMExtensionImageType"; public const string VirtualMachineChefExtension = "AzureRmVMChefExtension"; + public const string VirtualMachineAEMExtension = "AzureRmVMAEMExtension"; public const string AvailabilitySet = "AzureRmAvailabilitySet"; public const string VirtualMachineConfig = "AzureRmVMConfig"; diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/AEMExtensionConstants.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/AEMExtensionConstants.cs new file mode 100644 index 000000000000..d0f9c2e096c2 --- /dev/null +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/AEMExtensionConstants.cs @@ -0,0 +1,117 @@ +using Microsoft.Azure.Commands.Compute.Extension.AEM; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Text.RegularExpressions; +using System.Threading.Tasks; + +namespace Microsoft.Azure.Commands.Compute +{ + public static class AEMExtensionConstants + { + public const string VirtualMachineExtensionResourceType = "Microsoft.Compute/virtualMachines/extensions"; + public static Dictionary AEMExtensionDefaultName = new Dictionary() { { OSTypeWindows, "AzureCATExtensionHandler" }, { OSTypeLinux, "AzureEnhancedMonitorForLinux" } }; + public static Dictionary AEMExtensionPublisher = new Dictionary() { { OSTypeWindows, "Microsoft.AzureCAT.AzureEnhancedMonitoring" }, { OSTypeLinux, "Microsoft.OSTCExtensions" } }; + public static Dictionary AEMExtensionType = new Dictionary() { { OSTypeWindows, "AzureCATExtensionHandler" }, { OSTypeLinux, "AzureEnhancedMonitorForLinux" } }; + public static Dictionary AEMExtensionVersion = new Dictionary() { { OSTypeWindows, "2.2" }, { OSTypeLinux, "3.0" } }; + + public static Dictionary WADExtensionDefaultName = new Dictionary() { { OSTypeWindows, "IaaSDiagnostics" }, { OSTypeLinux, "LinuxDiagnostic" } }; + public static Dictionary WADExtensionPublisher = new Dictionary() { { OSTypeWindows, "Microsoft.Azure.Diagnostics" }, { OSTypeLinux, "Microsoft.OSTCExtensions" } }; + public static Dictionary WADExtensionType = new Dictionary() { { OSTypeWindows, "IaaSDiagnostics" }, { OSTypeLinux, "LinuxDiagnostic" } }; + public static Dictionary WADExtensionVersion = new Dictionary() { { OSTypeWindows, "1.5" }, { OSTypeLinux, "2.2" } }; + + public const string OSTypeWindows = "Windows"; + public const string OSTypeLinux = "Linux"; + public const string VMSizeExtraSmall = "ExtraSmall"; + public const string VMSizeStandard_A0 = "Standard_A0"; + public const string VMSizeBasic_A0 = "Basic_A0"; + public const string CurrentScriptVersion = "3.0.0.0"; + + public const string DISK_TYPE_STANDARD = "Standard"; + public const string DISK_TYPE_PREMIUM = "Premium"; + public const string WadTableName = "WADPerformanceCountersTable"; + public const string AzureEndpoint = "core.windows.net"; + public const int ContentAgeInMinutes = 5; + public const string MissingGuestAgentWarning = "Provision Guest Agent is not installed on this Azure Virtual Machine. Please read the documentation on how to download and install the Provision Guest Agent. After you have installed the Provision Guest Agent, enable it with the Enable-ProvisionGuestAgent_GUI commandlet that is part of this Powershell Module."; + public const string ROLECONTENT = "IaaS"; + public const string SchemasTable = "SchemasTable"; + public const string SchemasTablePhysicalTableName = "PhysicalTableName"; + public const string WADConfigXML = ""; + public static Dictionary> WADTablesV2 = new Dictionary>(StringComparer.InvariantCultureIgnoreCase) + { + { OSTypeLinux, new List() { "LinuxCpuVer2v0", "LinuxDiskVer2v0", "LinuxMemoryVer2v0" } }, + { OSTypeWindows, new List() { } } + }; + + public static Dictionary> PerformanceCounters = new Dictionary>() + { + { + OSTypeWindows, new List() + { + new PerformanceCounter() { counterSpecifier="\\Processor(_Total)\\% Processor Time", sampleRate = "PT1M"}, + new PerformanceCounter() { counterSpecifier="\\Processor Information(_Total)\\Processor Frequency",sampleRate="PT1M"}, + new PerformanceCounter() { counterSpecifier="\\Memory\\Available Bytes",sampleRate="PT1M"}, + new PerformanceCounter() { counterSpecifier="\\TCPv6\\Segments Retransmitted/sec",sampleRate="PT1M"}, + new PerformanceCounter() { counterSpecifier="\\TCPv4\\Segments Retransmitted/sec",sampleRate="PT1M"}, + new PerformanceCounter() { counterSpecifier="\\Network Interface(*)\\Bytes Sent/sec",sampleRate="PT1M"}, + new PerformanceCounter() { counterSpecifier="\\Network Interface(*)\\Bytes Received/sec",sampleRate="PT1M"} + } + }, + { + OSTypeLinux, new List() + { + new PerformanceCounter() { counterSpecifier="\\Processor\\PercentProcessorTime",sampleRate = "PT15S"}, + new PerformanceCounter() { counterSpecifier="\\Processor\\PercentIdleTime",sampleRate = "PT15S"}, + new PerformanceCounter() { counterSpecifier="\\Processor\\PercentPrivilegedTime",sampleRate = "PT15S"}, + new PerformanceCounter() { counterSpecifier="\\Processor\\PercentInterruptTime",sampleRate = "PT15S"}, + new PerformanceCounter() { counterSpecifier="\\Processor\\PercentDPCTime",sampleRate = "PT15S"}, + new PerformanceCounter() { counterSpecifier="\\Processor\\PercentUserTime",sampleRate = "PT15S"}, + new PerformanceCounter() { counterSpecifier="\\Processor\\PercentNiceTime",sampleRate = "PT15S"}, + new PerformanceCounter() { counterSpecifier="\\Processor\\PercentIOWaitTime",sampleRate = "PT15S"}, + new PerformanceCounter() { counterSpecifier="\\Memory\\PercentUsedMemory",sampleRate = "PT15S"}, + new PerformanceCounter() { counterSpecifier="\\Memory\\UsedMemory",sampleRate = "PT15S"}, + new PerformanceCounter() { counterSpecifier="\\Memory\\PercentAvailableMemory",sampleRate = "PT15S"}, + new PerformanceCounter() { counterSpecifier="\\Memory\\AvailableMemory",sampleRate = "PT15S"}, + new PerformanceCounter() { counterSpecifier="\\Memory\\PercentUsedByCache",sampleRate = "PT15S"}, + new PerformanceCounter() { counterSpecifier="\\Memory\\PercentUsedSwap",sampleRate = "PT15S"}, + new PerformanceCounter() { counterSpecifier="\\Memory\\UsedSwap",sampleRate = "PT15S"}, + new PerformanceCounter() { counterSpecifier="\\Memory\\AvailableSwap",sampleRate = "PT15S"}, + new PerformanceCounter() { counterSpecifier="\\Memory\\PagesPerSec",sampleRate = "PT15S"}, + new PerformanceCounter() { counterSpecifier="\\Memory\\PagesReadPerSec",sampleRate = "PT15S"}, + new PerformanceCounter() { counterSpecifier="\\Memory\\PagesWrittenPerSec",sampleRate = "PT15S"}, + new PerformanceCounter() { counterSpecifier="\\PhysicalDisk\\AverageTransferTime",sampleRate = "PT15S"}, + new PerformanceCounter() { counterSpecifier="\\PhysicalDisk\\AverageReadTime",sampleRate = "PT15S"}, + new PerformanceCounter() { counterSpecifier="\\PhysicalDisk\\AverageWriteTime",sampleRate = "PT15S"}, + new PerformanceCounter() { counterSpecifier="\\PhysicalDisk\\TransfersPerSecond",sampleRate = "PT15S"}, + new PerformanceCounter() { counterSpecifier="\\PhysicalDisk\\ReadsPerSecond",sampleRate = "PT15S"}, + new PerformanceCounter() { counterSpecifier="\\PhysicalDisk\\WritesPerSecond",sampleRate = "PT15S"}, + new PerformanceCounter() { counterSpecifier="\\PhysicalDisk\\BytesPerSecond",sampleRate = "PT15S"}, + new PerformanceCounter() { counterSpecifier="\\PhysicalDisk\\WriteBytesPerSecond",sampleRate = "PT15S"}, + new PerformanceCounter() { counterSpecifier="\\PhysicalDisk\\AverageDiskQueueLength",sampleRate = "PT15S"}, + new PerformanceCounter() { counterSpecifier="\\NetworkInterface\\BytesTotal",sampleRate = "PT15S"}, + new PerformanceCounter() { counterSpecifier="\\NetworkInterface\\BytesTransmitted",sampleRate = "PT15S"}, + new PerformanceCounter() { counterSpecifier="\\NetworkInterface\\BytesReceived",sampleRate = "PT15S"}, + new PerformanceCounter() { counterSpecifier="\\NetworkInterface\\PacketsTransmitted",sampleRate = "PT15S"}, + new PerformanceCounter() { counterSpecifier="\\NetworkInterface\\PacketsReceived",sampleRate = "PT15S"}, + new PerformanceCounter() { counterSpecifier="\\NetworkInterface\\TotalRxErrors",sampleRate = "PT15S"}, + new PerformanceCounter() { counterSpecifier="\\NetworkInterface\\TotalTxErrors",sampleRate = "PT15S"}, + new PerformanceCounter() { counterSpecifier="\\NetworkInterface\\TotalCollisions",sampleRate = "PT15S"}, + } + } + }; + + //internal static string GetStorageAccountFromUri(string uri) + //{ + // var match = Regex.Match(new Uri(uri).Host, "(.*?)\\..*"); + // if (match.Success) + // { + // return match.Groups[1].Value; + // } + // else + // { + // throw new ArgumentException("Could not determine storage account for OS disk. Please contact support"); + // } + //} + } +} diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/AEMHelper.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/AEMHelper.cs new file mode 100644 index 000000000000..0c716a64a2c7 --- /dev/null +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/AEMHelper.cs @@ -0,0 +1,694 @@ +using Microsoft.Azure.Commands.Compute.StorageServices; +using Microsoft.Azure.Common.Authentication.Models; +using Microsoft.Azure.Management.Compute.Models; +using Microsoft.Azure.Management.Storage; +using Microsoft.Azure.Management.Storage.Models; +using Microsoft.WindowsAzure.Commands.Sync.Download; +using Microsoft.WindowsAzure.Storage; +using Microsoft.WindowsAzure.Storage.Auth; +using Microsoft.WindowsAzure.Storage.Blob; +using Microsoft.WindowsAzure.Storage.Shared.Protocol; +using Microsoft.WindowsAzure.Storage.Table; +using Newtonsoft.Json.Linq; +using System; +using System.Collections.Generic; +using System.Diagnostics; +using System.Linq; +using System.Management.Automation; +using System.Management.Automation.Host; +using System.Text; +using System.Text.RegularExpressions; +using System.Threading; +using System.Threading.Tasks; + +namespace Microsoft.Azure.Commands.Compute.Extension.AEM +{ + internal class AEMHelper + { + private Action _ErrorAction = null; + private Action _VerboseAction = null; + private Action _WarningAction = null; + private PSHostUserInterface _UI = null; + private Dictionary _StorageCache = new Dictionary(StringComparer.InvariantCultureIgnoreCase); + private Dictionary _StorageKeyCache = new Dictionary(StringComparer.InvariantCultureIgnoreCase); + private StorageManagementClient _StorageClient; + private AzureSubscription _Subscription; + + public AEMHelper(Action errorAction, Action verboseAction, Action warningAction, + PSHostUserInterface ui, StorageManagementClient storageClient, AzureSubscription subscription) + { + this._ErrorAction = errorAction; + this._VerboseAction = verboseAction; + this._WarningAction = warningAction; + this._UI = ui; + this._StorageClient = storageClient; + this._Subscription = subscription; + } + + internal string GetStorageAccountFromUri(string uri) + { + var match = Regex.Match(new Uri(uri).Host, "(.*?)\\..*"); + if (match.Success) + { + return match.Groups[1].Value; + } + else + { + WriteError("Could not determine storage account for OS disk. Please contact support"); + throw new ArgumentException("Could not determine storage account for OS disk. Please contact support"); + } + } + + internal StorageAccount GetStorageAccountFromCache(string accountName) + { + if (_StorageCache.ContainsKey(accountName)) + { + return _StorageCache[accountName]; + } + + var listResponse = this._StorageClient.StorageAccounts.List(); + var account = listResponse.First(accTemp => accTemp.Name.Equals(accountName, StringComparison.InvariantCultureIgnoreCase)); + + _StorageCache.Add(account.Name, account); + + return account; + } + internal string GetResourceGroupFromId(string id) + { + var matcher = new Regex("/subscriptions/([^/]+)/resourceGroups/([^/]+)/providers/(\\w+)"); + var result = matcher.Match(id); + if (!result.Success || result.Groups == null || result.Groups.Count < 3) + { + throw new InvalidOperationException(string.Format("Cannot find resource group name and storage account name from resource identity {0}", id)); + } + + return result.Groups[2].Value; + } + + internal bool IsPremiumStorageAccount(string accountName) + { + return IsPremiumStorageAccount(this.GetStorageAccountFromCache(accountName)); + } + + internal int? GetDiskSizeGbFromBlobUri(string sBlobUri) + { + var blobMatch = Regex.Match(sBlobUri, "https?://(\\S*?)\\..*?/(.*)"); + if (!blobMatch.Success) + { + WriteError("Blob URI of disk does not match known pattern {0}", sBlobUri); + throw new ArgumentException("Blob URI of disk does not match known pattern"); + } + var accountName = blobMatch.Groups[1].Value; + + BlobUri blobUri; + if (BlobUri.TryParseUri(new Uri(sBlobUri), out blobUri)) + { + var account = this.GetStorageAccountFromCache(accountName); + var resGroupName = this.GetResourceGroupFromId(account.Id); + StorageCredentialsFactory storageCredentialsFactory = new StorageCredentialsFactory(resGroupName, + this._StorageClient, this._Subscription); + StorageCredentials sc = storageCredentialsFactory.Create(blobUri); + CloudStorageAccount cloudStorageAccount = new CloudStorageAccount(sc, true); + CloudBlobClient blobClient = cloudStorageAccount.CreateCloudBlobClient(); + CloudBlobContainer blobContainer = blobClient.GetContainerReference(blobUri.BlobContainerName); + var cloudref = blobContainer.GetBlobReferenceFromServer(blobUri.BlobName); + + //var key = this.GetAzureStorageKeyFromCache(accountName); + //var account = this.GetStorageAccountFromCache(accountName); + //var credentials = new StorageCredentials(account.Name.ToLower(), key); + //var client = new CloudBlobClient(account.PrimaryEndpoints.Blob, credentials); + //var cloudref = blobClient.GetBlobReferenceFromServer(sc.TransformUri(new Uri(sBlobUri))); + return (int?)(cloudref.Properties.Length / (1024 * 1024 * 1024)); + } + + return null; + } + + internal AzureSLA GetVMSLA(VirtualMachine virtualMachine) + { + var result = new AzureSLA(); + result.HasSLA = false; + switch (virtualMachine.HardwareProfile.VmSize) + { + case "Standard_DS1": + result.HasSLA = true; + result.IOPS = "3200"; + result.TP = "32"; + break; + case "Standard_DS2": + result.HasSLA = true; + result.IOPS = "6400"; + result.TP = "64"; + break; + case "Standard_DS3": + result.HasSLA = true; + result.IOPS = "12800"; + result.TP = "128"; + break; + case "Standard_DS4": + result.HasSLA = true; + result.IOPS = "25600"; + result.TP = "256"; + break; + case "Standard_DS11": + result.HasSLA = true; + result.IOPS = "6400"; + result.TP = "64"; + break; + case "Standard_DS12": + result.HasSLA = true; + result.IOPS = "12800"; + result.TP = "128"; + break; + case "Standard_DS13": + result.HasSLA = true; + result.IOPS = "25600"; + result.TP = "256"; + break; + case "Standard_DS14": + result.HasSLA = true; + result.IOPS = "50000"; + result.TP = "512"; + break; + case "Standard_GS1": + result.HasSLA = true; + result.IOPS = "5000"; + result.TP = "125"; + break; + case "Standard_GS2": + result.HasSLA = true; + result.IOPS = "10000"; + result.TP = "250"; + break; + case "Standard_GS3": + result.HasSLA = true; + result.IOPS = "20000"; + result.TP = "500"; + break; + case "Standard_GS4": + result.HasSLA = true; + result.IOPS = "40000"; + result.TP = "1000"; + break; + case "Standard_GS5": + result.HasSLA = true; + result.IOPS = "80000"; + result.TP = "2000"; + break; + default: + break; + } + + return result; + } + + + + internal string GetAzureStorageKeyFromCache(string accountName) + { + if (_StorageKeyCache.ContainsKey(accountName)) + { + return _StorageKeyCache[accountName]; + } + + var account = this.GetStorageAccountFromCache(accountName); + var resourceGroup = this.GetResourceGroupFromId(account.Id); + var keys = this._StorageClient.StorageAccounts.ListKeys(resourceGroup, account.Name); + + _StorageKeyCache.Add(account.Name, keys.StorageAccountKeys.Key1); + + return keys.StorageAccountKeys.Key1; + } + + internal string GetCoreEndpoint(string storageAccountName) + { + var storage = this.GetStorageAccountFromCache(storageAccountName); + //var tableendpoint = storage.PrimaryEndpoints.Table.Host; + var blobendpoint = storage.PrimaryEndpoints.Blob.Host; + + //var tableMatch = Regex.Match(tableendpoint, ".*?\\.table\\.(.*)"); + //if (tableMatch.Success) + //{ + // return tableMatch.Groups[1].Value; + //} + + var blobMatch = Regex.Match(blobendpoint, ".*?\\.blob\\.(.*)"); + if (blobMatch.Success) + { + return blobMatch.Groups[1].Value; + } + + WriteWarning("Could not extract endpoint information from Azure Storage Account. Using default {0}", AEMExtensionConstants.AzureEndpoint); + return AEMExtensionConstants.AzureEndpoint; + } + + internal string GetAzureSAPTableEndpoint(StorageAccount storage) + { + return storage.PrimaryEndpoints.Table.ToString(); + } + + internal bool IsPremiumStorageAccount(StorageAccount account) + { + if (account.AccountType.HasValue) + { + return (account.AccountType.Value.ToString().StartsWith("Premium")); + } + + WriteError("No AccountType for storage account {0} found", account.Name); + throw new ArgumentException("No AccountType for storage account found"); + } + + internal AzureSLA GetDiskSLA(OSDisk osdisk) + { + return this.GetDiskSLA(osdisk.DiskSizeGB, osdisk.Vhd.Uri); + } + + internal AzureSLA GetDiskSLA(DataDisk datadisk) + { + return this.GetDiskSLA(datadisk.DiskSizeGB, datadisk.Vhd.Uri); + } + + internal AzureSLA GetDiskSLA(int? diskSize, string vhdUri) + { + if (!diskSize.HasValue) + { + diskSize = this.GetDiskSizeGbFromBlobUri(vhdUri); + } + + AzureSLA sla = new AzureSLA(); + if (diskSize > 0 && diskSize < 129) + { + // P10 + sla.IOPS = "500"; + sla.TP = "100"; + } + else if (diskSize > 0 && diskSize < 513) + { + // P20 + sla.IOPS = "2300"; + sla.TP = "150"; + } + else if (diskSize > 0 && diskSize < 1025) + { + // P30 + sla.IOPS = "5000"; + sla.TP = "200"; + } + else + { + WriteError("Unkown disk size for Premium Storage - {0}", diskSize); + throw new ArgumentException("Unkown disk size for Premium Storage"); + } + + return sla; + } + + internal void WriteHost(string message, params string[] args) + { + this.WriteHost(message, newLine: true, foregroundColor: null, args: args); + } + + internal void WriteHost(string message, bool newLine) + { + this.WriteHost(message, newLine: newLine, foregroundColor: null); + } + internal void WriteHost(string message, bool newLine, params string[] args) + { + this.WriteHost(message, newLine: newLine, foregroundColor: null, args: args); + } + + internal void WriteHost(string message, ConsoleColor foregroundColor) + { + this.WriteHost(message, newLine: true, foregroundColor: foregroundColor); + } + + internal void WriteHost(string message, bool newLine, ConsoleColor? foregroundColor, params string[] args) + { + Trace.WriteLine("WriteHost:" + String.Format(message, args)); + + try + { + this.WriteVerbose(message, args); + var fColor = foregroundColor != null ? foregroundColor.Value : this._UI.RawUI.ForegroundColor; + var bgColor = this._UI.RawUI.BackgroundColor; + + if (newLine) + { + this._UI.WriteLine(fColor, bgColor, String.Format(message, args)); + } + else + { + this._UI.Write(fColor, bgColor, String.Format(message, args)); + } + } + catch (Exception ex) + { + Debug.WriteLine("Exception while trying to write to UI: " + ex.Message); + } + } + + internal void WriteVerbose(string message, params object[] args) + { + Trace.WriteLine("WriteVerbose:" + String.Format(message, args)); + + try + { + this._VerboseAction(String.Format(message, args)); + } + catch (Exception ex) + { + Debug.WriteLine("Exception while trying to write to UI: " + ex.Message); + } + } + + internal void WriteError(string message, params object[] args) + { + Trace.WriteLine("WriteError:" + String.Format(message, args)); + + try + { + this._ErrorAction(new ErrorRecord(new Exception(String.Format(message, args)), "Error", ErrorCategory.NotSpecified, null)); + } + catch (Exception ex) + { + Debug.WriteLine("Exception while trying to write to UI: " + ex.Message); + } + } + + internal void WriteWarning(string message, params object[] args) + { + Trace.WriteLine("WriteWarning:" + String.Format(message, args)); + + try + { + this._WarningAction(String.Format(message, args)); + } + catch (Exception ex) + { + Debug.WriteLine("Exception while trying to write to UI: " + ex.Message); + } + } + + internal VirtualMachineExtension GetExtension(VirtualMachine vm, string type, string publisher) + { + if (vm.Resources != null) + { + return vm.Resources.FirstOrDefault(ext => + ext.VirtualMachineExtensionType.Equals(type) + && ext.Publisher.Equals(publisher)); + } + return null; + } + + internal VirtualMachineExtensionInstanceView GetExtension(VirtualMachine vm, VirtualMachineInstanceView vmStatus, string type, string publisher) + { + var ext = this.GetExtension(vm, type, publisher); + if (ext == null) + { + return null; + } + + if (vmStatus.Extensions == null) + { + return null; + } + return vmStatus.Extensions.FirstOrDefault(extSt => extSt.Name.Equals(ext.Name)); + } + + internal void CheckMonProp(string CheckMessage, string PropertyName, JObject Properties, string ExpectedValue, AEMTestResult parentResult, bool checkExistance = false) + { + var value = GetMonPropertyValue(PropertyName, Properties); + WriteHost(CheckMessage + "...", false); + + if (!String.IsNullOrEmpty(value) && checkExistance) + { + parentResult.PartialResults.Add(new AEMTestResult(CheckMessage, true)); + WriteHost("OK ", ConsoleColor.Green); + } + + if ((!String.IsNullOrEmpty(value) && String.IsNullOrEmpty(ExpectedValue)) || (value == ExpectedValue)) + { + parentResult.PartialResults.Add(new AEMTestResult(CheckMessage, true)); + WriteHost("OK ", ConsoleColor.Green); + } + else + { + parentResult.PartialResults.Add(new AEMTestResult(CheckMessage, false)); + WriteHost("NOT OK ", ConsoleColor.Red); + } + } + + internal string GetMonPropertyValue(string PropertyName, JObject Properties) + { + if (Properties == null) + { + return null; + } + if (Properties["cfg"] == null) + { + return null; + } + + var set = Properties["cfg"].FirstOrDefault((tok) => + { + JValue jval = (tok["key"] as JValue); + if (jval != null && jval.Value != null) + { + return jval.Value.Equals(PropertyName); + } + + return false; + }); + if (set == null) + { + return null; + } + if (set["value"] == null) + { + return null; + } + + if ((set["value"] as JValue) != null) + { + return (set["value"] as JValue).Value as string; + } + return null; + + } + + internal bool CheckWADConfiguration(System.Xml.XmlDocument CurrentConfig) + { + if ((CurrentConfig == null) + || (CurrentConfig.SelectSingleNode("/WadCfg/DiagnosticMonitorConfiguration") == null) + || (int.Parse(CurrentConfig.SelectSingleNode("/WadCfg/DiagnosticMonitorConfiguration/@overallQuotaInMB").Value) < 4096) + || (CurrentConfig.SelectSingleNode("/WadCfg/DiagnosticMonitorConfiguration/PerformanceCounters") == null) + || (!CurrentConfig.SelectSingleNode("/WadCfg/DiagnosticMonitorConfiguration/PerformanceCounters/@scheduledTransferPeriod"). + Value.Equals("PT1M", StringComparison.InvariantCultureIgnoreCase)) + || (CurrentConfig.SelectSingleNode("/WadCfg/DiagnosticMonitorConfiguration/PerformanceCounters/PerformanceCounterConfiguration") == null)) + { + return false; + } + + return true; + } + + internal ServiceProperties GetStorageAnalytics(string storageAccountName) + { + var key = this.GetAzureStorageKeyFromCache(storageAccountName); + var credentials = new StorageCredentials(storageAccountName, key); + var cloudStorageAccount = new CloudStorageAccount(credentials, true); + return cloudStorageAccount.CreateCloudBlobClient().GetServiceProperties(); + } + + internal bool CheckStorageAnalytics(string storageAccountName, ServiceProperties currentConfig) + { + if ((currentConfig == null) + || (currentConfig.Logging == null) + || ((currentConfig.Logging.LoggingOperations & LoggingOperations.All) != LoggingOperations.All) + || (currentConfig.MinuteMetrics == null) + || (currentConfig.MinuteMetrics.MetricsLevel <= 0) + || (currentConfig.MinuteMetrics.RetentionDays < 0)) + { + WriteVerbose("Storage account {0} does not have the required metrics enabled", storageAccountName); + return false; + } + + WriteVerbose("Storage account {0} has required metrics enabled", storageAccountName); + return true; + } + + internal bool CheckTableAndContent(string StorageAccountName, string TableName, string FilterString, string WaitChar, bool UseNewTableNames, int TimeoutinMinutes = 15) + { + var tableExists = false; + StorageAccount account = null; + if (!String.IsNullOrEmpty(StorageAccountName)) + { + account = this.GetStorageAccountFromCache(StorageAccountName); + } + if (account != null) + { + var endpoint = this.GetCoreEndpoint(StorageAccountName); + //var keys = this.GetAzureStorageKeyFromCache(StorageAccountName); + //var context = New - AzureStorageContext - StorageAccountName $StorageAccountName - StorageAccountKey $keys - Endpoint $endpoint + var key = this.GetAzureStorageKeyFromCache(StorageAccountName); + var credentials = new StorageCredentials(StorageAccountName, key); + var cloudStorageAccount = new CloudStorageAccount(credentials, endpoint, true); + var tableClient = cloudStorageAccount.CreateCloudTableClient(); + var checkStart = DateTime.Now; + var wait = true; + CloudTable table = null; + if (UseNewTableNames) + { + try + { + table = tableClient.ListTables().FirstOrDefault(tab => tab.Name.StartsWith("WADMetricsPT1M")); + } + catch { } //#table name should be sorted + } + else + { + try + { + table = tableClient.GetTableReference(TableName); + } + catch { } + } + + while (wait) + { + if (table != null && table.Exists()) + { + TableQuery query = new TableQuery(); + query.FilterString = FilterString; + var results = table.ExecuteQuery(query); + if (results.Count() > 0) + { + tableExists = true; + break; + } + } + + WriteHost(WaitChar, newLine: false); + Thread.Sleep(5000); + if (UseNewTableNames) + { + try + { + table = tableClient.ListTables().FirstOrDefault(tab => tab.Name.StartsWith("WADMetricsPT1M")); + } + catch { } //#table name should be sorted + } + else + { + try + { + table = tableClient.GetTableReference(TableName); + } + catch { } + } + + wait = ((DateTime.Now) - checkStart).TotalMinutes < TimeoutinMinutes; + } + } + return tableExists; + } + + //internal bool WaitforTable(CloudTableClient tableClient, string tableName, string waitChar, DateTime checkStart, int timeout) + //{ + // int minRowCount = 3; + // var tableExists = false; + // var wait = true; + // var table = tableClient.GetTableReference(tableName); + // do + // { + // if (table.Exists()) + // { + // var schemaTableResult = table.ExecuteQuery(new + // TableQuery() { SelectColumns = new List() { AEMExtensionConstants.SchemasTablePhysicalTableName } }); + + // if (schemaTableResult.Count() >= minRowCount) + // { + // wait = false; + // tableExists = true; + // } + // } + // else + // { + // WriteHost(waitChar, newLine: false); + // Thread.Sleep(5000); + // wait = ((DateTime.Now) - checkStart).TotalMinutes < timeout; + // } + // } while (wait); + + // return tableExists; + //} + + internal bool CheckDiagnosticsTable(string storageAccountName, string resId, string host, string waitChar, string osType, int TimeoutinMinutes = 15) + { + var tableExists = true; + StorageAccount account = null; + if (!String.IsNullOrEmpty(storageAccountName)) + { + account = this.GetStorageAccountFromCache(storageAccountName); + } + if (account != null) + { + var endpoint = this.GetCoreEndpoint(storageAccountName); + var key = this.GetAzureStorageKeyFromCache(storageAccountName); + var credentials = new StorageCredentials(storageAccountName, key); + var cloudStorageAccount = new CloudStorageAccount(credentials, endpoint, true); + var tableClient = cloudStorageAccount.CreateCloudTableClient(); + var checkStart = DateTime.Now; + var searchTime = DateTime.UtcNow.AddMinutes(-5); + + //if (!this.WaitforTable(tableClient, AEMExtensionConstants.SchemasTable, waitChar, checkStart, TimeoutinMinutes)) + //{ + // this.WriteVerbose("Table SchemaTable not found"); + // return false; + //} + + //var table = tableClient.GetTableReference(AEMExtensionConstants.SchemasTable); + //var schemaTableResult = table.ExecuteQuery(new TableQuery() { SelectColumns = new List() { AEMExtensionConstants.SchemasTablePhysicalTableName } }); + //tableExists = schemaTableResult.Count() > 0; + + foreach (var tableName in AEMExtensionConstants.WADTablesV2[osType]) + { + var query = TableQuery.CombineFilters( + TableQuery.GenerateFilterCondition("DeploymentId", QueryComparisons.Equal, resId), + TableOperators.And, + TableQuery.CombineFilters( + TableQuery.GenerateFilterCondition("Host", QueryComparisons.Equal, host), + TableOperators.And, + TableQuery.GenerateFilterConditionForDate("Timestamp", QueryComparisons.GreaterThanOrEqual, searchTime))); + + + var perfCounterTable = tableClient.GetTableReference(tableName); + + bool wait = true; + while (wait) + { + var results = perfCounterTable.ExecuteQuery(new TableQuery() { FilterString = query }); + if (results.Count() > 0) + { + tableExists &= true; + break; + } + else + { + WriteHost(waitChar, newLine: false); + Thread.Sleep(5000); + } + wait = ((DateTime.Now) - checkStart).TotalMinutes < TimeoutinMinutes; + } + if (!wait) + { + WriteVerbose("PerfCounter Table " + tableName + " not found"); + tableExists = false; + break; + } + } + } + return tableExists; + } + } +} diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/AEMStringExtensions.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/AEMStringExtensions.cs new file mode 100644 index 000000000000..ec3e1104ea02 --- /dev/null +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/AEMStringExtensions.cs @@ -0,0 +1,27 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Text.RegularExpressions; +using System.Threading.Tasks; + +namespace Microsoft.Azure.Commands.Compute.Extension.AEM +{ + internal static class AEMStringExtensions + { + public static Match Match(this string text, string pattern) + { + return Regex.Match(text, pattern); + } + + public static Match Match(this char text, string pattern) + { + return Regex.Match(text.ToString(), pattern); + } + + public static bool Matches(this char text, string pattern) + { + return Regex.Match(text.ToString(), pattern).Success; + } + } +} diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/AEMTestResult.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/AEMTestResult.cs new file mode 100644 index 000000000000..059838d8eb86 --- /dev/null +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/AEMTestResult.cs @@ -0,0 +1,62 @@ +using System; +using System.Collections.Generic; +using System.Diagnostics; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Microsoft.Azure.Commands.Compute.Extension.AEM +{ + public class AEMTestResult + { + private bool? _Result = null; + + public string TestName { get; set; } + public List PartialResults { get; set; } + public bool Result + { + get + { + if (this._Result.HasValue) + { + if (this.PartialResults.Count > 0) + { + Debug.WriteLine("There should be no partial results."); + } + + return this._Result.Value; + } + else if (this.PartialResults.Count > 0) + { + bool partialResult = true; + foreach (var partResult in this.PartialResults) + { + partialResult &= partResult.Result; + } + + return partialResult; + } + + return false; + } + set + { + this._Result = value; + } + } + + public AEMTestResult() + { + this.PartialResults = new List(); + } + public AEMTestResult(string testName, params string[] args) : this() + { + this.TestName = String.Format(testName, args); + } + + public AEMTestResult(string testName, bool result, params string[] args) : this(testName, args) + { + this.Result = result; + } + } +} diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/AzureSLA.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/AzureSLA.cs new file mode 100644 index 000000000000..aad6486edf55 --- /dev/null +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/AzureSLA.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Microsoft.Azure.Commands.Compute +{ + public class AzureSLA + { + public bool HasSLA { get; internal set; } + public string IOPS { get; internal set; } + public string TP { get; internal set; } + } +} diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/ExtensionConfig.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/ExtensionConfig.cs new file mode 100644 index 000000000000..6b6eab90a93d --- /dev/null +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/ExtensionConfig.cs @@ -0,0 +1,15 @@ +using Newtonsoft.Json; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Microsoft.Azure.Commands.Compute +{ + public class ExtensionConfig + { + [JsonProperty("cfg")] + public List Config { get; set; } + } +} diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/GetAzureRmVMAEMExtension.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/GetAzureRmVMAEMExtension.cs new file mode 100644 index 000000000000..c20368454452 --- /dev/null +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/GetAzureRmVMAEMExtension.cs @@ -0,0 +1,145 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Linq; +using System.Management.Automation; +using Microsoft.Azure.Commands.Compute.Common; +using Microsoft.Azure.Commands.Compute.Models; +using Microsoft.Azure.Management.Compute; +using Microsoft.Azure.Management.Compute.Models; +using Microsoft.Rest.Azure; + +namespace Microsoft.Azure.Commands.Compute +{ + [Cmdlet( + VerbsCommon.Get, + ProfileNouns.VirtualMachineAEMExtension), + OutputType( + typeof(PSVirtualMachineExtension))] + public class GetAzureRmVMAEMExtension : VirtualMachineExtensionBaseCmdlet + { + [Parameter( + Mandatory = true, + Position = 0, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The resource group name.")] + [ValidateNotNullOrEmpty] + public string ResourceGroupName { get; set; } + + [Alias("ResourceName")] + [Parameter( + Mandatory = true, + Position = 1, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The virtual machine name.")] + [ValidateNotNullOrEmpty] + public string VMName { get; set; } + + [Alias("ExtensionName")] + [Parameter( + Mandatory = false, + Position = 2, + ValueFromPipelineByPropertyName = true, + HelpMessage = "Extension Name.")] + public string Name { get; set; } + + [Parameter( + Position = 3, + ValueFromPipelineByPropertyName = true, + HelpMessage = "To show the status.")] + [ValidateNotNullOrEmpty] + public SwitchParameter Status { get; set; } + + [Parameter( + Mandatory = false, + Position = 4, + ValueFromPipelineByPropertyName = false, + HelpMessage = "Operating System Type of the virtual machines. Possible values: Windows | Linux")] + public string OSType { get; set; } + + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + ExecuteClientAction(() => + { + if (string.IsNullOrEmpty(this.Name)) + { + var virtualMachine = ComputeClient.ComputeManagementClient.VirtualMachines.Get(this.ResourceGroupName, this.VMName); + + var osdisk = virtualMachine.StorageProfile.OsDisk; + if (String.IsNullOrEmpty(this.OSType)) + { + this.OSType = osdisk.OsType; + } + if (String.IsNullOrEmpty(this.OSType)) + { + WriteError("Could not determine Operating System of the VM. Please provide the Operating System type ({0} or {1}) via parameter OSType", + AEMExtensionConstants.OSTypeWindows, AEMExtensionConstants.OSTypeLinux); + return; + } + + var aemExtension = virtualMachine.Resources != null + ? virtualMachine.Resources.FirstOrDefault(extension => + extension.Publisher.Equals(AEMExtensionConstants.AEMExtensionPublisher[OSType], StringComparison.InvariantCultureIgnoreCase) && + extension.VirtualMachineExtensionType.Equals(AEMExtensionConstants.AEMExtensionType[OSType], StringComparison.InvariantCultureIgnoreCase)) + : null; + + if (aemExtension == null) + { + WriteObject(null); + return; + } + else { + this.Name = aemExtension.Name; + } + } + + AzureOperationResponse virtualMachineExtensionGetResponse = null; + if (Status.IsPresent) + { + virtualMachineExtensionGetResponse = + this.VirtualMachineExtensionClient.GetWithInstanceView(this.ResourceGroupName, + this.VMName, this.Name); + } + else + { + virtualMachineExtensionGetResponse = this.VirtualMachineExtensionClient.GetWithHttpMessagesAsync( + this.ResourceGroupName, + this.VMName, + this.Name).GetAwaiter().GetResult(); + } + + var returnedExtension = virtualMachineExtensionGetResponse.ToPSVirtualMachineExtension(this.ResourceGroupName); + WriteObject(returnedExtension); + }); + } + + private void WriteInformation(string message, params string[] args) + { + base.WriteInformation(String.Format(message, args), new string[0]); + } + + private void WriteVerbose(string message, params object[] args) + { + base.WriteVerbose(String.Format(message, args)); + } + + private void WriteError(string message, params object[] args) + { + base.WriteError(new ErrorRecord(new Exception(String.Format(message, args)), "Error", ErrorCategory.NotSpecified, null)); + } + } +} diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/KeyValuePair.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/KeyValuePair.cs new file mode 100644 index 000000000000..ef9d3078e4bf --- /dev/null +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/KeyValuePair.cs @@ -0,0 +1,26 @@ +using Newtonsoft.Json; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Microsoft.Azure.Commands.Compute +{ + public class KeyValuePair + { + [JsonProperty("key")] + public string Key { get; set; } + + [JsonProperty("value")] + public string Value { get; set; } + + public KeyValuePair() { } + + public KeyValuePair(string key, string value) + { + this.Key = key; + this.Value = value; + } + } +} diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/PerformanceCounter.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/PerformanceCounter.cs new file mode 100644 index 000000000000..331613d6a109 --- /dev/null +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/PerformanceCounter.cs @@ -0,0 +1,14 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Microsoft.Azure.Commands.Compute.Extension.AEM +{ + public class PerformanceCounter + { + internal string counterSpecifier; + internal string sampleRate; + } +} diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/RemoveAzureRmVMAEMExtension.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/RemoveAzureRmVMAEMExtension.cs new file mode 100644 index 000000000000..6dd505f7f128 --- /dev/null +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/RemoveAzureRmVMAEMExtension.cs @@ -0,0 +1,117 @@ +using AutoMapper; +using Microsoft.Azure.Commands.Compute.Common; +using Microsoft.Azure.Commands.Compute.Models; +using Microsoft.Azure.Management.Compute.Models; +using System; +using System.Globalization; +using System.Linq; +using System.Management.Automation; +using Microsoft.Azure.Management.Compute; +using Microsoft.Azure.Management.Storage; +using Microsoft.Azure.Common.Authentication; +using Microsoft.Azure.Commands.Compute.Extension.AEM; +using Microsoft.Azure.Common.Authentication.Models; + +namespace Microsoft.Azure.Commands.Compute +{ + [Cmdlet( + VerbsCommon.Remove, + ProfileNouns.VirtualMachineAEMExtension)] + [OutputType(typeof(PSAzureOperationResponse))] + public class RemoveAzureRmVMAEMExtension : VirtualMachineExtensionBaseCmdlet + { + private AEMHelper _Helper = null; + + [Parameter( + Mandatory = true, + Position = 0, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The resource group name.")] + [ValidateNotNullOrEmpty] + public string ResourceGroupName { get; set; } + + [Alias("ResourceName")] + [Parameter( + Mandatory = true, + Position = 1, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The virtual machine name.")] + [ValidateNotNullOrEmpty] + public string VMName { get; set; } + + [Alias("ExtensionName")] + [Parameter( + Mandatory = false, + Position = 2, + ValueFromPipelineByPropertyName = true, + HelpMessage = "Name of the ARM resource that represents the extension.")] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter( + Mandatory = false, + Position = 3, + ValueFromPipelineByPropertyName = false, + HelpMessage = "Operating System Type of the virtual machines. Possible values: Windows | Linux")] + public string OSType { get; set; } + + public override void ExecuteCmdlet() + { + this._Helper = new AEMHelper((err) => this.WriteError(err), (msg) => this.WriteVerbose(msg), (msg) => this.WriteWarning(msg), + this.CommandRuntime.Host.UI, + AzureSession.ClientFactory.CreateClient(DefaultProfile.Context, AzureEnvironment.Endpoint.ResourceManager), + this.DefaultContext.Subscription); + + base.ExecuteCmdlet(); + + ExecuteClientAction(() => + { + VirtualMachine virtualMachine = null; + if (String.IsNullOrEmpty(this.OSType)) + { + virtualMachine = ComputeClient.ComputeManagementClient.VirtualMachines.Get( + this.ResourceGroupName, this.VMName); + this.OSType = virtualMachine.StorageProfile.OsDisk.OsType; + } + if (String.IsNullOrEmpty(this.OSType)) + { + this._Helper.WriteError("Could not determine Operating System of the VM. Please provide the Operating System type ({0} or {1}) via parameter OSType", + AEMExtensionConstants.OSTypeWindows, AEMExtensionConstants.OSTypeLinux); + return; + } + + if (string.IsNullOrEmpty(this.Name)) + { + if (virtualMachine == null) + { + virtualMachine = ComputeClient.ComputeManagementClient.VirtualMachines.Get( + this.ResourceGroupName, this.VMName); + } + var aemExtension = virtualMachine.Resources != null + ? virtualMachine.Resources.FirstOrDefault(extension => + extension.Publisher.Equals(AEMExtensionConstants.AEMExtensionPublisher[this.OSType], StringComparison.InvariantCultureIgnoreCase) && + extension.VirtualMachineExtensionType.Equals(AEMExtensionConstants.AEMExtensionType[this.OSType], StringComparison.InvariantCultureIgnoreCase)) + : null; + + if (aemExtension == null) + { + WriteWarning(string.Format(CultureInfo.InvariantCulture, Properties.Resources.AEMExtensionNotFound, this.ResourceGroupName, this.VMName)); + return; + } + else + { + this.Name = aemExtension.Name; + } + } + + + var op = this.VirtualMachineExtensionClient.DeleteWithHttpMessagesAsync( + this.ResourceGroupName, + this.VMName, + this.Name).GetAwaiter().GetResult(); + var result = Mapper.Map(op); + WriteObject(result); + }); + } + } +} diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/SetAzureRmVMAEMExtension.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/SetAzureRmVMAEMExtension.cs new file mode 100644 index 000000000000..866de2d6158e --- /dev/null +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/SetAzureRmVMAEMExtension.cs @@ -0,0 +1,486 @@ +// ---------------------------------------------------------------------------------- +// +// 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 System; +using System.Collections.Generic; +using System.Linq; +using System.Management.Automation; +using System.Text; +using System.Threading.Tasks; +using Microsoft.Azure.Management.Compute; +using Microsoft.Azure.Management.Compute.Models; +using Microsoft.Azure.Management.Storage.Models; +using Newtonsoft.Json; +using Microsoft.Azure.Management.Storage; +using Microsoft.Azure.Common.Authentication; +using Microsoft.Azure.Common.Authentication.Models; +using System.Text.RegularExpressions; +using System.Net; +using Microsoft.WindowsAzure.Commands.Common.Storage; +using Microsoft.WindowsAzure.Storage.Auth; +using Microsoft.WindowsAzure.Storage.Blob; +using Microsoft.WindowsAzure.Storage; +using Microsoft.WindowsAzure.Storage.Shared.Protocol; +using Microsoft.Azure.Commands.Compute.Extension.AEM; +using AutoMapper; + +namespace Microsoft.Azure.Commands.Compute +{ + [Cmdlet( + VerbsCommon.Set, + ProfileNouns.VirtualMachineAEMExtension)] + [OutputType(typeof(PSAzureOperationResponse))] + public class SetAzureRmVMAEMExtension : VirtualMachineExtensionBaseCmdlet + { + private AEMHelper _Helper = null; + + [Parameter( + Mandatory = true, + Position = 0, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The resource group name.")] + [ValidateNotNullOrEmpty] + public string ResourceGroupName { get; set; } + + [Alias("ResourceName")] + [Parameter( + Mandatory = true, + Position = 1, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The virtual machine name.")] + [ValidateNotNullOrEmpty] + public string VMName { get; set; } + + [Parameter( + Mandatory = false, + Position = 2, + ValueFromPipelineByPropertyName = false, + HelpMessage = "If this parameter is provided, the commandlet will not enable Windows Azure Diagnostics for this virtual machine.")] + public SwitchParameter DisableWAD { get; set; } + + [Parameter( + Mandatory = false, + Position = 3, + ValueFromPipelineByPropertyName = false, + HelpMessage = "Name of the storage account that should be used to store analytics data.")] + public string WADStorageAccountName { get; set; } + + [Parameter( + Mandatory = false, + Position = 4, + ValueFromPipelineByPropertyName = false, + HelpMessage = "Operating System Type of the virtual machines. Possible values: Windows | Linux")] + public string OSType { get; set; } + + public SetAzureRmVMAEMExtension() + { + } + + public override void ExecuteCmdlet() + { + this._Helper = new AEMHelper((err) => this.WriteError(err), (msg) => this.WriteVerbose(msg), (msg) => this.WriteWarning(msg), + this.CommandRuntime.Host.UI, + AzureSession.ClientFactory.CreateClient(DefaultProfile.Context, AzureEnvironment.Endpoint.ResourceManager), + this.DefaultContext.Subscription); + + + base.ExecuteCmdlet(); + + ExecuteClientAction(() => + { + this._Helper.WriteVerbose("Retrieving VM..."); + + var selectedVM = ComputeClient.ComputeManagementClient.VirtualMachines.Get(this.ResourceGroupName, this.VMName); + var selectedVMStatus = ComputeClient.ComputeManagementClient.VirtualMachines.GetWithInstanceView(this.ResourceGroupName, this.VMName); + + if (selectedVM == null) + { + var subscriptionId = this.DefaultContext.Subscription.Id; + this._Helper.WriteError("No virtual machine with name {0} in resource group {1} in subscription {2} found", this.VMName, this.ResourceGroupName, subscriptionId); + return; + } + + var osdisk = selectedVM.StorageProfile.OsDisk; + + + if (String.IsNullOrEmpty(this.OSType)) + { + this.OSType = osdisk.OsType; + } + if (String.IsNullOrEmpty(this.OSType)) + { + this._Helper.WriteError("Could not determine Operating System of the VM. Please provide the Operating System type ({0} or {1}) via parameter OSType", + AEMExtensionConstants.OSTypeWindows, AEMExtensionConstants.OSTypeLinux); + return; + } + + var disks = selectedVM.StorageProfile.DataDisks; + + var sapmonPublicConfig = new List(); + var sapmonPrivateConfig = new List(); + var cpuOvercommit = 0; + var memOvercommit = 0; + var vmsize = selectedVM.HardwareProfile.VmSize; + switch (vmsize) + { + case AEMExtensionConstants.VMSizeExtraSmall: + case AEMExtensionConstants.VMSizeStandard_A0: + case AEMExtensionConstants.VMSizeBasic_A0: + vmsize = "ExtraSmall (A0)"; + WriteVerbose("VM Size is ExtraSmall - setting overcommitted setting"); + cpuOvercommit = 1; + break; + case "Small": + vmsize = "Small (A1)"; + break; + case "Medium": + vmsize = "Medium (A2)"; + break; + case "Large": + vmsize = "Large (A3)"; + break; + case "ExtraLarge": + vmsize = "ExtraLarge (A4)"; + break; + } + sapmonPublicConfig.Add(new KeyValuePair() { Key = "vmsize", Value = vmsize }); + sapmonPublicConfig.Add(new KeyValuePair() { Key = "vm.memory.isovercommitted", Value = memOvercommit.ToString() }); + sapmonPublicConfig.Add(new KeyValuePair() { Key = "vm.cpu.isovercommitted", Value = cpuOvercommit.ToString() }); + sapmonPublicConfig.Add(new KeyValuePair() { Key = "script.version", Value = AEMExtensionConstants.CurrentScriptVersion }); + sapmonPublicConfig.Add(new KeyValuePair() { Key = "verbose", Value = "1" }); + sapmonPublicConfig.Add(new KeyValuePair() { Key = "href", Value = "http://aka.ms/sapaem" }); + + var vmSLA = this._Helper.GetVMSLA(selectedVM); + if (vmSLA.HasSLA) + { + sapmonPublicConfig.Add(new KeyValuePair() { Key = "vm.sla.throughput", Value = vmSLA.TP }); + sapmonPublicConfig.Add(new KeyValuePair() { Key = "vm.sla.iops", Value = vmSLA.IOPS }); + } + + + // Get Disks + var accounts = new Dictionary(StringComparer.InvariantCultureIgnoreCase); + var accountName = this._Helper.GetStorageAccountFromUri(osdisk.Vhd.Uri); + var storageKey = this._Helper.GetAzureStorageKeyFromCache(accountName); + accounts.Add(accountName, storageKey); + + this._Helper.WriteHost("[INFO] Adding configuration for OS disk"); + + var caching = osdisk.Caching; + sapmonPublicConfig.Add(new KeyValuePair() { Key = "osdisk.name", Value = osdisk.Name }); + sapmonPublicConfig.Add(new KeyValuePair() { Key = "osdisk.caching", Value = caching }); + if (this._Helper.IsPremiumStorageAccount(accountName)) + { + WriteVerbose("OS Disk Storage Account is a premium account - adding SLAs for OS disk"); + var sla = this._Helper.GetDiskSLA(osdisk); + sapmonPublicConfig.Add(new KeyValuePair() { Key = "osdisk.type", Value = AEMExtensionConstants.DISK_TYPE_PREMIUM }); + sapmonPublicConfig.Add(new KeyValuePair() { Key = "osdisk.sla.throughput", Value = sla.TP }); + sapmonPublicConfig.Add(new KeyValuePair() { Key = "osdisk.sla.iops", Value = sla.IOPS }); + } + else + { + WriteVerbose("OS Disk Storage Account is a standard account"); + sapmonPublicConfig.Add(new KeyValuePair() { Key = "osdisk.type", Value = AEMExtensionConstants.DISK_TYPE_STANDARD }); + sapmonPublicConfig.Add(new KeyValuePair() { Key = "osdisk.connminute", Value = (accountName + ".minute") }); + sapmonPublicConfig.Add(new KeyValuePair() { Key = "osdisk.connhour", Value = (accountName + ".hour") }); + } + + // Get Storage accounts from disks + var diskNumber = 1; + foreach (var disk in disks) + { + accountName = this._Helper.GetStorageAccountFromUri(disk.Vhd.Uri); + if (!accounts.ContainsKey(accountName)) + { + storageKey = this._Helper.GetAzureStorageKeyFromCache(accountName); + accounts.Add(accountName, storageKey); + } + + this._Helper.WriteHost("[INFO] Adding configuration for data disk {0}", disk.Name); + caching = disk.Caching; + sapmonPublicConfig.Add(new KeyValuePair() { Key = "disk.lun." + diskNumber, Value = disk.Lun.ToString() }); + sapmonPublicConfig.Add(new KeyValuePair() { Key = "disk.name." + diskNumber, Value = disk.Name }); + sapmonPublicConfig.Add(new KeyValuePair() { Key = "disk.caching." + diskNumber, Value = caching }); + + if (this._Helper.IsPremiumStorageAccount(accountName)) + { + this._Helper.WriteVerbose("Data Disk {0} Storage Account is a premium account - adding SLAs for disk", diskNumber.ToString()); + var sla = this._Helper.GetDiskSLA(disk); + sapmonPublicConfig.Add(new KeyValuePair() { Key = "disk.type." + diskNumber, Value = AEMExtensionConstants.DISK_TYPE_PREMIUM }); + sapmonPublicConfig.Add(new KeyValuePair() { Key = "disk.sla.throughput." + diskNumber, Value = sla.TP }); + sapmonPublicConfig.Add(new KeyValuePair() { Key = "disk.sla.iops." + diskNumber, Value = sla.IOPS }); + this._Helper.WriteVerbose("Done - Data Disk {0} Storage Account is a premium account - adding SLAs for disk", diskNumber.ToString()); + + } + else + { + sapmonPublicConfig.Add(new KeyValuePair() { Key = "disk.type." + diskNumber, Value = AEMExtensionConstants.DISK_TYPE_STANDARD }); + sapmonPublicConfig.Add(new KeyValuePair() { Key = "disk.connminute." + diskNumber, Value = (accountName + ".minute") }); + sapmonPublicConfig.Add(new KeyValuePair() { Key = "disk.connhour." + diskNumber, Value = (accountName + ".hour") }); + } + + diskNumber += 1; + } + + //Check storage accounts for analytics + foreach (var account in accounts) + { + this._Helper.WriteVerbose("Testing Storage Metrics for {0}", account.Key); + + var storage = this._Helper.GetStorageAccountFromCache(account.Key); + + if (!this._Helper.IsPremiumStorageAccount(storage)) + { + var currentConfig = this._Helper.GetStorageAnalytics(storage.Name); + + if (!this._Helper.CheckStorageAnalytics(storage.Name, currentConfig)) + { + this._Helper.WriteHost("[INFO] Enabling Storage Account Metrics for storage account {0}", storage.Name); + + // Enable analytics on storage accounts + this.SetStorageAnalytics(storage.Name); + + } + + var endpoint = this._Helper.GetAzureSAPTableEndpoint(storage); + var hourUri = endpoint + "$MetricsHourPrimaryTransactionsBlob"; + var minuteUri = endpoint + "$MetricsMinutePrimaryTransactionsBlob"; + + + this._Helper.WriteHost("[INFO] Adding Storage Account Metric information for storage account {0}", storage.Name); + + sapmonPrivateConfig.Add(new KeyValuePair() { Key = ((storage.Name) + ".hour.key"), Value = account.Value }); + sapmonPrivateConfig.Add(new KeyValuePair() { Key = ((storage.Name) + ".minute.key"), Value = account.Value }); + sapmonPublicConfig.Add(new KeyValuePair() { Key = ((storage.Name) + ".hour.uri"), Value = hourUri }); + sapmonPublicConfig.Add(new KeyValuePair() { Key = ((storage.Name) + ".minute.uri"), Value = minuteUri }); + sapmonPublicConfig.Add(new KeyValuePair() { Key = ((storage.Name) + ".hour.name"), Value = storage.Name }); + sapmonPublicConfig.Add(new KeyValuePair() { Key = ((storage.Name) + ".minute.name"), Value = storage.Name }); + } + else + { + this._Helper.WriteHost("[INFO] {0} is of type {1} - Storage Account Metrics are not available for Premium Type Storage.", storage.Name, storage.AccountType.Value.ToString()); + sapmonPublicConfig.Add(new KeyValuePair() { Key = ((storage.Name) + ".hour.ispremium"), Value = "1" }); + sapmonPublicConfig.Add(new KeyValuePair() { Key = ((storage.Name) + ".minute.ispremium"), Value = "1" }); + } + } + + WriteVerbose("Chechking if WAD needs to be configured"); + // Enable VM Diagnostics + if (!this.DisableWAD.IsPresent) + { + this._Helper.WriteHost("[INFO] Enabling IaaSDiagnostics for VM {0}", selectedVM.Name); + KeyValuePair wadstorage = null; + if (String.IsNullOrEmpty(this.WADStorageAccountName)) + { + KeyValuePair? wadstorageTemp = accounts.Cast?>(). + FirstOrDefault(accTemp => !this._Helper.IsPremiumStorageAccount(accTemp.Value.Key)); + if (wadstorageTemp.HasValue) + { + wadstorage = new KeyValuePair(wadstorageTemp.Value.Key, wadstorageTemp.Value.Value); + } + } + else + { + wadstorage = new KeyValuePair(this.WADStorageAccountName, this._Helper.GetAzureStorageKeyFromCache(WADStorageAccountName)); + } + + if (wadstorage == null) + { + this._Helper.WriteError("A Standard Storage Account is required."); + } + + selectedVM = SetAzureVMDiagnosticsExtensionC(selectedVM, wadstorage.Key, wadstorage.Value); + + var storage = this._Helper.GetStorageAccountFromCache(wadstorage.Key); + var endpoint = this._Helper.GetAzureSAPTableEndpoint(storage); + var wadUri = endpoint + AEMExtensionConstants.WadTableName; + + sapmonPrivateConfig.Add(new KeyValuePair() { Key = "wad.key", Value = wadstorage.Value }); + sapmonPublicConfig.Add(new KeyValuePair() { Key = "wad.name", Value = wadstorage.Key }); + sapmonPublicConfig.Add(new KeyValuePair() { Key = "wad.isenabled", Value = "1" }); + sapmonPublicConfig.Add(new KeyValuePair() { Key = "wad.uri", Value = wadUri }); + } + else + { + sapmonPublicConfig.Add(new KeyValuePair() { Key = "wad.isenabled", Value = "0" }); + } + + ExtensionConfig jsonPublicConfig = new ExtensionConfig(); + jsonPublicConfig.Config = sapmonPublicConfig; + //var publicConfString = JsonConvert.SerializeObject(jsonPublicConfig); + + ExtensionConfig jsonPrivateConfig = new ExtensionConfig(); + jsonPrivateConfig.Config = sapmonPrivateConfig; + //var privateConfString = JsonConvert.SerializeObject(jsonPrivateConfig); + + this._Helper.WriteHost("[INFO] Updating Azure Enhanced Monitoring Extension for SAP configuration - Please wait..."); + + WriteVerbose("Installing AEM extension"); + var op = this.VirtualMachineExtensionClient.CreateOrUpdateWithHttpMessagesAsync( + this.ResourceGroupName, this.VMName, AEMExtensionConstants.AEMExtensionDefaultName[OSType], + new VirtualMachineExtension() + { + Publisher = AEMExtensionConstants.AEMExtensionPublisher[OSType], + VirtualMachineExtensionType = AEMExtensionConstants.AEMExtensionType[OSType], + TypeHandlerVersion = AEMExtensionConstants.AEMExtensionVersion[OSType], + Settings = jsonPublicConfig, + ProtectedSettings = jsonPrivateConfig, + Location = selectedVM.Location, + AutoUpgradeMinorVersion = true + }).GetAwaiter().GetResult(); + + this._Helper.WriteHost("[INFO] Azure Enhanced Monitoring Extension for SAP configuration updated. It can take up to 15 Minutes for the monitoring data to appear in the SAP system."); + this._Helper.WriteHost("[INFO] You can check the configuration of a virtual machine by calling the Test-VMConfigForSAP_GUI commandlet."); + + var result = Mapper.Map(op); + WriteObject(result); + }); + } + + private VirtualMachine SetAzureVMDiagnosticsExtensionC(VirtualMachine selectedVM, string storageAccountName, string storageAccountKey) + { + System.Xml.XmlDocument xpublicConfig = null; + //var xmlnsConfig = "http://schemas.microsoft.com/ServiceHosting/2010/10/DiagnosticsConfiguration"; + + var extensionName = AEMExtensionConstants.WADExtensionDefaultName[this.OSType]; + + var extTemp = this._Helper.GetExtension(selectedVM, + AEMExtensionConstants.WADExtensionType[this.OSType], AEMExtensionConstants.WADExtensionPublisher[OSType]); + object publicConf = null; + if (extTemp != null) + { + publicConf = extTemp.Settings; + extensionName = extTemp.Name; + } + + if (publicConf != null) + { + var jpublicConf = publicConf as Newtonsoft.Json.Linq.JObject; + if (jpublicConf == null) + { + throw new ArgumentException(); + } + + var base64 = jpublicConf["xmlCfg"] as Newtonsoft.Json.Linq.JValue; + if (base64 == null) + { + throw new ArgumentException(); + } + + System.Xml.XmlDocument xDoc = new System.Xml.XmlDocument(); + xDoc.LoadXml(Encoding.UTF8.GetString(System.Convert.FromBase64String(base64.Value.ToString()))); + + if (xDoc.SelectSingleNode("/WadCfg/DiagnosticMonitorConfiguration/PerformanceCounters") != null) + { + xDoc.SelectSingleNode("WadCfg/DiagnosticMonitorConfiguration").Attributes["overallQuotaInMB"].Value = "4096"; + xDoc.SelectSingleNode("WadCfg/DiagnosticMonitorConfiguration/PerformanceCounters").Attributes["scheduledTransferPeriod"].Value = "PT1M"; + + xpublicConfig = xDoc; + } + } + + if (xpublicConfig == null) + { + xpublicConfig = new System.Xml.XmlDocument(); + xpublicConfig.LoadXml(AEMExtensionConstants.WADConfigXML); + } + + foreach (var perfCounter in AEMExtensionConstants.PerformanceCounters[OSType]) + { + var currentCounter = xpublicConfig. + SelectSingleNode("WadCfg/DiagnosticMonitorConfiguration/PerformanceCounters/PerformanceCounterConfiguration[@counterSpecifier = '" + perfCounter.counterSpecifier + "']"); + if (currentCounter == null) + { + var node = xpublicConfig.CreateElement("PerformanceCounterConfiguration"); //, xmlnsConfig); + xpublicConfig.SelectSingleNode("WadCfg/DiagnosticMonitorConfiguration/PerformanceCounters").AppendChild(node); + node.SetAttribute("counterSpecifier", perfCounter.counterSpecifier); + node.SetAttribute("sampleRate", perfCounter.sampleRate); + } + } + + var endpoint = this._Helper.GetCoreEndpoint(storageAccountName); + endpoint = "https://" + endpoint; + + Newtonsoft.Json.Linq.JObject jPublicConfig = new Newtonsoft.Json.Linq.JObject(); + jPublicConfig.Add("xmlCfg", new Newtonsoft.Json.Linq.JValue(System.Convert.ToBase64String(System.Text.Encoding.UTF8.GetBytes(xpublicConfig.InnerXml)))); + + Newtonsoft.Json.Linq.JObject jPrivateConfig = new Newtonsoft.Json.Linq.JObject(); + jPrivateConfig.Add("storageAccountName", new Newtonsoft.Json.Linq.JValue(storageAccountName)); + jPrivateConfig.Add("storageAccountKey", new Newtonsoft.Json.Linq.JValue(storageAccountKey)); + jPrivateConfig.Add("storageAccountEndPoint", new Newtonsoft.Json.Linq.JValue(endpoint)); + + WriteVerbose("Installing WAD extension"); + VirtualMachineExtension vmExtParameters = new VirtualMachineExtension(); + + //vmExtParameters.Name = AEMExtensionConstants.WADExtensionDefaultName[this.OSType]; + vmExtParameters.Publisher = AEMExtensionConstants.WADExtensionPublisher[this.OSType]; + vmExtParameters.VirtualMachineExtensionType = AEMExtensionConstants.WADExtensionType[this.OSType]; + vmExtParameters.TypeHandlerVersion = AEMExtensionConstants.WADExtensionVersion[this.OSType]; + vmExtParameters.Settings = jPublicConfig; + vmExtParameters.ProtectedSettings = jPrivateConfig; + vmExtParameters.Location = selectedVM.Location; + + this.VirtualMachineExtensionClient.CreateOrUpdate(ResourceGroupName, selectedVM.Name, extensionName, vmExtParameters); + + return this.ComputeClient.ComputeManagementClient.VirtualMachines.Get(ResourceGroupName, selectedVM.Name); + } + + private void SetStorageAnalytics(string storageAccountName) + { + ServiceProperties props = this._Helper.GetStorageAnalytics(storageAccountName); + + int retentionDays = 13; + + if (props.Logging == null) + { + props.Logging = new LoggingProperties(); + } + props.Logging.LoggingOperations = LoggingOperations.All; + props.Logging.RetentionDays = retentionDays; + + if (props.MinuteMetrics == null) + { + props.MinuteMetrics = new MetricsProperties(); + } + props.MinuteMetrics.RetentionDays = retentionDays; + props.MinuteMetrics.MetricsLevel = MetricsLevel.ServiceAndApi; + + if (props.HourMetrics != null && props.HourMetrics.RetentionDays != null) + { + props.HourMetrics.RetentionDays = retentionDays; + } + //if (props.Metrics != null && props.Metrics.RetentionDays != null) + //{ + // props.Metrics.RetentionDays = retentionDays; + //} + + var key = this._Helper.GetAzureStorageKeyFromCache(storageAccountName); + var credentials = new StorageCredentials(storageAccountName, key); + var cloudStorageAccount = new CloudStorageAccount(credentials, true); + + cloudStorageAccount.CreateCloudBlobClient().SetServiceProperties(props); + } + + + + + + + + + + } +} \ No newline at end of file diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/TestAzureRmVMAEMExtension.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/TestAzureRmVMAEMExtension.cs new file mode 100644 index 000000000000..a8727862114a --- /dev/null +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/TestAzureRmVMAEMExtension.cs @@ -0,0 +1,492 @@ +using Microsoft.Azure.Commands.Compute.Common; +using Microsoft.Azure.Commands.Compute.Models; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Management.Automation; +using System.Text; +using System.Threading.Tasks; +using Microsoft.Azure.Management.Compute; +using Microsoft.Azure.Commands.Compute.Extension.AEM; +using Newtonsoft.Json; +using System.Text.RegularExpressions; +using Newtonsoft.Json.Linq; +using Microsoft.Azure.Management.Storage; +using Microsoft.Azure.Common.Authentication; +using Microsoft.Azure.Common.Authentication.Models; +using Microsoft.Azure.Management.Compute.Models; +using AutoMapper; + +namespace Microsoft.Azure.Commands.Compute +{ + [Cmdlet( + "Test", + ProfileNouns.VirtualMachineAEMExtension)] + [OutputType(typeof(AEMTestResult))] + public class TestAzureRmVMAEMExtension : VirtualMachineExtensionBaseCmdlet + { + private AEMHelper _Helper = null; + + [Parameter( + Mandatory = true, + Position = 0, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The resource group name.")] + [ValidateNotNullOrEmpty] + public string ResourceGroupName { get; set; } + + [Alias("ResourceName")] + [Parameter( + Mandatory = true, + Position = 1, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The virtual machine name.")] + [ValidateNotNullOrEmpty] + public string VMName { get; set; } + + [Parameter( + Mandatory = false, + Position = 2, + ValueFromPipelineByPropertyName = false, + HelpMessage = "Operating System Type of the virtual machines. Possible values: Windows | Linux")] + public string OSType { get; set; } + + [Parameter( + Mandatory = false, + Position = 3, + ValueFromPipelineByPropertyName = false, + HelpMessage = "Time that should be waited for the Strorage Metrics or Diagnostics data to be available in minutes. Default is 15 minutes")] + public int WaitTimeInMinutes { get; set; } + + public TestAzureRmVMAEMExtension() + { + this.WaitTimeInMinutes = 15; + } + + public override void ExecuteCmdlet() + { + this._Helper = new AEMHelper((err) => this.WriteError(err), (msg) => this.WriteVerbose(msg), (msg) => this.WriteWarning(msg), + this.CommandRuntime.Host.UI, + AzureSession.ClientFactory.CreateClient(DefaultProfile.Context, AzureEnvironment.Endpoint.ResourceManager), + this.DefaultContext.Subscription); + + this._Helper.WriteVerbose("Starting TestAzureRmVMAEMExtension"); + + base.ExecuteCmdlet(); + + ExecuteClientAction(() => + { + AEMTestResult rootResult = new AEMTestResult(); + rootResult.TestName = "Azure Enhanced Monitoring Test"; + + //################################################# + //# Check if VM exists + //################################################# + this._Helper.WriteHost("VM Existance check for {0} ...", false, this.VMName); + var selectedVM = this.ComputeClient.ComputeManagementClient.VirtualMachines.Get(this.ResourceGroupName, this.VMName); + var selectedVMStatus = this.ComputeClient.ComputeManagementClient.VirtualMachines.GetWithInstanceView(this.ResourceGroupName, this.VMName).Body.InstanceView; + + + if (selectedVM == null) + { + rootResult.PartialResults.Add(new AEMTestResult("VM Existance check for {0}", false, this.VMName)); + this._Helper.WriteHost("NOT OK ", ConsoleColor.Red); + return; + } + else + { + rootResult.PartialResults.Add(new AEMTestResult("VM Existance check for {0}", true, this.VMName)); + this._Helper.WriteHost("OK ", ConsoleColor.Green); + + } + //################################################# + //################################################# + var osdisk = selectedVM.StorageProfile.OsDisk; + if (String.IsNullOrEmpty(this.OSType)) + { + this.OSType = osdisk.OsType; + } + if (String.IsNullOrEmpty(this.OSType)) + { + this._Helper.WriteError("Could not determine Operating System of the VM. Please provide the Operating System type ({0} or {1}) via parameter OSType", AEMExtensionConstants.OSTypeWindows, AEMExtensionConstants.OSTypeLinux); + return; + } + //################################################# + //# Check for Guest Agent + //################################################# + this._Helper.WriteHost("VM Guest Agent check...", false); + var vmAgentStatus = false; + + //# It is not possible to detect if VM Agent is installed on ARM + vmAgentStatus = true; + if (!vmAgentStatus) + { + rootResult.PartialResults.Add(new AEMTestResult("VM Guest Agent check", false)); + this._Helper.WriteHost("NOT OK ", ConsoleColor.Red); + this._Helper.WriteWarning(AEMExtensionConstants.MissingGuestAgentWarning); + return; + } + else + { + rootResult.PartialResults.Add(new AEMTestResult("VM Guest Agent check", true)); + this._Helper.WriteHost("OK ", ConsoleColor.Green); + } + //################################################# + //################################################# + + + //################################################# + //# Check for Azure Enhanced Monitoring Extension for SAP + //################################################# + this._Helper.WriteHost("Azure Enhanced Monitoring Extension for SAP Installation check...", false); + + string monPublicConfig = null; + var monExtension = this._Helper.GetExtension(selectedVM, AEMExtensionConstants.AEMExtensionType[this.OSType], AEMExtensionConstants.AEMExtensionPublisher[this.OSType]); + if (monExtension != null) + { + monPublicConfig = monExtension.Settings.ToString(); + } + + if (monExtension == null || String.IsNullOrEmpty(monPublicConfig)) + { + rootResult.PartialResults.Add(new AEMTestResult("Azure Enhanced Monitoring Extension for SAP Installation check", false)); + this._Helper.WriteHost("NOT OK ", ConsoleColor.Red); + } + else + { + rootResult.PartialResults.Add(new AEMTestResult("Azure Enhanced Monitoring Extension for SAP Installation check", true)); + this._Helper.WriteHost("OK ", ConsoleColor.Green); + } + //################################################# + //################################################# + + var accounts = new List(); + //var osdisk = selectedVM.StorageProfile.OsDisk; + + var dataDisks = selectedVM.StorageProfile.DataDisks; + var accountName = this._Helper.GetStorageAccountFromUri(osdisk.Vhd.Uri); + var osaccountName = accountName; + accounts.Add(accountName); + foreach (var disk in dataDisks) + { + accountName = this._Helper.GetStorageAccountFromUri(disk.Vhd.Uri); + if (!accounts.Contains(accountName)) + { + accounts.Add(accountName); + } + } + + //################################################# + //# Check storage metrics + //################################################# + this._Helper.WriteHost("Storage Metrics check..."); + var metricsResult = new AEMTestResult("Storage Metrics check"); + rootResult.PartialResults.Add(metricsResult); + + foreach (var account in accounts) + { + var accountResult = new AEMTestResult("Storage Metrics check for {0}", account); + metricsResult.PartialResults.Add(accountResult); + + this._Helper.WriteHost("\tStorage Metrics check for {0}...", account); + var storage = this._Helper.GetStorageAccountFromCache(account); + + if (!this._Helper.IsPremiumStorageAccount(storage)) + { + this._Helper.WriteHost("\t\tStorage Metrics configuration check for {0}...", false, account); + var currentConfig = this._Helper.GetStorageAnalytics(account); + + bool storageConfigOk = false; + if (!this._Helper.CheckStorageAnalytics(account, currentConfig)) + { + accountResult.PartialResults.Add(new AEMTestResult("Storage Metrics configuration check for {0}", false, account)); + this._Helper.WriteHost("NOT OK ", ConsoleColor.Red); + + } + else + { + accountResult.PartialResults.Add(new AEMTestResult("Storage Metrics configuration check for {0}", true, account)); + this._Helper.WriteHost("OK ", ConsoleColor.Green); + storageConfigOk = true; + } + + this._Helper.WriteHost("\t\tStorage Metrics data check for {0}...", false, account); + var filterMinute = Microsoft.WindowsAzure.Storage.Table.TableQuery. + GenerateFilterConditionForDate("Timestamp", "gt", DateTime.Now.AddMinutes(AEMExtensionConstants.ContentAgeInMinutes * -1)); + + if (storageConfigOk && this._Helper.CheckTableAndContent(account, "$MetricsMinutePrimaryTransactionsBlob", filterMinute, ".", false, this.WaitTimeInMinutes)) + + { + this._Helper.WriteHost("OK ", ConsoleColor.Green); + accountResult.PartialResults.Add(new AEMTestResult("Storage Metrics data check for {0}", true, account)); + } + else + { + accountResult.PartialResults.Add(new AEMTestResult("Storage Metrics data check for {0}", false, account)); + this._Helper.WriteHost("NOT OK ", ConsoleColor.Red); + } + } + else + { + accountResult.PartialResults.Add(new AEMTestResult("Storage Metrics not available for Premium Storage account {0}", true, account)); + this._Helper.WriteHost("\t\tStorage Metrics not available for Premium Storage account {0}...", false, account); + this._Helper.WriteHost("OK ", ConsoleColor.Green); + + } + } + //################################################# + //################################################# + + + //################################################# + //# Check Azure Enhanced Monitoring Extension for SAP Configuration + //################################################# + this._Helper.WriteHost("Azure Enhanced Monitoring Extension for SAP public configuration check...", false); + var aemConfigResult = new AEMTestResult("Azure Enhanced Monitoring Extension for SAP public configuration check"); + rootResult.PartialResults.Add(aemConfigResult); + + JObject sapmonPublicConfig = null; + if (monExtension != null) + { + this._Helper.WriteHost(""); //New Line + + sapmonPublicConfig = JsonConvert.DeserializeObject(monPublicConfig) as JObject; + + var storage = this._Helper.GetStorageAccountFromCache(osaccountName); + var osaccountIsPremium = this._Helper.IsPremiumStorageAccount(osaccountName); + + var vmSize = selectedVM.HardwareProfile.VmSize; + this._Helper.CheckMonProp("Azure Enhanced Monitoring Extension for SAP public configuration check: VM Size", "vmsize", sapmonPublicConfig, vmSize, aemConfigResult); + this._Helper.CheckMonProp("Azure Enhanced Monitoring Extension for SAP public configuration check: VM Memory", "vm.memory.isovercommitted", sapmonPublicConfig, "0", aemConfigResult); + this._Helper.CheckMonProp("Azure Enhanced Monitoring Extension for SAP public configuration check: VM CPU", "vm.cpu.isovercommitted", sapmonPublicConfig, "0", aemConfigResult); + this._Helper.CheckMonProp("Azure Enhanced Monitoring Extension for SAP public configuration check: Script Version", "script.version", sapmonPublicConfig, null, aemConfigResult, true); + + var vmSLA = this._Helper.GetVMSLA(selectedVM); + if (vmSLA.HasSLA) + { + this._Helper.CheckMonProp("Azure Enhanced Monitoring Extension for SAP public configuration check: VM SLA IOPS", "vm.sla.iops", sapmonPublicConfig, vmSLA.IOPS, aemConfigResult); + this._Helper.CheckMonProp("Azure Enhanced Monitoring Extension for SAP public configuration check: VM SLA Throughput", "vm.sla.throughput", sapmonPublicConfig, vmSLA.TP, aemConfigResult); + } + + var wadEnabled = this._Helper.GetMonPropertyValue("wad.isenabled", sapmonPublicConfig); + if (wadEnabled == "1") + { + this._Helper.CheckMonProp("Azure Enhanced Monitoring Extension for SAP public configuration check: WAD name", "wad.name", sapmonPublicConfig, null, aemConfigResult, true); + this._Helper.CheckMonProp("Azure Enhanced Monitoring Extension for SAP public configuration check: WAD URI", "wad.uri", sapmonPublicConfig, null, aemConfigResult, true); + } + else + { + this._Helper.CheckMonProp("Azure Enhanced Monitoring Extension for SAP public configuration check: WAD name", "wad.name", sapmonPublicConfig, null, aemConfigResult); + this._Helper.CheckMonProp("Azure Enhanced Monitoring Extension for SAP public configuration check: WAD URI", "wad.uri", sapmonPublicConfig, null, aemConfigResult); + } + + if (!osaccountIsPremium) + { + var endpoint = this._Helper.GetAzureSAPTableEndpoint(storage); + var minuteUri = endpoint + "$MetricsMinutePrimaryTransactionsBlob"; + + this._Helper.CheckMonProp("Azure Enhanced Monitoring Extension for SAP public configuration check: VM OS disk URI Key", "osdisk.connminute", sapmonPublicConfig, osaccountName + ".minute", aemConfigResult); + //# TODO: check uri config + this._Helper.CheckMonProp("Azure Enhanced Monitoring Extension for SAP public configuration check: VM OS disk URI Value", osaccountName + ".minute.uri", sapmonPublicConfig, minuteUri, aemConfigResult); + this._Helper.CheckMonProp("Azure Enhanced Monitoring Extension for SAP public configuration check: VM OS disk URI Name", osaccountName + ".minute.name", sapmonPublicConfig, osaccountName, aemConfigResult); + this._Helper.CheckMonProp("Azure Enhanced Monitoring Extension for SAP public configuration check: VM OS Disk Type", "osdisk.type", sapmonPublicConfig, AEMExtensionConstants.DISK_TYPE_STANDARD, aemConfigResult); + + } + else + { + var sla = this._Helper.GetDiskSLA(osdisk); + + this._Helper.CheckMonProp("Azure Enhanced Monitoring Extension for SAP public configuration check: VM OS Disk Type", "osdisk.type", sapmonPublicConfig, AEMExtensionConstants.DISK_TYPE_PREMIUM, aemConfigResult); + this._Helper.CheckMonProp("Azure Enhanced Monitoring Extension for SAP public configuration check: VM OS Disk SLA IOPS", "osdisk.sla.throughput", sapmonPublicConfig, sla.TP, aemConfigResult); + this._Helper.CheckMonProp("Azure Enhanced Monitoring Extension for SAP public configuration check: VM OS Disk SLA Throughput", "osdisk.sla.iops", sapmonPublicConfig, sla.IOPS, aemConfigResult); + + } + this._Helper.CheckMonProp("Azure Enhanced Monitoring Extension for SAP public configuration check: VM OS disk name", "osdisk.name", sapmonPublicConfig, osdisk.Name, aemConfigResult); + + + var diskNumber = 1; + foreach (var disk in dataDisks) + { + accountName = this._Helper.GetStorageAccountFromUri(disk.Vhd.Uri); + storage = this._Helper.GetStorageAccountFromCache(accountName); + var accountIsPremium = this._Helper.IsPremiumStorageAccount(storage); + + this._Helper.CheckMonProp("Azure Enhanced Monitoring Extension for SAP public configuration check: VM Data Disk " + diskNumber + " LUN", "disk.lun." + diskNumber, sapmonPublicConfig, disk.Lun.ToString(), aemConfigResult); + if (!accountIsPremium) + { + var endpoint = this._Helper.GetAzureSAPTableEndpoint(storage); + var minuteUri = endpoint + "$MetricsMinutePrimaryTransactionsBlob"; + + this._Helper.CheckMonProp("Azure Enhanced Monitoring Extension for SAP public configuration check: VM Data Disk " + diskNumber + " URI Key", "disk.connminute." + diskNumber, sapmonPublicConfig, accountName + ".minute", aemConfigResult); + this._Helper.CheckMonProp("Azure Enhanced Monitoring Extension for SAP public configuration check: VM Data Disk " + diskNumber + " URI Value", accountName + ".minute.uri", sapmonPublicConfig, minuteUri, aemConfigResult); + this._Helper.CheckMonProp("Azure Enhanced Monitoring Extension for SAP public configuration check: VM Data Disk " + diskNumber + " URI Name", accountName + ".minute.name", sapmonPublicConfig, accountName, aemConfigResult); + this._Helper.CheckMonProp("Azure Enhanced Monitoring Extension for SAP public configuration check: VM Data Disk " + diskNumber + " Type", "disk.type." + diskNumber, sapmonPublicConfig, AEMExtensionConstants.DISK_TYPE_STANDARD, aemConfigResult); + + } + else + { + var sla = this._Helper.GetDiskSLA(disk); + + this._Helper.CheckMonProp("Azure Enhanced Monitoring Extension for SAP public configuration check: VM Data Disk " + diskNumber + " Type", "disk.type." + diskNumber, sapmonPublicConfig, AEMExtensionConstants.DISK_TYPE_PREMIUM, aemConfigResult); + this._Helper.CheckMonProp("Azure Enhanced Monitoring Extension for SAP public configuration check: VM Data Disk " + diskNumber + " SLA IOPS", "disk.sla.throughput." + diskNumber, sapmonPublicConfig, sla.TP, aemConfigResult); + this._Helper.CheckMonProp("Azure Enhanced Monitoring Extension for SAP public configuration check: VM Data Disk " + diskNumber + " SLA Throughput", "disk.sla.iops." + diskNumber, sapmonPublicConfig, sla.IOPS, aemConfigResult); + } + + this._Helper.CheckMonProp("Azure Enhanced Monitoring Extension for SAP public configuration check: VM Data Disk " + diskNumber + " name", "disk.name." + diskNumber, sapmonPublicConfig, disk.Name, aemConfigResult); + + diskNumber += 1; + } + if (dataDisks.Count == 0) + { + aemConfigResult.PartialResults.Add(new AEMTestResult("Azure Enhanced Monitoring Extension for SAP public configuration check: VM Data Disks", true)); + this._Helper.WriteHost("\tAzure Enhanced Monitoring Extension for SAP public configuration check: VM Data Disks ", false); + this._Helper.WriteHost("OK ", ConsoleColor.Green); + } + } + else + { + aemConfigResult.Result = false; + this._Helper.WriteHost("NOT OK ", ConsoleColor.Red); + } + //################################################# + //################################################# + + + //################################################# + //# Check WAD Configuration + //################################################# + if (this._Helper.GetMonPropertyValue("wad.isenabled", sapmonPublicConfig) == "1") + { + var wadConfigResult = new AEMTestResult("IaaSDiagnostics check"); + rootResult.PartialResults.Add(wadConfigResult); + + string wadPublicConfig = null; + var wadExtension = this._Helper.GetExtension(selectedVM, AEMExtensionConstants.WADExtensionType[this.OSType], AEMExtensionConstants.WADExtensionPublisher[this.OSType]); + if (wadExtension != null) + { + wadPublicConfig = wadExtension.Settings.ToString(); + } + + this._Helper.WriteHost("IaaSDiagnostics check...", false); + if (wadExtension != null) + { + this._Helper.WriteHost(""); //New Line + this._Helper.WriteHost("\tIaaSDiagnostics configuration check...", false); + + var currentJSONConfig = JsonConvert.DeserializeObject(wadPublicConfig) as Newtonsoft.Json.Linq.JObject; + var base64 = currentJSONConfig["xmlCfg"] as Newtonsoft.Json.Linq.JValue; + System.Xml.XmlDocument currentConfig = new System.Xml.XmlDocument(); + currentConfig.LoadXml(Encoding.UTF8.GetString(System.Convert.FromBase64String(base64.Value.ToString()))); + + + if (!this._Helper.CheckWADConfiguration(currentConfig)) + { + wadConfigResult.PartialResults.Add(new AEMTestResult("IaaSDiagnostics configuration check", false)); + this._Helper.WriteHost("NOT OK ", ConsoleColor.Red); + } + else + { + wadConfigResult.PartialResults.Add(new AEMTestResult("IaaSDiagnostics configuration check", true)); + this._Helper.WriteHost("OK ", ConsoleColor.Green); + } + + this._Helper.WriteHost("\tIaaSDiagnostics performance counters check..."); + var wadPerfCountersResult = new AEMTestResult("IaaSDiagnostics performance counters check"); + wadConfigResult.PartialResults.Add(wadPerfCountersResult); + + foreach (var perfCounter in AEMExtensionConstants.PerformanceCounters[this.OSType]) + { + this._Helper.WriteHost("\t\tIaaSDiagnostics performance counters " + (perfCounter.counterSpecifier) + "check...", false); + var currentCounter = currentConfig.SelectSingleNode("/WadCfg/DiagnosticMonitorConfiguration/PerformanceCounters/PerformanceCounterConfiguration[@counterSpecifier = '" + perfCounter.counterSpecifier + "']"); + if (currentCounter != null) + { + wadPerfCountersResult.PartialResults.Add(new AEMTestResult("IaaSDiagnostics performance counters " + (perfCounter.counterSpecifier) + "check...", true)); + this._Helper.WriteHost("OK ", ConsoleColor.Green); + } + else + { + wadPerfCountersResult.PartialResults.Add(new AEMTestResult("IaaSDiagnostics performance counters " + (perfCounter.counterSpecifier) + "check...", false)); + this._Helper.WriteHost("NOT OK ", ConsoleColor.Red); + } + } + + var wadstorage = this._Helper.GetMonPropertyValue("wad.name", sapmonPublicConfig); + + this._Helper.WriteHost("\tIaaSDiagnostics data check...", false); + + var deploymentId = String.Empty; + var roleName = String.Empty; + + var extStatuses = this._Helper.GetExtension(selectedVM, selectedVMStatus, AEMExtensionConstants.AEMExtensionType[this.OSType], AEMExtensionConstants.AEMExtensionPublisher[this.OSType]); + InstanceViewStatus aemStatus = null; + if (extStatuses != null && extStatuses.Statuses != null) + { + aemStatus = extStatuses.Statuses.FirstOrDefault(stat => Regex.Match(stat.Message, "deploymentId=(\\S*) roleInstance=(\\S*)").Success); + } + + if (aemStatus != null) + { + var match = Regex.Match(aemStatus.Message, "deploymentId=(\\S*) roleInstance=(\\S*)"); + deploymentId = match.Groups[1].Value; + roleName = match.Groups[2].Value; + } + else + { + this._Helper.WriteWarning("DeploymentId and RoleInstanceName could not be parsed from extension status"); + } + + + var ok = false; + if ((!String.IsNullOrEmpty(deploymentId)) && (!String.IsNullOrEmpty(roleName)) && (!String.IsNullOrEmpty(wadstorage))) + { + + if (this.OSType.Equals(AEMExtensionConstants.OSTypeLinux, StringComparison.InvariantCultureIgnoreCase)) + { + ok = this._Helper.CheckDiagnosticsTable(wadstorage, deploymentId, + selectedVM.OsProfile.ComputerName, ".", this.OSType, this.WaitTimeInMinutes); + } + else + { + string filterMinute = "Role eq '" + AEMExtensionConstants.ROLECONTENT + "' and DeploymentId eq '" + + deploymentId + "' and RoleInstance eq '" + roleName + "' and PartitionKey gt '0" + + DateTime.UtcNow.AddMinutes(AEMExtensionConstants.ContentAgeInMinutes * -1).Ticks + "'"; + ok = this._Helper.CheckTableAndContent(wadstorage, AEMExtensionConstants.WadTableName, + filterMinute, ".", false, this.WaitTimeInMinutes); + } + + + } + if (ok) + { + wadConfigResult.PartialResults.Add(new AEMTestResult("IaaSDiagnostics data check", true)); + this._Helper.WriteHost("OK ", ConsoleColor.Green); + } + else + { + wadConfigResult.PartialResults.Add(new AEMTestResult("IaaSDiagnostics data check", false)); + this._Helper.WriteHost("NOT OK ", ConsoleColor.Red); + } + } + else + { + wadConfigResult.Result = false; + this._Helper.WriteHost("NOT OK ", ConsoleColor.Red); + } + } + //################################################# + //################################################# + + if (!rootResult.Result) + { + this._Helper.WriteHost("The script found some configuration issues. Please run the Set-AzureRmVMExtension commandlet to update the configuration of the virtual machine!"); + } + + this._Helper.WriteVerbose("TestAzureRmVMAEMExtension Done (" + rootResult.Result + ")"); + + var result = Mapper.Map(rootResult); + WriteObject(result); + }); + } + } +} + diff --git a/src/ResourceManager/Compute/Commands.Compute/Properties/Resources.Designer.cs b/src/ResourceManager/Compute/Commands.Compute/Properties/Resources.Designer.cs index 0c9c67948311..bf212e13d2b0 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Properties/Resources.Designer.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Properties/Resources.Designer.cs @@ -69,6 +69,15 @@ public static string AddAzureVhdCommandSASUriNotSupportedInPatchMode { } } + /// + /// Looks up a localized string similar to No Azure Enhanced Monitoring extension found under resource group '{0}', virtual machine '{1}'.. + /// + public static string AEMExtensionNotFound { + get { + return ResourceManager.GetString("AEMExtensionNotFound", resourceCulture); + } + } + /// /// Looks up a localized string similar to Availability set removal operation. /// diff --git a/src/ResourceManager/Compute/Commands.Compute/Properties/Resources.resx b/src/ResourceManager/Compute/Commands.Compute/Properties/Resources.resx index 2b2bde3d38b9..0ee269247353 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Properties/Resources.resx +++ b/src/ResourceManager/Compute/Commands.Compute/Properties/Resources.resx @@ -497,4 +497,8 @@ The file needs to be a PowerShell script (.ps1 or .psm1) or a ZIP archive (.zip) WadCfg start element in the config is not matching the end element. + + No Azure Enhanced Monitoring extension found under resource group '{0}', virtual machine '{1}'. + {0} = resource group name, {1} = virtual machine name + \ No newline at end of file From a3980c2b418bd4b915f850e05b81ba8de87f4267 Mon Sep 17 00:00:00 2001 From: sedusch Date: Thu, 18 Feb 2016 17:48:32 +0100 Subject: [PATCH 2/7] fix for last merge + new test case --- .../TestAEMExtensionAdvancedLinux.json | 2265 ++++++++++------- .../Extension/AEM/AEMHelper.cs | 51 +- .../AEM/RemoveAzureRmVMAEMExtension.cs | 4 +- .../Extension/AEM/SetAzureRmVMAEMExtension.cs | 4 +- .../AEM/TestAzureRmVMAEMExtension.cs | 4 +- 5 files changed, 1360 insertions(+), 968 deletions(-) diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.AEMExtensionTests/TestAEMExtensionAdvancedLinux.json b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.AEMExtensionTests/TestAEMExtensionAdvancedLinux.json index da7e4a9ebb57..7be6610141fb 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.AEMExtensionTests/TestAEMExtensionAdvancedLinux.json +++ b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.AEMExtensionTests/TestAEMExtensionAdvancedLinux.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute?api-version=2014-04-01-preview", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute?api-version=2014-04-01-preview", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", @@ -10,7 +10,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Length": [ "5199" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14812" ], "x-ms-request-id": [ - "a0db155e-d43a-425a-b8c9-93df4376e056" + "f696b563-82d0-480b-8067-7d0a40853832" ], "x-ms-correlation-request-id": [ - "a0db155e-d43a-425a-b8c9-93df4376e056" + "f696b563-82d0-480b-8067-7d0a40853832" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T100544Z:a0db155e-d43a-425a-b8c9-93df4376e056" + "NORTHCENTRALUS:20160218T133002Z:f696b563-82d0-480b-8067-7d0a40853832" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,14 +43,14 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 10:05:44 GMT" + "Thu, 18 Feb 2016 13:30:02 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourcegroups/crptestps4190?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczQxOTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourcegroups/crptestps4427?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczQ0Mjc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -76,16 +76,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14811" ], "x-ms-request-id": [ - "41c2c770-b4bc-4d22-8abf-d000f74f2d2e" + "371c3cf9-235f-41e1-9a8d-363daacbf123" ], "x-ms-correlation-request-id": [ - "41c2c770-b4bc-4d22-8abf-d000f74f2d2e" + "371c3cf9-235f-41e1-9a8d-363daacbf123" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T100544Z:41c2c770-b4bc-4d22-8abf-d000f74f2d2e" + "NORTHCENTRALUS:20160218T133002Z:371c3cf9-235f-41e1-9a8d-363daacbf123" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -94,14 +94,14 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 10:05:44 GMT" + "Thu, 18 Feb 2016 13:30:02 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourcegroups/crptestps4190?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczQxOTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourcegroups/crptestps4427?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczQ0Mjc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -121,16 +121,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14989" ], "x-ms-request-id": [ - "2c905ea2-714a-4860-8efa-91d5c28e62e9" + "2f931b10-4ac2-4a5d-bfd4-7f9aa33ffc17" ], "x-ms-correlation-request-id": [ - "2c905ea2-714a-4860-8efa-91d5c28e62e9" + "2f931b10-4ac2-4a5d-bfd4-7f9aa33ffc17" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T101547Z:2c905ea2-714a-4860-8efa-91d5c28e62e9" + "NORTHCENTRALUS:20160218T134033Z:2f931b10-4ac2-4a5d-bfd4-7f9aa33ffc17" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -139,14 +139,14 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 10:15:47 GMT" + "Thu, 18 Feb 2016 13:40:32 GMT" ] }, "StatusCode": 204 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourcegroups/crptestps4190?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczQxOTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourcegroups/crptestps4427?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczQ0Mjc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { @@ -160,7 +160,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190\",\r\n \"name\": \"crptestps4190\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427\",\r\n \"name\": \"crptestps4427\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "179" @@ -175,16 +175,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-request-id": [ - "05dd2880-0c0a-4b09-a617-52bcefc0260c" + "701c8515-c22a-40bc-b307-13a8783ce85c" ], "x-ms-correlation-request-id": [ - "05dd2880-0c0a-4b09-a617-52bcefc0260c" + "701c8515-c22a-40bc-b307-13a8783ce85c" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T100546Z:05dd2880-0c0a-4b09-a617-52bcefc0260c" + "NORTHCENTRALUS:20160218T133004Z:701c8515-c22a-40bc-b307-13a8783ce85c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -193,14 +193,14 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 10:05:45 GMT" + "Thu, 18 Feb 2016 13:30:03 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -223,16 +223,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14810" ], "x-ms-request-id": [ - "c0394b89-0762-4e65-a233-a9fbc3fdd8fd" + "9aeb1aec-7068-452b-abcc-2c7f90cf4787" ], "x-ms-correlation-request-id": [ - "c0394b89-0762-4e65-a233-a9fbc3fdd8fd" + "9aeb1aec-7068-452b-abcc-2c7f90cf4787" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T100546Z:c0394b89-0762-4e65-a233-a9fbc3fdd8fd" + "NORTHCENTRALUS:20160218T133004Z:9aeb1aec-7068-452b-abcc-2c7f90cf4787" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -241,19 +241,19 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 10:05:45 GMT" + "Thu, 18 Feb 2016 13:30:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/virtualnetworks/vnetcrptestps4190?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNDE5MD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/virtualnetworks/vnetcrptestps4427?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNDQyNz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e253bbfe-0ade-49e0-bc8a-1e1efa38b99f" + "b625ddc9-3559-4cf6-859b-45827221d292" ], "accept-language": [ "en-US" @@ -262,7 +262,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/vnetcrptestps4190' under resource group 'crptestps4190' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/vnetcrptestps4427' under resource group 'crptestps4427' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "168" @@ -280,13 +280,13 @@ "gateway" ], "x-ms-request-id": [ - "f921852f-6f98-4d1c-98a4-c30a3ef000c7" + "40f4dedd-ae27-450f-b56d-43b402a4b407" ], "x-ms-correlation-request-id": [ - "f921852f-6f98-4d1c-98a4-c30a3ef000c7" + "40f4dedd-ae27-450f-b56d-43b402a4b407" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T100547Z:f921852f-6f98-4d1c-98a4-c30a3ef000c7" + "NORTHCENTRALUS:20160218T133006Z:40f4dedd-ae27-450f-b56d-43b402a4b407" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -295,14 +295,14 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 10:05:46 GMT" + "Thu, 18 Feb 2016 13:30:05 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/virtualnetworks/vnetcrptestps4190?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNDE5MD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/virtualnetworks/vnetcrptestps4427?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNDQyNz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -310,7 +310,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetcrptestps4190\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4190\",\r\n \"etag\": \"W/\\\"9e046959-2e2f-4584-bfa0-a92ca9fa1179\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"84f17b7a-a025-466c-ad3d-e4e2114fd48d\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps4190\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4190/subnets/subnetcrptestps4190\",\r\n \"etag\": \"W/\\\"9e046959-2e2f-4584-bfa0-a92ca9fa1179\\\"\",\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}", + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps4427\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4427\",\r\n \"etag\": \"W/\\\"8bd310aa-b1c8-4577-b928-85273da279a1\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c5b3dc49-8466-4db4-a03f-865d891dc651\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps4427\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4427/subnets/subnetcrptestps4427\",\r\n \"etag\": \"W/\\\"8bd310aa-b1c8-4577-b928-85273da279a1\\\"\",\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}", "ResponseHeaders": { "Content-Length": [ "994" @@ -325,7 +325,7 @@ "no-cache" ], "x-ms-request-id": [ - "954c07f9-47a7-4340-abde-f59a91e7d6c9" + "e3d6e438-7cdd-44f4-9422-87b0f85cd7f2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,35 +334,35 @@ "no-cache" ], "ETag": [ - "W/\"9e046959-2e2f-4584-bfa0-a92ca9fa1179\"" + "W/\"8bd310aa-b1c8-4577-b928-85273da279a1\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14956" + "14984" ], "x-ms-correlation-request-id": [ - "51fafa5f-6db4-47b4-8be7-a43da6edfa63" + "9b1ef027-9645-41c7-8f73-6f4f1955f769" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T100559Z:51fafa5f-6db4-47b4-8be7-a43da6edfa63" + "NORTHCENTRALUS:20160218T133039Z:9b1ef027-9645-41c7-8f73-6f4f1955f769" ], "Date": [ - "Tue, 16 Feb 2016 10:05:59 GMT" + "Thu, 18 Feb 2016 13:30:38 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/virtualnetworks/vnetcrptestps4190?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNDE5MD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/virtualnetworks/vnetcrptestps4427?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNDQyNz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cc2f8a24-0ae1-4e9d-aa75-d3c61932ae48" + "39e6a12b-3de7-4558-8526-9df7d305bfbf" ], "accept-language": [ "en-US" @@ -371,7 +371,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetcrptestps4190\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4190\",\r\n \"etag\": \"W/\\\"9e046959-2e2f-4584-bfa0-a92ca9fa1179\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"84f17b7a-a025-466c-ad3d-e4e2114fd48d\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps4190\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4190/subnets/subnetcrptestps4190\",\r\n \"etag\": \"W/\\\"9e046959-2e2f-4584-bfa0-a92ca9fa1179\\\"\",\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}", + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps4427\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4427\",\r\n \"etag\": \"W/\\\"8bd310aa-b1c8-4577-b928-85273da279a1\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c5b3dc49-8466-4db4-a03f-865d891dc651\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps4427\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4427/subnets/subnetcrptestps4427\",\r\n \"etag\": \"W/\\\"8bd310aa-b1c8-4577-b928-85273da279a1\\\"\",\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}", "ResponseHeaders": { "Content-Length": [ "994" @@ -386,7 +386,7 @@ "no-cache" ], "x-ms-request-id": [ - "e8f819fd-43d4-4fbd-85e1-1a126aa6bad0" + "bfdf593e-027c-4cf2-a0d0-34e7dd9d5eef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -395,35 +395,35 @@ "no-cache" ], "ETag": [ - "W/\"9e046959-2e2f-4584-bfa0-a92ca9fa1179\"" + "W/\"8bd310aa-b1c8-4577-b928-85273da279a1\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14955" + "14983" ], "x-ms-correlation-request-id": [ - "3a0dc465-bcd5-45aa-95cf-3a6272a10216" + "2a541b5c-7e26-4a3e-8ef9-3e62afe4bd46" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T100600Z:3a0dc465-bcd5-45aa-95cf-3a6272a10216" + "NORTHCENTRALUS:20160218T133039Z:2a541b5c-7e26-4a3e-8ef9-3e62afe4bd46" ], "Date": [ - "Tue, 16 Feb 2016 10:05:59 GMT" + "Thu, 18 Feb 2016 13:30:39 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/virtualnetworks/vnetcrptestps4190?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNDE5MD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/virtualnetworks/vnetcrptestps4427?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNDQyNz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c82caae0-2945-43e9-996f-293373f3a5b5" + "209a1d2e-7ab6-4525-8e0a-29a4654a05f0" ], "accept-language": [ "en-US" @@ -432,7 +432,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetcrptestps4190\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4190\",\r\n \"etag\": \"W/\\\"9e046959-2e2f-4584-bfa0-a92ca9fa1179\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"84f17b7a-a025-466c-ad3d-e4e2114fd48d\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps4190\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4190/subnets/subnetcrptestps4190\",\r\n \"etag\": \"W/\\\"9e046959-2e2f-4584-bfa0-a92ca9fa1179\\\"\",\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}", + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps4427\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4427\",\r\n \"etag\": \"W/\\\"8bd310aa-b1c8-4577-b928-85273da279a1\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c5b3dc49-8466-4db4-a03f-865d891dc651\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps4427\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4427/subnets/subnetcrptestps4427\",\r\n \"etag\": \"W/\\\"8bd310aa-b1c8-4577-b928-85273da279a1\\\"\",\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}", "ResponseHeaders": { "Content-Length": [ "994" @@ -447,7 +447,7 @@ "no-cache" ], "x-ms-request-id": [ - "0c40fcdc-ee3c-4c7f-87d8-a85f89936850" + "dac175c1-5fa9-4738-9d2d-bd270a3a95e9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -456,32 +456,32 @@ "no-cache" ], "ETag": [ - "W/\"9e046959-2e2f-4584-bfa0-a92ca9fa1179\"" + "W/\"8bd310aa-b1c8-4577-b928-85273da279a1\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14954" + "14982" ], "x-ms-correlation-request-id": [ - "882953e5-d0cd-4e76-89c2-c97d121e8911" + "08a29c83-a945-43bc-9425-1e5e90e4d90f" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T100600Z:882953e5-d0cd-4e76-89c2-c97d121e8911" + "NORTHCENTRALUS:20160218T133039Z:08a29c83-a945-43bc-9425-1e5e90e4d90f" ], "Date": [ - "Tue, 16 Feb 2016 10:05:59 GMT" + "Thu, 18 Feb 2016 13:30:39 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/virtualnetworks/vnetcrptestps4190?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNDE5MD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/virtualnetworks/vnetcrptestps4427?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNDQyNz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps4190\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps4427\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -490,7 +490,7 @@ "341" ], "x-ms-client-request-id": [ - "93c2d975-b9da-4c4c-a11d-a33e82b04c31" + "240cb92f-5bda-4429-a7ad-3d5a91a2425a" ], "accept-language": [ "en-US" @@ -499,7 +499,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetcrptestps4190\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4190\",\r\n \"etag\": \"W/\\\"9924119e-0d86-4830-8497-d3d8dd61d368\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"84f17b7a-a025-466c-ad3d-e4e2114fd48d\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps4190\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4190/subnets/subnetcrptestps4190\",\r\n \"etag\": \"W/\\\"9924119e-0d86-4830-8497-d3d8dd61d368\\\"\",\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}", + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps4427\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4427\",\r\n \"etag\": \"W/\\\"1d8c7fb4-902c-45ef-921e-a0b84b95740c\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"c5b3dc49-8466-4db4-a03f-865d891dc651\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps4427\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4427/subnets/subnetcrptestps4427\",\r\n \"etag\": \"W/\\\"1d8c7fb4-902c-45ef-921e-a0b84b95740c\\\"\",\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}", "ResponseHeaders": { "Content-Length": [ "992" @@ -517,10 +517,10 @@ "10" ], "x-ms-request-id": [ - "70241e29-e3df-4f5d-bd9c-419cb8bf60a9" + "03eaa79e-691a-4696-a427-fc7ace424c07" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Network/locations/eastus/operations/70241e29-e3df-4f5d-bd9c-419cb8bf60a9?api-version=2015-06-15" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Network/locations/eastus/operations/03eaa79e-691a-4696-a427-fc7ace424c07?api-version=2015-06-15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -533,23 +533,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1196" ], "x-ms-correlation-request-id": [ - "91b9fb44-fb51-40f9-b148-b1fb1be03e0e" + "d4040b5e-d43f-408d-aab1-7828dd44a97f" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T100549Z:91b9fb44-fb51-40f9-b148-b1fb1be03e0e" + "NORTHCENTRALUS:20160218T133008Z:d4040b5e-d43f-408d-aab1-7828dd44a97f" ], "Date": [ - "Tue, 16 Feb 2016 10:05:48 GMT" + "Thu, 18 Feb 2016 13:30:08 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Network/locations/eastus/operations/70241e29-e3df-4f5d-bd9c-419cb8bf60a9?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNzAyNDFlMjktZTNkZi00ZjVkLWJkOWMtNDE5Y2I4YmY2MGE5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Network/locations/eastus/operations/03eaa79e-691a-4696-a427-fc7ace424c07?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMDNlYWE3OWUtNjkxYS00Njk2LWE0MjctZmM3YWNlNDI0YzA3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -572,7 +572,7 @@ "no-cache" ], "x-ms-request-id": [ - "9a5d5263-119f-4e03-bdc4-730037a1217b" + "040def61-4f37-440f-ade2-8e233b78b307" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -585,28 +585,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14957" + "14985" ], "x-ms-correlation-request-id": [ - "6e708331-3c5b-4a1a-b6a9-0064931daa8f" + "e95831cf-9f93-4494-aa81-d56bf7199d08" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T100559Z:6e708331-3c5b-4a1a-b6a9-0064931daa8f" + "NORTHCENTRALUS:20160218T133039Z:e95831cf-9f93-4494-aa81-d56bf7199d08" ], "Date": [ - "Tue, 16 Feb 2016 10:05:58 GMT" + "Thu, 18 Feb 2016 13:30:38 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4190?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNDE5MD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4427?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNDQyNz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d794f130-6285-4118-93a3-c5df5cfd22c0" + "fb8ea09f-5523-4204-8ca2-2ffcf5f4549c" ], "accept-language": [ "en-US" @@ -615,7 +615,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/pubipcrptestps4190' under resource group 'crptestps4190' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/pubipcrptestps4427' under resource group 'crptestps4427' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "171" @@ -633,13 +633,13 @@ "gateway" ], "x-ms-request-id": [ - "cba6013c-321f-4152-9e0c-4a372948430d" + "92d8080f-fe1c-4601-875b-16e76926d40d" ], "x-ms-correlation-request-id": [ - "cba6013c-321f-4152-9e0c-4a372948430d" + "92d8080f-fe1c-4601-875b-16e76926d40d" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T100600Z:cba6013c-321f-4152-9e0c-4a372948430d" + "NORTHCENTRALUS:20160218T133040Z:92d8080f-fe1c-4601-875b-16e76926d40d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -648,14 +648,14 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 10:05:59 GMT" + "Thu, 18 Feb 2016 13:30:39 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4190?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNDE5MD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4427?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNDQyNz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -663,7 +663,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pubipcrptestps4190\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4190\",\r\n \"etag\": \"W/\\\"dcd6112c-48ad-45ea-8eeb-9920493a7840\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"fd1fbe22-1d78-4dd4-beb7-5ac159ec7e4b\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps4190\",\r\n \"fqdn\": \"pubipcrptestps4190.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps4427\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4427\",\r\n \"etag\": \"W/\\\"66f9af25-41bf-4307-bfa1-1cb309551918\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0c081d0d-18d1-4748-8a98-cc12e1568105\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps4427\",\r\n \"fqdn\": \"pubipcrptestps4427.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "666" @@ -678,7 +678,7 @@ "no-cache" ], "x-ms-request-id": [ - "78073901-7c62-4df5-b5f9-e0e1ed608f40" + "eecaa07d-819b-4c89-b29a-86105b8c597c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -687,35 +687,35 @@ "no-cache" ], "ETag": [ - "W/\"dcd6112c-48ad-45ea-8eeb-9920493a7840\"" + "W/\"66f9af25-41bf-4307-bfa1-1cb309551918\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14951" + "14979" ], "x-ms-correlation-request-id": [ - "c20d6883-cf16-4a3f-be2d-02e0df7ac964" + "a29e0891-9a68-431f-b317-3f086d5e247d" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T100612Z:c20d6883-cf16-4a3f-be2d-02e0df7ac964" + "NORTHCENTRALUS:20160218T133112Z:a29e0891-9a68-431f-b317-3f086d5e247d" ], "Date": [ - "Tue, 16 Feb 2016 10:06:11 GMT" + "Thu, 18 Feb 2016 13:31:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4190?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNDE5MD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4427?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNDQyNz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cfc531c0-bb2e-45e5-a286-2f2a25f44678" + "40b404f7-fe2c-41e1-acba-7f1380c63f4d" ], "accept-language": [ "en-US" @@ -724,7 +724,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pubipcrptestps4190\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4190\",\r\n \"etag\": \"W/\\\"dcd6112c-48ad-45ea-8eeb-9920493a7840\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"fd1fbe22-1d78-4dd4-beb7-5ac159ec7e4b\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps4190\",\r\n \"fqdn\": \"pubipcrptestps4190.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps4427\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4427\",\r\n \"etag\": \"W/\\\"66f9af25-41bf-4307-bfa1-1cb309551918\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0c081d0d-18d1-4748-8a98-cc12e1568105\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps4427\",\r\n \"fqdn\": \"pubipcrptestps4427.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "666" @@ -739,7 +739,7 @@ "no-cache" ], "x-ms-request-id": [ - "5f19f913-2d7f-44d4-8811-d7a3ecf1d0c0" + "f9625586-48f7-464c-b176-c6829d311253" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -748,35 +748,35 @@ "no-cache" ], "ETag": [ - "W/\"dcd6112c-48ad-45ea-8eeb-9920493a7840\"" + "W/\"66f9af25-41bf-4307-bfa1-1cb309551918\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14950" + "14978" ], "x-ms-correlation-request-id": [ - "6d510fe6-3833-4b97-9b3a-d6fc1a44a151" + "5154cd00-fe1a-41e1-b976-d28f16e1e417" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T100612Z:6d510fe6-3833-4b97-9b3a-d6fc1a44a151" + "NORTHCENTRALUS:20160218T133112Z:5154cd00-fe1a-41e1-b976-d28f16e1e417" ], "Date": [ - "Tue, 16 Feb 2016 10:06:12 GMT" + "Thu, 18 Feb 2016 13:31:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4190?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNDE5MD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4427?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNDQyNz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b5eb6f9c-6fe1-4e58-b942-bf2a8dee3ca3" + "c9a58f86-3da5-406e-a48b-3cd71b861098" ], "accept-language": [ "en-US" @@ -785,7 +785,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pubipcrptestps4190\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4190\",\r\n \"etag\": \"W/\\\"dcd6112c-48ad-45ea-8eeb-9920493a7840\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"fd1fbe22-1d78-4dd4-beb7-5ac159ec7e4b\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps4190\",\r\n \"fqdn\": \"pubipcrptestps4190.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps4427\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4427\",\r\n \"etag\": \"W/\\\"66f9af25-41bf-4307-bfa1-1cb309551918\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0c081d0d-18d1-4748-8a98-cc12e1568105\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps4427\",\r\n \"fqdn\": \"pubipcrptestps4427.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "666" @@ -800,7 +800,7 @@ "no-cache" ], "x-ms-request-id": [ - "83ea989c-3913-4520-b2c3-9d820ac5fb2e" + "cce54efe-2e78-479a-b961-cb5145e27f69" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -809,32 +809,32 @@ "no-cache" ], "ETag": [ - "W/\"dcd6112c-48ad-45ea-8eeb-9920493a7840\"" + "W/\"66f9af25-41bf-4307-bfa1-1cb309551918\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14949" + "14977" ], "x-ms-correlation-request-id": [ - "c6876f73-559d-4747-92f3-e38a14a16ba1" + "90613488-df60-4844-afdf-4b86dc50d04a" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T100612Z:c6876f73-559d-4747-92f3-e38a14a16ba1" + "NORTHCENTRALUS:20160218T133112Z:90613488-df60-4844-afdf-4b86dc50d04a" ], "Date": [ - "Tue, 16 Feb 2016 10:06:12 GMT" + "Thu, 18 Feb 2016 13:31:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4190?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNDE5MD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4427?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNDQyNz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps4190\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps4427\"\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -843,7 +843,7 @@ "174" ], "x-ms-client-request-id": [ - "e2be0c65-0ef3-4a2c-93ac-16c4923ee020" + "fd6cadd3-b9e6-49fb-8acf-77c2231d160b" ], "accept-language": [ "en-US" @@ -852,7 +852,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pubipcrptestps4190\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4190\",\r\n \"etag\": \"W/\\\"f7862567-0c15-4b2b-ac0f-7ebcc008ba45\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"fd1fbe22-1d78-4dd4-beb7-5ac159ec7e4b\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps4190\",\r\n \"fqdn\": \"pubipcrptestps4190.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps4427\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4427\",\r\n \"etag\": \"W/\\\"ddfddb96-d8fd-44d9-a080-58612e2af24d\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"0c081d0d-18d1-4748-8a98-cc12e1568105\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps4427\",\r\n \"fqdn\": \"pubipcrptestps4427.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "665" @@ -870,10 +870,10 @@ "10" ], "x-ms-request-id": [ - "98de918a-e49c-4bcb-9c1e-877ccdc96223" + "d84c1d08-dc46-46a1-b170-980e1b8f28dd" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Network/locations/eastus/operations/98de918a-e49c-4bcb-9c1e-877ccdc96223?api-version=2015-06-15" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Network/locations/eastus/operations/d84c1d08-dc46-46a1-b170-980e1b8f28dd?api-version=2015-06-15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -886,23 +886,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1195" ], "x-ms-correlation-request-id": [ - "cd1b082c-4cdb-4fd1-84ae-b77247bba8e8" + "a8821c42-3725-4398-92eb-d50858a07ece" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T100601Z:cd1b082c-4cdb-4fd1-84ae-b77247bba8e8" + "NORTHCENTRALUS:20160218T133041Z:a8821c42-3725-4398-92eb-d50858a07ece" ], "Date": [ - "Tue, 16 Feb 2016 10:06:01 GMT" + "Thu, 18 Feb 2016 13:30:41 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Network/locations/eastus/operations/98de918a-e49c-4bcb-9c1e-877ccdc96223?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOThkZTkxOGEtZTQ5Yy00YmNiLTljMWUtODc3Y2NkYzk2MjIzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Network/locations/eastus/operations/d84c1d08-dc46-46a1-b170-980e1b8f28dd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZDg0YzFkMDgtZGM0Ni00NmExLWIxNzAtOTgwZTFiOGYyOGRkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -925,7 +925,7 @@ "no-cache" ], "x-ms-request-id": [ - "32943839-42df-485f-bc7d-ab20b8e46450" + "2dc22fcc-f326-45dc-8d35-c783cedf1e89" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -938,28 +938,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14952" + "14980" ], "x-ms-correlation-request-id": [ - "3f1b5a4c-dca6-466f-b665-2b91e959c3b5" + "9cd83eb1-cea9-43ae-8cb3-da2b1f33ef52" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T100612Z:3f1b5a4c-dca6-466f-b665-2b91e959c3b5" + "NORTHCENTRALUS:20160218T133112Z:9cd83eb1-cea9-43ae-8cb3-da2b1f33ef52" ], "Date": [ - "Tue, 16 Feb 2016 10:06:11 GMT" + "Thu, 18 Feb 2016 13:31:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic0crptestps4190?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzBjcnB0ZXN0cHM0MTkwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic0crptestps4427?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzBjcnB0ZXN0cHM0NDI3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "72be595a-0e84-4b73-ab44-3add866d1ef6" + "317b3a0a-ebfc-4555-8036-691808fbe81a" ], "accept-language": [ "en-US" @@ -968,7 +968,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/nic0crptestps4190' under resource group 'crptestps4190' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/nic0crptestps4427' under resource group 'crptestps4427' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "170" @@ -986,13 +986,13 @@ "gateway" ], "x-ms-request-id": [ - "ff9afe61-1b4c-4293-8b0b-f30157ef5f36" + "26eabd23-7664-4751-97f0-4fddf75f8177" ], "x-ms-correlation-request-id": [ - "ff9afe61-1b4c-4293-8b0b-f30157ef5f36" + "26eabd23-7664-4751-97f0-4fddf75f8177" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T100613Z:ff9afe61-1b4c-4293-8b0b-f30157ef5f36" + "NORTHCENTRALUS:20160218T133112Z:26eabd23-7664-4751-97f0-4fddf75f8177" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1001,19 +1001,19 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 10:06:12 GMT" + "Thu, 18 Feb 2016 13:31:12 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic0crptestps4190?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzBjcnB0ZXN0cHM0MTkwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic0crptestps4427?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzBjcnB0ZXN0cHM0NDI3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "937546c9-11ca-4249-9232-52277f305725" + "9b02f471-716d-40ce-9674-9acd8460e39b" ], "accept-language": [ "en-US" @@ -1022,7 +1022,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"nic0crptestps4190\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic0crptestps4190\",\r\n \"etag\": \"W/\\\"66f9a19d-5f24-471a-a2f6-6d259b014f9a\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"54744804-b4f2-4c77-b8d3-4a29c5f2b76d\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic0crptestps4190/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"66f9a19d-5f24-471a-a2f6-6d259b014f9a\\\"\",\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/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4190\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4190/subnets/subnetcrptestps4190\"\r\n },\r\n \"primary\": true\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic0crptestps4427\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic0crptestps4427\",\r\n \"etag\": \"W/\\\"1ffce161-c285-41be-a6f6-469b469c6ed5\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8e6b7c55-c92c-4bb9-9b69-29f0ab2a7e59\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic0crptestps4427/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"1ffce161-c285-41be-a6f6-469b469c6ed5\\\"\",\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/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4427\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4427/subnets/subnetcrptestps4427\"\r\n },\r\n \"primary\": true\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1548" @@ -1037,7 +1037,7 @@ "no-cache" ], "x-ms-request-id": [ - "2ec83bd1-9c15-40d2-b8fc-a7fcb4dfa97d" + "18df54f2-03b5-4b38-b715-dbdf16c79b38" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1046,35 +1046,35 @@ "no-cache" ], "ETag": [ - "W/\"66f9a19d-5f24-471a-a2f6-6d259b014f9a\"" + "W/\"1ffce161-c285-41be-a6f6-469b469c6ed5\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14947" + "14975" ], "x-ms-correlation-request-id": [ - "bf648c14-45eb-4664-92fa-8fbdbeca0dfd" + "bf501a28-a39b-4c0c-8a94-b12d031e8118" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T100615Z:bf648c14-45eb-4664-92fa-8fbdbeca0dfd" + "NORTHCENTRALUS:20160218T133114Z:bf501a28-a39b-4c0c-8a94-b12d031e8118" ], "Date": [ - "Tue, 16 Feb 2016 10:06:14 GMT" + "Thu, 18 Feb 2016 13:31:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic0crptestps4190?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzBjcnB0ZXN0cHM0MTkwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic0crptestps4427?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzBjcnB0ZXN0cHM0NDI3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "afd9baeb-31a4-4fd9-a2fa-45c72c0648cb" + "174bed11-62b7-48ac-9d21-42b632e7b0be" ], "accept-language": [ "en-US" @@ -1083,7 +1083,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"nic0crptestps4190\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic0crptestps4190\",\r\n \"etag\": \"W/\\\"66f9a19d-5f24-471a-a2f6-6d259b014f9a\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"54744804-b4f2-4c77-b8d3-4a29c5f2b76d\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic0crptestps4190/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"66f9a19d-5f24-471a-a2f6-6d259b014f9a\\\"\",\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/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4190\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4190/subnets/subnetcrptestps4190\"\r\n },\r\n \"primary\": true\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic0crptestps4427\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic0crptestps4427\",\r\n \"etag\": \"W/\\\"1ffce161-c285-41be-a6f6-469b469c6ed5\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8e6b7c55-c92c-4bb9-9b69-29f0ab2a7e59\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic0crptestps4427/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"1ffce161-c285-41be-a6f6-469b469c6ed5\\\"\",\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/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4427\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4427/subnets/subnetcrptestps4427\"\r\n },\r\n \"primary\": true\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1548" @@ -1098,7 +1098,7 @@ "no-cache" ], "x-ms-request-id": [ - "5c821af3-b33a-4e0a-8611-3800341e9be1" + "c57df6e5-aa36-42f4-b8e3-dd0ce0fa629e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1107,32 +1107,32 @@ "no-cache" ], "ETag": [ - "W/\"66f9a19d-5f24-471a-a2f6-6d259b014f9a\"" + "W/\"1ffce161-c285-41be-a6f6-469b469c6ed5\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14946" + "14974" ], "x-ms-correlation-request-id": [ - "259d6fbb-cabe-4802-a8c3-96a0c5626f1f" + "d825f5b5-6efe-451e-9a6b-2748dc0b4c12" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T100615Z:259d6fbb-cabe-4802-a8c3-96a0c5626f1f" + "NORTHCENTRALUS:20160218T133114Z:d825f5b5-6efe-451e-9a6b-2748dc0b4c12" ], "Date": [ - "Tue, 16 Feb 2016 10:06:14 GMT" + "Thu, 18 Feb 2016 13:31:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic0crptestps4190?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzBjcnB0ZXN0cHM0MTkwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic0crptestps4427?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzBjcnB0ZXN0cHM0NDI3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"properties\": {\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": [],\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4190/subnets/subnetcrptestps4190\",\r\n \"properties\": {\r\n \"ipConfigurations\": []\r\n }\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4190\"\r\n }\r\n }\r\n }\r\n ],\r\n \"primary\": false,\r\n \"enableIPForwarding\": false\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"properties\": {\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": [],\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4427/subnets/subnetcrptestps4427\",\r\n \"properties\": {\r\n \"ipConfigurations\": []\r\n }\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4427\"\r\n }\r\n }\r\n }\r\n ],\r\n \"primary\": false,\r\n \"enableIPForwarding\": false\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1141,7 +1141,7 @@ "900" ], "x-ms-client-request-id": [ - "98853e84-9720-4d90-aed0-67ab8fc7486f" + "5c8a7938-15d9-44ba-bdcd-e454436d2ebc" ], "accept-language": [ "en-US" @@ -1150,7 +1150,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"nic0crptestps4190\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic0crptestps4190\",\r\n \"etag\": \"W/\\\"66f9a19d-5f24-471a-a2f6-6d259b014f9a\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"54744804-b4f2-4c77-b8d3-4a29c5f2b76d\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic0crptestps4190/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"66f9a19d-5f24-471a-a2f6-6d259b014f9a\\\"\",\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/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4190\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4190/subnets/subnetcrptestps4190\"\r\n },\r\n \"primary\": true\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic0crptestps4427\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic0crptestps4427\",\r\n \"etag\": \"W/\\\"1ffce161-c285-41be-a6f6-469b469c6ed5\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8e6b7c55-c92c-4bb9-9b69-29f0ab2a7e59\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic0crptestps4427/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"1ffce161-c285-41be-a6f6-469b469c6ed5\\\"\",\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/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4427\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4427/subnets/subnetcrptestps4427\"\r\n },\r\n \"primary\": true\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1548" @@ -1165,10 +1165,10 @@ "no-cache" ], "x-ms-request-id": [ - "ae0d8ef6-fbef-4184-a2e8-549e0074ce0a" + "44f44c59-009e-40e4-a0c1-9b49559d7585" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Network/locations/eastus/operations/ae0d8ef6-fbef-4184-a2e8-549e0074ce0a?api-version=2015-06-15" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Network/locations/eastus/operations/44f44c59-009e-40e4-a0c1-9b49559d7585?api-version=2015-06-15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1181,28 +1181,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1194" ], "x-ms-correlation-request-id": [ - "abfb4ab9-42af-4a38-916e-9972a8dea8e5" + "3c72fe23-5948-429d-8b32-5986e983f2a4" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T100614Z:abfb4ab9-42af-4a38-916e-9972a8dea8e5" + "NORTHCENTRALUS:20160218T133114Z:3c72fe23-5948-429d-8b32-5986e983f2a4" ], "Date": [ - "Tue, 16 Feb 2016 10:06:14 GMT" + "Thu, 18 Feb 2016 13:31:13 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic1crptestps4190?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzFjcnB0ZXN0cHM0MTkwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic1crptestps4427?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzFjcnB0ZXN0cHM0NDI3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2fd19e49-753a-4d4a-a8a9-d0420ad242fb" + "eea06f1f-f0d0-489b-bec2-b227a0cb5b99" ], "accept-language": [ "en-US" @@ -1211,7 +1211,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/nic1crptestps4190' under resource group 'crptestps4190' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/nic1crptestps4427' under resource group 'crptestps4427' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "170" @@ -1229,13 +1229,13 @@ "gateway" ], "x-ms-request-id": [ - "07c41425-ad8e-4aad-909b-ada0ea78631c" + "fe75c438-65df-45b2-b6d6-4f2fb71b0cf6" ], "x-ms-correlation-request-id": [ - "07c41425-ad8e-4aad-909b-ada0ea78631c" + "fe75c438-65df-45b2-b6d6-4f2fb71b0cf6" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T100615Z:07c41425-ad8e-4aad-909b-ada0ea78631c" + "NORTHCENTRALUS:20160218T133115Z:fe75c438-65df-45b2-b6d6-4f2fb71b0cf6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1244,19 +1244,19 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 10:06:14 GMT" + "Thu, 18 Feb 2016 13:31:14 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic1crptestps4190?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzFjcnB0ZXN0cHM0MTkwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic1crptestps4427?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzFjcnB0ZXN0cHM0NDI3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8922c6d4-29c2-4364-b4f5-e438a89f738d" + "94a0f891-8ed1-415f-adf4-99e2dc7f8603" ], "accept-language": [ "en-US" @@ -1265,7 +1265,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"nic1crptestps4190\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic1crptestps4190\",\r\n \"etag\": \"W/\\\"00e1d9cd-8588-426e-93aa-7a8b9c6a1331\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5b47fd1c-62c4-42e2-a8b4-cfa9e1bfca88\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic1crptestps4190/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"00e1d9cd-8588-426e-93aa-7a8b9c6a1331\\\"\",\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/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4190/subnets/subnetcrptestps4190\"\r\n },\r\n \"primary\": true\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic1crptestps4427\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic1crptestps4427\",\r\n \"etag\": \"W/\\\"286224dc-8e79-4aa8-a2fa-34b4bceca707\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"30deaaab-e8a7-4255-948d-6e4aa89ec013\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic1crptestps4427/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"286224dc-8e79-4aa8-a2fa-34b4bceca707\\\"\",\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/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4427/subnets/subnetcrptestps4427\"\r\n },\r\n \"primary\": true\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1335" @@ -1280,7 +1280,7 @@ "no-cache" ], "x-ms-request-id": [ - "ee387190-15fd-4cc8-9490-0490c8d472f5" + "6d354e9b-21b8-4b29-aac0-6a5797b3f97f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1289,35 +1289,35 @@ "no-cache" ], "ETag": [ - "W/\"00e1d9cd-8588-426e-93aa-7a8b9c6a1331\"" + "W/\"286224dc-8e79-4aa8-a2fa-34b4bceca707\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14944" + "14972" ], "x-ms-correlation-request-id": [ - "dd6ea3bf-7dcd-47d2-be56-f3c0f7701781" + "5a76d418-3eb4-418a-a7b1-b5293b89a0ce" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T100616Z:dd6ea3bf-7dcd-47d2-be56-f3c0f7701781" + "NORTHCENTRALUS:20160218T133117Z:5a76d418-3eb4-418a-a7b1-b5293b89a0ce" ], "Date": [ - "Tue, 16 Feb 2016 10:06:15 GMT" + "Thu, 18 Feb 2016 13:31:16 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic1crptestps4190?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzFjcnB0ZXN0cHM0MTkwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic1crptestps4427?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzFjcnB0ZXN0cHM0NDI3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "500dcbd8-00b3-44da-978b-661106a8aecf" + "6d41735c-b7e9-4a77-97e3-12ac13d2d377" ], "accept-language": [ "en-US" @@ -1326,7 +1326,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"nic1crptestps4190\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic1crptestps4190\",\r\n \"etag\": \"W/\\\"00e1d9cd-8588-426e-93aa-7a8b9c6a1331\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5b47fd1c-62c4-42e2-a8b4-cfa9e1bfca88\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic1crptestps4190/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"00e1d9cd-8588-426e-93aa-7a8b9c6a1331\\\"\",\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/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4190/subnets/subnetcrptestps4190\"\r\n },\r\n \"primary\": true\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic1crptestps4427\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic1crptestps4427\",\r\n \"etag\": \"W/\\\"286224dc-8e79-4aa8-a2fa-34b4bceca707\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"30deaaab-e8a7-4255-948d-6e4aa89ec013\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic1crptestps4427/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"286224dc-8e79-4aa8-a2fa-34b4bceca707\\\"\",\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/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4427/subnets/subnetcrptestps4427\"\r\n },\r\n \"primary\": true\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1335" @@ -1341,7 +1341,7 @@ "no-cache" ], "x-ms-request-id": [ - "1a903ce5-230a-40a2-b218-bc479cc7d8e9" + "9562cb7e-e304-4b19-9e0c-548f15fc0222" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1350,32 +1350,32 @@ "no-cache" ], "ETag": [ - "W/\"00e1d9cd-8588-426e-93aa-7a8b9c6a1331\"" + "W/\"286224dc-8e79-4aa8-a2fa-34b4bceca707\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14943" + "14971" ], "x-ms-correlation-request-id": [ - "40c2a890-5d82-4812-8ae8-505e34e8ff9f" + "5301259c-585a-493e-a64a-ee44e6baa4d1" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T100617Z:40c2a890-5d82-4812-8ae8-505e34e8ff9f" + "NORTHCENTRALUS:20160218T133117Z:5301259c-585a-493e-a64a-ee44e6baa4d1" ], "Date": [ - "Tue, 16 Feb 2016 10:06:16 GMT" + "Thu, 18 Feb 2016 13:31:16 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic1crptestps4190?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzFjcnB0ZXN0cHM0MTkwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic1crptestps4427?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzFjcnB0ZXN0cHM0NDI3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"properties\": {\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": [],\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4190/subnets/subnetcrptestps4190\",\r\n \"properties\": {\r\n \"ipConfigurations\": []\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"primary\": false,\r\n \"enableIPForwarding\": false\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"properties\": {\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": [],\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4427/subnets/subnetcrptestps4427\",\r\n \"properties\": {\r\n \"ipConfigurations\": []\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"primary\": false,\r\n \"enableIPForwarding\": false\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1384,7 +1384,7 @@ "687" ], "x-ms-client-request-id": [ - "5c2f9ce9-b031-40a9-95bd-99c9476dd9f1" + "9716b95c-6b65-4f0a-b4fc-659fe90fd459" ], "accept-language": [ "en-US" @@ -1393,7 +1393,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"nic1crptestps4190\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic1crptestps4190\",\r\n \"etag\": \"W/\\\"00e1d9cd-8588-426e-93aa-7a8b9c6a1331\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5b47fd1c-62c4-42e2-a8b4-cfa9e1bfca88\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic1crptestps4190/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"00e1d9cd-8588-426e-93aa-7a8b9c6a1331\\\"\",\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/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4190/subnets/subnetcrptestps4190\"\r\n },\r\n \"primary\": true\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic1crptestps4427\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic1crptestps4427\",\r\n \"etag\": \"W/\\\"286224dc-8e79-4aa8-a2fa-34b4bceca707\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"30deaaab-e8a7-4255-948d-6e4aa89ec013\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic1crptestps4427/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"286224dc-8e79-4aa8-a2fa-34b4bceca707\\\"\",\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/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4427/subnets/subnetcrptestps4427\"\r\n },\r\n \"primary\": true\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1335" @@ -1408,10 +1408,10 @@ "no-cache" ], "x-ms-request-id": [ - "4da20bc3-737d-4c07-9d32-15105f214336" + "03522ca9-69a0-468f-a492-2508e49b00aa" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Network/locations/eastus/operations/4da20bc3-737d-4c07-9d32-15105f214336?api-version=2015-06-15" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Network/locations/eastus/operations/03522ca9-69a0-468f-a492-2508e49b00aa?api-version=2015-06-15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1424,23 +1424,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1193" ], "x-ms-correlation-request-id": [ - "a86ee9f1-9313-4fc6-9ef1-5b601ba84719" + "18e6dce9-9bdf-4a0b-8b1f-8f47d77db123" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T100616Z:a86ee9f1-9313-4fc6-9ef1-5b601ba84719" + "NORTHCENTRALUS:20160218T133116Z:18e6dce9-9bdf-4a0b-8b1f-8f47d77db123" ], "Date": [ - "Tue, 16 Feb 2016 10:06:15 GMT" + "Thu, 18 Feb 2016 13:31:16 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Storage/storageAccounts/stocrptestps4190?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM0MTkwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Storage/storageAccounts/stocrptestps4427?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM0NDI3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\"\r\n }\r\n}", "RequestHeaders": { @@ -1451,7 +1451,7 @@ "88" ], "x-ms-client-request-id": [ - "80f36a43-088e-4708-ae8d-3725fd056190" + "47f28f2f-8c69-49eb-bbc3-0a1f90665024" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" @@ -1472,44 +1472,44 @@ "25" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-request-id": [ - "4df9f7ea-d144-4526-9ab7-2d7edecc3d2c" + "ea1ba43c-3da3-450d-a919-0d085d3635da" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Storage/operations/54b412a4-6f27-4631-b849-31d46461757c?monitor=true&api-version=2015-06-15" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Storage/operations/12ee61fb-b59d-4712-9308-c02ad06f923f?monitor=true&api-version=2015-06-15" ], "Server": [ "Microsoft-Azure-Storage-Resource-Provider/1.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "4df9f7ea-d144-4526-9ab7-2d7edecc3d2c" + "ea1ba43c-3da3-450d-a919-0d085d3635da" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T100620Z:4df9f7ea-d144-4526-9ab7-2d7edecc3d2c" + "NORTHCENTRALUS:20160218T133119Z:ea1ba43c-3da3-450d-a919-0d085d3635da" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Feb 2016 10:06:20 GMT" + "Thu, 18 Feb 2016 13:31:19 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Storage/operations/54b412a4-6f27-4631-b849-31d46461757c?monitor=true&api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzU0YjQxMmE0LTZmMjctNDYzMS1iODQ5LTMxZDQ2NDYxNzU3Yz9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Storage/operations/12ee61fb-b59d-4712-9308-c02ad06f923f?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzEyZWU2MWZiLWI1OWQtNDcxMi05MzA4LWMwMmFkMDZmOTIzZj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3fca459f-a1e1-4e68-b6de-14d04e13341b" + "6872fd6e-0a5f-4cd7-89d4-40796ab12633" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" @@ -1530,44 +1530,44 @@ "25" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14989" ], "x-ms-request-id": [ - "b46a3dc4-aaf0-4890-a8e1-c2981cf78d9d" + "6a32b9dc-34cb-4953-9964-0d2e344d643e" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Storage/operations/54b412a4-6f27-4631-b849-31d46461757c?monitor=true&api-version=2015-06-15" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Storage/operations/12ee61fb-b59d-4712-9308-c02ad06f923f?monitor=true&api-version=2015-06-15" ], "Server": [ "Microsoft-Azure-Storage-Resource-Provider/1.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "b46a3dc4-aaf0-4890-a8e1-c2981cf78d9d" + "6a32b9dc-34cb-4953-9964-0d2e344d643e" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T100620Z:b46a3dc4-aaf0-4890-a8e1-c2981cf78d9d" + "NORTHCENTRALUS:20160218T133119Z:6a32b9dc-34cb-4953-9964-0d2e344d643e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Feb 2016 10:06:20 GMT" + "Thu, 18 Feb 2016 13:31:19 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Storage/operations/54b412a4-6f27-4631-b849-31d46461757c?monitor=true&api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzU0YjQxMmE0LTZmMjctNDYzMS1iODQ5LTMxZDQ2NDYxNzU3Yz9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Storage/operations/12ee61fb-b59d-4712-9308-c02ad06f923f?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzEyZWU2MWZiLWI1OWQtNDcxMi05MzA4LWMwMmFkMDZmOTIzZj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "491702f3-fa64-4053-b3f9-06c0fc040240" + "b57c0609-c4cb-41a5-8014-c701fdcbb978" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" @@ -1588,7 +1588,7 @@ "no-cache" ], "x-ms-request-id": [ - "eabe2f34-ad96-4075-9617-f60ff597e9bb" + "d17b4f0f-3a46-4ecd-8cd7-a44c4d456fd5" ], "Cache-Control": [ "no-cache" @@ -1598,37 +1598,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14988" ], "x-ms-correlation-request-id": [ - "eabe2f34-ad96-4075-9617-f60ff597e9bb" + "d17b4f0f-3a46-4ecd-8cd7-a44c4d456fd5" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T100646Z:eabe2f34-ad96-4075-9617-f60ff597e9bb" + "NORTHCENTRALUS:20160218T133144Z:d17b4f0f-3a46-4ecd-8cd7-a44c4d456fd5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Feb 2016 10:06:45 GMT" + "Thu, 18 Feb 2016 13:31:43 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Storage/storageAccounts/stocrptestps4190?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM0MTkwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Storage/storageAccounts/stocrptestps4427?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM0NDI3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ef0c548c-8e24-4d25-966c-e24f51a9f081" + "49ade74f-c383-40af-8b40-4385196deb7e" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Storage/storageAccounts/stocrptestps4190\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps4190\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-16T10:06:19.4280887Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps4190.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Storage/storageAccounts/stocrptestps4427\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps4427\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-18T13:31:18.2831047Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps4427.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "506" @@ -1643,7 +1643,7 @@ "no-cache" ], "x-ms-request-id": [ - "5c935f92-2389-419f-b255-2f501c78a69b" + "1d792612-4ba3-4410-83ea-7905028db3a9" ], "Cache-Control": [ "no-cache" @@ -1653,37 +1653,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14987" ], "x-ms-correlation-request-id": [ - "5c935f92-2389-419f-b255-2f501c78a69b" + "1d792612-4ba3-4410-83ea-7905028db3a9" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T100646Z:5c935f92-2389-419f-b255-2f501c78a69b" + "NORTHCENTRALUS:20160218T133145Z:1d792612-4ba3-4410-83ea-7905028db3a9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Feb 2016 10:06:45 GMT" + "Thu, 18 Feb 2016 13:31:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Storage/storageAccounts/stocrptestps4190?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM0MTkwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Storage/storageAccounts/stocrptestps4427?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM0NDI3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "26356fd3-5c3e-4c68-827d-a838fb08bd1f" + "65bad783-93d2-46aa-bab5-77a0d3e8984c" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Storage/storageAccounts/stocrptestps4190\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps4190\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-16T10:06:19.4280887Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps4190.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Storage/storageAccounts/stocrptestps4427\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps4427\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-18T13:31:18.2831047Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps4427.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "506" @@ -1698,7 +1698,7 @@ "no-cache" ], "x-ms-request-id": [ - "08c179ad-8e7c-472e-985a-b421f16b7d28" + "1d6c0ef0-fee9-43b9-ad64-b691e9729188" ], "Cache-Control": [ "no-cache" @@ -1708,37 +1708,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14986" ], "x-ms-correlation-request-id": [ - "08c179ad-8e7c-472e-985a-b421f16b7d28" + "1d6c0ef0-fee9-43b9-ad64-b691e9729188" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T100646Z:08c179ad-8e7c-472e-985a-b421f16b7d28" + "NORTHCENTRALUS:20160218T133145Z:1d6c0ef0-fee9-43b9-ad64-b691e9729188" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Feb 2016 10:06:45 GMT" + "Thu, 18 Feb 2016 13:31:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Storage/storageAccounts/stocrptestps4190/listKeys?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM0MTkwL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Storage/storageAccounts/stocrptestps4427/listKeys?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM0NDI3L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "38e1caec-d240-401f-87ed-35fbfe1e480f" + "0997a780-8b41-425f-a6c0-b0d406499a9b" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"key1\": \"/Zm8UBabw8d7sDw7bMDiVaUf1xh0a/WT9l5kE3mb5sciCJOzKRQErgpgUD0iHsmtmTfLbJX5Ua8Xtt+MxAG46g==\",\r\n \"key2\": \"WUuFbh/qf3OfdikS7GUShmc1BGJGS1BfPProxXLeQDd+U1aKP4sV4azDLvPl27GgpOtac15qJUwODjcOi3g0vA==\"\r\n}", + "ResponseBody": "{\r\n \"key1\": \"FTeFSrODn9K5e44hllQZgnl2KuRVnHWccLRyhxUWkQdxZVMphrVToUneB0DV2PDlWNijoLh+GmrdVX72faS2zw==\",\r\n \"key2\": \"AJBYNimTLF8uFW2hvmfJ2POopF5Npnz6nVbuEpx3sZoshBXXpnbW1+PfBRNI0TEsBkh2aBWopO2RhoIUQk7dpg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "198" @@ -1753,7 +1753,7 @@ "no-cache" ], "x-ms-request-id": [ - "fae56ec5-e6c5-4eb1-b657-8286dba2a13e" + "3b6623ad-e654-4a4c-a3d2-291bea79949b" ], "Cache-Control": [ "no-cache" @@ -1763,37 +1763,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1197" ], "x-ms-correlation-request-id": [ - "fae56ec5-e6c5-4eb1-b657-8286dba2a13e" + "3b6623ad-e654-4a4c-a3d2-291bea79949b" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T100646Z:fae56ec5-e6c5-4eb1-b657-8286dba2a13e" + "NORTHCENTRALUS:20160218T133145Z:3b6623ad-e654-4a4c-a3d2-291bea79949b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Feb 2016 10:06:45 GMT" + "Thu, 18 Feb 2016 13:31:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Storage/storageAccounts/stocrptestps4190/listKeys?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM0MTkwL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Storage/storageAccounts/stocrptestps4427/listKeys?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM0NDI3L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c8c5f518-e997-4d84-a59d-e67dcd5e11c3" + "856cc264-ea45-4422-ac56-4d7ed7b279bb" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"key1\": \"/Zm8UBabw8d7sDw7bMDiVaUf1xh0a/WT9l5kE3mb5sciCJOzKRQErgpgUD0iHsmtmTfLbJX5Ua8Xtt+MxAG46g==\",\r\n \"key2\": \"WUuFbh/qf3OfdikS7GUShmc1BGJGS1BfPProxXLeQDd+U1aKP4sV4azDLvPl27GgpOtac15qJUwODjcOi3g0vA==\"\r\n}", + "ResponseBody": "{\r\n \"key1\": \"FTeFSrODn9K5e44hllQZgnl2KuRVnHWccLRyhxUWkQdxZVMphrVToUneB0DV2PDlWNijoLh+GmrdVX72faS2zw==\",\r\n \"key2\": \"AJBYNimTLF8uFW2hvmfJ2POopF5Npnz6nVbuEpx3sZoshBXXpnbW1+PfBRNI0TEsBkh2aBWopO2RhoIUQk7dpg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "198" @@ -1808,7 +1808,7 @@ "no-cache" ], "x-ms-request-id": [ - "7133dfe5-ba37-4a4d-9715-c60502207618" + "c81e2307-c9a4-4090-b15c-e4bc89f75df6" ], "Cache-Control": [ "no-cache" @@ -1821,34 +1821,34 @@ "1198" ], "x-ms-correlation-request-id": [ - "7133dfe5-ba37-4a4d-9715-c60502207618" + "c81e2307-c9a4-4090-b15c-e4bc89f75df6" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T101029Z:7133dfe5-ba37-4a4d-9715-c60502207618" + "NORTHCENTRALUS:20160218T133520Z:c81e2307-c9a4-4090-b15c-e4bc89f75df6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Feb 2016 10:10:29 GMT" + "Thu, 18 Feb 2016 13:35:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Storage/storageAccounts/stocrptestps4190/listKeys?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM0MTkwL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Storage/storageAccounts/stocrptestps4427/listKeys?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM0NDI3L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "493593eb-6dbc-44da-8e1b-76438c5dfaa8" + "efe57d1e-2000-4e69-8fe2-1b905bf8db71" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"key1\": \"/Zm8UBabw8d7sDw7bMDiVaUf1xh0a/WT9l5kE3mb5sciCJOzKRQErgpgUD0iHsmtmTfLbJX5Ua8Xtt+MxAG46g==\",\r\n \"key2\": \"WUuFbh/qf3OfdikS7GUShmc1BGJGS1BfPProxXLeQDd+U1aKP4sV4azDLvPl27GgpOtac15qJUwODjcOi3g0vA==\"\r\n}", + "ResponseBody": "{\r\n \"key1\": \"FTeFSrODn9K5e44hllQZgnl2KuRVnHWccLRyhxUWkQdxZVMphrVToUneB0DV2PDlWNijoLh+GmrdVX72faS2zw==\",\r\n \"key2\": \"AJBYNimTLF8uFW2hvmfJ2POopF5Npnz6nVbuEpx3sZoshBXXpnbW1+PfBRNI0TEsBkh2aBWopO2RhoIUQk7dpg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "198" @@ -1863,7 +1863,7 @@ "no-cache" ], "x-ms-request-id": [ - "0d88c6ef-5340-4e1a-8b46-3c05433170d4" + "729dc0b8-7325-4fc8-89a3-7b56609c837a" ], "Cache-Control": [ "no-cache" @@ -1876,34 +1876,34 @@ "1197" ], "x-ms-correlation-request-id": [ - "0d88c6ef-5340-4e1a-8b46-3c05433170d4" + "729dc0b8-7325-4fc8-89a3-7b56609c837a" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T101029Z:0d88c6ef-5340-4e1a-8b46-3c05433170d4" + "NORTHCENTRALUS:20160218T133524Z:729dc0b8-7325-4fc8-89a3-7b56609c837a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Feb 2016 10:10:29 GMT" + "Thu, 18 Feb 2016 13:35:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Storage/storageAccounts/stocrptestps4190/listKeys?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM0MTkwL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Storage/storageAccounts/stocrptestps4427/listKeys?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM0NDI3L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "219ab969-02fe-41ba-af20-fb9775d061a6" + "7d684b39-bef5-4a5f-abb4-2bec2fa089e3" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"key1\": \"/Zm8UBabw8d7sDw7bMDiVaUf1xh0a/WT9l5kE3mb5sciCJOzKRQErgpgUD0iHsmtmTfLbJX5Ua8Xtt+MxAG46g==\",\r\n \"key2\": \"WUuFbh/qf3OfdikS7GUShmc1BGJGS1BfPProxXLeQDd+U1aKP4sV4azDLvPl27GgpOtac15qJUwODjcOi3g0vA==\"\r\n}", + "ResponseBody": "{\r\n \"key1\": \"FTeFSrODn9K5e44hllQZgnl2KuRVnHWccLRyhxUWkQdxZVMphrVToUneB0DV2PDlWNijoLh+GmrdVX72faS2zw==\",\r\n \"key2\": \"AJBYNimTLF8uFW2hvmfJ2POopF5Npnz6nVbuEpx3sZoshBXXpnbW1+PfBRNI0TEsBkh2aBWopO2RhoIUQk7dpg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "198" @@ -1918,7 +1918,7 @@ "no-cache" ], "x-ms-request-id": [ - "c71e8143-50c6-463b-b8c3-487f0b3b0aaa" + "8ffb0895-82f9-4cdb-875c-3809aba679c3" ], "Cache-Control": [ "no-cache" @@ -1928,28 +1928,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1195" ], "x-ms-correlation-request-id": [ - "c71e8143-50c6-463b-b8c3-487f0b3b0aaa" + "8ffb0895-82f9-4cdb-875c-3809aba679c3" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T101413Z:c71e8143-50c6-463b-b8c3-487f0b3b0aaa" + "NORTHCENTRALUS:20160218T133856Z:8ffb0895-82f9-4cdb-875c-3809aba679c3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Feb 2016 10:14:12 GMT" + "Thu, 18 Feb 2016 13:38:56 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQxOTA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQ0Mjc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4190.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 \"name\": \"testDataDisk1\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4190.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"Empty\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4190.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"Empty\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123crptestps4190\",\r\n \"linuxConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic0crptestps4190\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic1crptestps4190\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4427.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 \"name\": \"testDataDisk1\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4427.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"Empty\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4427.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"Empty\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123crptestps4427\",\r\n \"linuxConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic0crptestps4427\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic1crptestps4427\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1958,7 +1958,7 @@ "2011" ], "x-ms-client-request-id": [ - "ec2aa46e-804d-43b3-bf91-bc7cdbfba1cb" + "328e3d93-976c-4cd6-a5fd-92b8c2d6e1ab" ], "accept-language": [ "en-US" @@ -1967,7 +1967,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"8db75222-3391-47ad-9403-a276eeb31769\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4190.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4190.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4190.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic0crptestps4190\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic1crptestps4190\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190\",\r\n \"name\": \"vmcrptestps4190\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"c534340b-594e-48fe-bc39-b7915f78bee8\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4427.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4427.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4427.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic0crptestps4427\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic1crptestps4427\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427\",\r\n \"name\": \"vmcrptestps4427\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "2221" @@ -1982,16 +1982,16 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/5a11659a-fe67-4ce8-b712-622a9cf7c4af?api-version=2015-06-15" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/6dd6de71-2250-44b9-af4b-b20277109779?api-version=2015-06-15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130995838280309262" ], "x-ms-request-id": [ - "5a11659a-fe67-4ce8-b712-622a9cf7c4af" + "6dd6de71-2250-44b9-af4b-b20277109779" ], "Cache-Control": [ "no-cache" @@ -2004,20 +2004,20 @@ "1199" ], "x-ms-correlation-request-id": [ - "7dbe2b2f-9604-4a00-b4c6-4265f66d0210" + "2dd1f1a7-55a1-44c6-a22b-8c1efb7c5731" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T100656Z:7dbe2b2f-9604-4a00-b4c6-4265f66d0210" + "NORTHCENTRALUS:20160218T133148Z:2dd1f1a7-55a1-44c6-a22b-8c1efb7c5731" ], "Date": [ - "Tue, 16 Feb 2016 10:06:55 GMT" + "Thu, 18 Feb 2016 13:31:47 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/5a11659a-fe67-4ce8-b712-622a9cf7c4af?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNWExMTY1OWEtZmU2Ny00Y2U4LWI3MTItNjIyYTljZjdjNGFmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/6dd6de71-2250-44b9-af4b-b20277109779?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNmRkNmRlNzEtMjI1MC00NGI5LWFmNGItYjIwMjc3MTA5Nzc5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2025,7 +2025,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"5a11659a-fe67-4ce8-b712-622a9cf7c4af\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T11:06:55.4644094+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"6dd6de71-2250-44b9-af4b-b20277109779\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-18T14:31:47.5081423+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2043,10 +2043,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130995838280309262" ], "x-ms-request-id": [ - "d3a3a1ce-6ba6-474a-aaa3-22eff91868f2" + "ff486c4d-fd8f-4862-878e-273cd0348682" ], "Cache-Control": [ "no-cache" @@ -2056,23 +2056,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14959" ], "x-ms-correlation-request-id": [ - "540aff5b-976e-42e1-abdc-652f06233227" + "ec2da574-4881-4c70-b822-7b005071aaae" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T100726Z:540aff5b-976e-42e1-abdc-652f06233227" + "NORTHCENTRALUS:20160218T133218Z:ec2da574-4881-4c70-b822-7b005071aaae" ], "Date": [ - "Tue, 16 Feb 2016 10:07:26 GMT" + "Thu, 18 Feb 2016 13:32:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/5a11659a-fe67-4ce8-b712-622a9cf7c4af?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNWExMTY1OWEtZmU2Ny00Y2U4LWI3MTItNjIyYTljZjdjNGFmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/6dd6de71-2250-44b9-af4b-b20277109779?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNmRkNmRlNzEtMjI1MC00NGI5LWFmNGItYjIwMjc3MTA5Nzc5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2080,7 +2080,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"5a11659a-fe67-4ce8-b712-622a9cf7c4af\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T11:06:55.4644094+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"6dd6de71-2250-44b9-af4b-b20277109779\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-18T14:31:47.5081423+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2098,10 +2098,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130995838280309262" ], "x-ms-request-id": [ - "1ebdd5cd-bc9e-44a6-a91f-0a1880020a55" + "49b1c1fd-c166-4756-9f9e-17528d0a07de" ], "Cache-Control": [ "no-cache" @@ -2111,23 +2111,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14958" ], "x-ms-correlation-request-id": [ - "8d1d39c4-7c0b-4754-a8b9-20215f2bd48d" + "5a80e026-4114-4f75-acef-b54c759fe739" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T100757Z:8d1d39c4-7c0b-4754-a8b9-20215f2bd48d" + "NORTHCENTRALUS:20160218T133248Z:5a80e026-4114-4f75-acef-b54c759fe739" ], "Date": [ - "Tue, 16 Feb 2016 10:07:57 GMT" + "Thu, 18 Feb 2016 13:32:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/5a11659a-fe67-4ce8-b712-622a9cf7c4af?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNWExMTY1OWEtZmU2Ny00Y2U4LWI3MTItNjIyYTljZjdjNGFmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/6dd6de71-2250-44b9-af4b-b20277109779?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNmRkNmRlNzEtMjI1MC00NGI5LWFmNGItYjIwMjc3MTA5Nzc5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2135,7 +2135,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"5a11659a-fe67-4ce8-b712-622a9cf7c4af\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T11:06:55.4644094+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"6dd6de71-2250-44b9-af4b-b20277109779\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-18T14:31:47.5081423+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2153,10 +2153,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130995838280309262" ], "x-ms-request-id": [ - "5064909e-3d98-4593-b83e-69e4a7c74b76" + "f18c48e0-5dea-4ff8-9ed3-802051a22b61" ], "Cache-Control": [ "no-cache" @@ -2166,23 +2166,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14957" ], "x-ms-correlation-request-id": [ - "b02c281c-2fbb-4c19-a3d1-18be1040c755" + "26c40059-b3f6-4362-b106-3170baad2d48" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T100827Z:b02c281c-2fbb-4c19-a3d1-18be1040c755" + "NORTHCENTRALUS:20160218T133318Z:26c40059-b3f6-4362-b106-3170baad2d48" ], "Date": [ - "Tue, 16 Feb 2016 10:08:26 GMT" + "Thu, 18 Feb 2016 13:33:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/5a11659a-fe67-4ce8-b712-622a9cf7c4af?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNWExMTY1OWEtZmU2Ny00Y2U4LWI3MTItNjIyYTljZjdjNGFmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/6dd6de71-2250-44b9-af4b-b20277109779?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNmRkNmRlNzEtMjI1MC00NGI5LWFmNGItYjIwMjc3MTA5Nzc5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2190,7 +2190,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"5a11659a-fe67-4ce8-b712-622a9cf7c4af\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T11:06:55.4644094+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"6dd6de71-2250-44b9-af4b-b20277109779\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-18T14:31:47.5081423+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2208,10 +2208,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130995838280309262" ], "x-ms-request-id": [ - "5b0ec95f-85ed-46bd-98d4-095f879fd17a" + "fe01decb-6d1e-4cd5-acf1-b99fb627f876" ], "Cache-Control": [ "no-cache" @@ -2221,23 +2221,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14956" ], "x-ms-correlation-request-id": [ - "844f9d75-ab9e-4d8b-a661-cfb38e3d8af0" + "7a08fbd0-480f-4c03-9711-2eded457bda9" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T100857Z:844f9d75-ab9e-4d8b-a661-cfb38e3d8af0" + "NORTHCENTRALUS:20160218T133349Z:7a08fbd0-480f-4c03-9711-2eded457bda9" ], "Date": [ - "Tue, 16 Feb 2016 10:08:56 GMT" + "Thu, 18 Feb 2016 13:33:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/5a11659a-fe67-4ce8-b712-622a9cf7c4af?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNWExMTY1OWEtZmU2Ny00Y2U4LWI3MTItNjIyYTljZjdjNGFmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/6dd6de71-2250-44b9-af4b-b20277109779?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNmRkNmRlNzEtMjI1MC00NGI5LWFmNGItYjIwMjc3MTA5Nzc5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2245,7 +2245,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"5a11659a-fe67-4ce8-b712-622a9cf7c4af\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T11:06:55.4644094+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"6dd6de71-2250-44b9-af4b-b20277109779\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-18T14:31:47.5081423+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2263,10 +2263,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130995838280309262" ], "x-ms-request-id": [ - "b346211f-fe54-47ff-b2b2-ea771d2a6f10" + "a1e2e900-6db0-4e4f-9661-899b51a13ff6" ], "Cache-Control": [ "no-cache" @@ -2276,23 +2276,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14955" ], "x-ms-correlation-request-id": [ - "f60c6ecd-82bc-4995-ba62-1d2fe1086d22" + "1c707a3b-bb4b-47a3-ae64-8e38b9289614" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T100927Z:f60c6ecd-82bc-4995-ba62-1d2fe1086d22" + "NORTHCENTRALUS:20160218T133419Z:1c707a3b-bb4b-47a3-ae64-8e38b9289614" ], "Date": [ - "Tue, 16 Feb 2016 10:09:27 GMT" + "Thu, 18 Feb 2016 13:34:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/5a11659a-fe67-4ce8-b712-622a9cf7c4af?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNWExMTY1OWEtZmU2Ny00Y2U4LWI3MTItNjIyYTljZjdjNGFmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/6dd6de71-2250-44b9-af4b-b20277109779?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNmRkNmRlNzEtMjI1MC00NGI5LWFmNGItYjIwMjc3MTA5Nzc5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2300,7 +2300,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"5a11659a-fe67-4ce8-b712-622a9cf7c4af\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-02-16T11:06:55.4644094+01:00\",\r\n \"endTime\": \"2016-02-16T11:09:50.6832001+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"6dd6de71-2250-44b9-af4b-b20277109779\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-02-18T14:31:47.5081423+01:00\",\r\n \"endTime\": \"2016-02-18T14:34:40.3809506+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "191" @@ -2318,10 +2318,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130995838280309262" ], "x-ms-request-id": [ - "6bca0da4-9a26-4a6a-9339-2f6acd59c880" + "88cb00d3-0753-4763-a551-9a9185bab11a" ], "Cache-Control": [ "no-cache" @@ -2331,23 +2331,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14954" ], "x-ms-correlation-request-id": [ - "8a7c1178-6a58-4be3-8912-98a81071b7ad" + "c587deb4-b838-4f77-8ef5-508be98148ff" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T100957Z:8a7c1178-6a58-4be3-8912-98a81071b7ad" + "NORTHCENTRALUS:20160218T133449Z:c587deb4-b838-4f77-8ef5-508be98148ff" ], "Date": [ - "Tue, 16 Feb 2016 10:09:57 GMT" + "Thu, 18 Feb 2016 13:34:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQxOTA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQ0Mjc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2355,7 +2355,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"8db75222-3391-47ad-9403-a276eeb31769\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4190.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4190.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4190.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic0crptestps4190\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic1crptestps4190\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190\",\r\n \"name\": \"vmcrptestps4190\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"c534340b-594e-48fe-bc39-b7915f78bee8\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4427.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4427.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4427.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic0crptestps4427\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic1crptestps4427\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427\",\r\n \"name\": \"vmcrptestps4427\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "2222" @@ -2373,10 +2373,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130995838280309262" ], "x-ms-request-id": [ - "e8f01b50-9d29-4b2b-b035-26210772fe67" + "203995d9-f8c2-4290-aff8-ccd5e705b016" ], "Cache-Control": [ "no-cache" @@ -2386,28 +2386,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14953" ], "x-ms-correlation-request-id": [ - "b0bc0134-a0d1-470d-9f44-71685e938bad" + "8a5177ab-274d-4833-8318-3c05f75f652b" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T100958Z:b0bc0134-a0d1-470d-9f44-71685e938bad" + "NORTHCENTRALUS:20160218T133449Z:8a5177ab-274d-4833-8318-3c05f75f652b" ], "Date": [ - "Tue, 16 Feb 2016 10:09:57 GMT" + "Thu, 18 Feb 2016 13:34:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQxOTA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQ0Mjc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b126e01b-22b2-4be6-a95d-fa69ce5246e7" + "c4cfc1f9-2493-4e99-b25d-ec0884b77337" ], "accept-language": [ "en-US" @@ -2416,7 +2416,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"8db75222-3391-47ad-9403-a276eeb31769\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4190.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4190.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4190.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic0crptestps4190\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic1crptestps4190\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190\",\r\n \"name\": \"vmcrptestps4190\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"c534340b-594e-48fe-bc39-b7915f78bee8\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4427.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4427.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4427.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic0crptestps4427\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic1crptestps4427\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427\",\r\n \"name\": \"vmcrptestps4427\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "2222" @@ -2434,10 +2434,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130995838280309262" ], "x-ms-request-id": [ - "c825c371-5c8c-4f52-a9a5-653b4112e943" + "d04efa8f-74e9-448f-9f4b-3e090a150995" ], "Cache-Control": [ "no-cache" @@ -2447,28 +2447,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14952" ], "x-ms-correlation-request-id": [ - "1db5e67c-8d3a-4576-a4cd-c8ab89acc21e" + "85b1a94f-762e-481f-ad86-0c327d3496da" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T100958Z:1db5e67c-8d3a-4576-a4cd-c8ab89acc21e" + "NORTHCENTRALUS:20160218T133449Z:85b1a94f-762e-481f-ad86-0c327d3496da" ], "Date": [ - "Tue, 16 Feb 2016 10:09:57 GMT" + "Thu, 18 Feb 2016 13:34:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQxOTA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQ0Mjc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e2ceba31-a7df-415b-9483-df323d6c8c8b" + "cb8c4dbf-212e-4397-8af0-9f6b8be4add3" ], "accept-language": [ "en-US" @@ -2477,7 +2477,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"8db75222-3391-47ad-9403-a276eeb31769\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4190.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4190.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4190.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic0crptestps4190\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic1crptestps4190\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190\",\r\n \"name\": \"vmcrptestps4190\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"c534340b-594e-48fe-bc39-b7915f78bee8\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4427.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4427.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4427.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic0crptestps4427\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic1crptestps4427\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427\",\r\n \"name\": \"vmcrptestps4427\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "2222" @@ -2495,10 +2495,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130995838280309262" ], "x-ms-request-id": [ - "df0a10bb-be57-4949-9cc0-b832ad6fa2fe" + "c87dd271-f616-46af-98c4-c6efd6760839" ], "Cache-Control": [ "no-cache" @@ -2508,28 +2508,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14951" ], "x-ms-correlation-request-id": [ - "016782fd-f331-4216-9277-51e2d74581eb" + "037e719c-85e5-46cc-a0b6-3bec71806662" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T100958Z:016782fd-f331-4216-9277-51e2d74581eb" + "NORTHCENTRALUS:20160218T133450Z:037e719c-85e5-46cc-a0b6-3bec71806662" ], "Date": [ - "Tue, 16 Feb 2016 10:09:57 GMT" + "Thu, 18 Feb 2016 13:34:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQxOTA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQ0Mjc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "261ca321-8724-4655-a6e2-42e30201b0a4" + "85a31173-fbf6-4628-bb77-57b15cce367a" ], "accept-language": [ "en-US" @@ -2538,7 +2538,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"8db75222-3391-47ad-9403-a276eeb31769\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4190.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4190.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4190.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic0crptestps4190\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic1crptestps4190\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190\",\r\n \"name\": \"vmcrptestps4190\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"c534340b-594e-48fe-bc39-b7915f78bee8\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4427.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4427.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4427.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic0crptestps4427\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic1crptestps4427\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427\",\r\n \"name\": \"vmcrptestps4427\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "2222" @@ -2556,10 +2556,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130995838280309262" ], "x-ms-request-id": [ - "876fe745-d929-4dff-895c-80204c77fccc" + "0d381ad4-64d4-49af-85c8-6c23d81d5b65" ], "Cache-Control": [ "no-cache" @@ -2569,28 +2569,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14950" ], "x-ms-correlation-request-id": [ - "05f83b3c-daf6-4f54-b6d7-d76513bfb2d0" + "a5ef1e4d-ce9c-424f-9f46-2749bd342665" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T100958Z:05f83b3c-daf6-4f54-b6d7-d76513bfb2d0" + "NORTHCENTRALUS:20160218T133450Z:a5ef1e4d-ce9c-424f-9f46-2749bd342665" ], "Date": [ - "Tue, 16 Feb 2016 10:09:58 GMT" + "Thu, 18 Feb 2016 13:34:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQxOTA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQ0Mjc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f01c9b01-de45-4167-897a-00d1b90d9e09" + "fdba0694-7092-4e83-8744-234b0d48d8d3" ], "accept-language": [ "en-US" @@ -2599,7 +2599,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"8db75222-3391-47ad-9403-a276eeb31769\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4190.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4190.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4190.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic0crptestps4190\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic1crptestps4190\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190\",\r\n \"name\": \"vmcrptestps4190\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"c534340b-594e-48fe-bc39-b7915f78bee8\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4427.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4427.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4427.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic0crptestps4427\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic1crptestps4427\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427\",\r\n \"name\": \"vmcrptestps4427\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "2222" @@ -2617,10 +2617,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130995838280309262" ], "x-ms-request-id": [ - "3c50f5c0-7e49-4d98-8656-63f2e3a76de6" + "e18692b3-2089-4824-9f52-cb82dacb5338" ], "Cache-Control": [ "no-cache" @@ -2630,28 +2630,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14965" ], "x-ms-correlation-request-id": [ - "9cf3de40-bb32-4263-a20a-853c61d8945f" + "7e678acc-aec1-4193-ba8d-5fe58100360d" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T101028Z:9cf3de40-bb32-4263-a20a-853c61d8945f" + "NORTHCENTRALUS:20160218T133520Z:7e678acc-aec1-4193-ba8d-5fe58100360d" ], "Date": [ - "Tue, 16 Feb 2016 10:10:27 GMT" + "Thu, 18 Feb 2016 13:35:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQxOTA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQ0Mjc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f6529d45-6693-4b67-95b5-bb7ef39b0de4" + "b3ccb1aa-c7de-452f-a092-0aa99017a9f9" ], "accept-language": [ "en-US" @@ -2660,7 +2660,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"8db75222-3391-47ad-9403-a276eeb31769\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4190.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4190.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4190.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic0crptestps4190\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic1crptestps4190\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRQcm9jZXNzb3JUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRJZGxlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50UHJpdmlsZWdlZFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudEludGVycnVwdFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudERQQ1RpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudFVzZXJUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnROaWNlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50SU9XYWl0VGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZE1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxVc2VkTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRBdmFpbGFibGVNZW1vcnkiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRVc2VkQnlDYWNoZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcVXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1BlclNlYyIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1JlYWRQZXJTZWMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcUGFnZXNXcml0dGVuUGVyU2VjIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VUcmFuc2ZlclRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQXZlcmFnZVJlYWRUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VXcml0ZVRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcVHJhbnNmZXJzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFJlYWRzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFdyaXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xCeXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xXcml0ZUJ5dGVzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VEaXNrUXVldWVMZW5ndGgiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVG90YWwiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVHJhbnNtaXR0ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzUmVjZWl2ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXFBhY2tldHNUcmFuc21pdHRlZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcUGFja2V0c1JlY2VpdmVkIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFJ4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFR4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbENvbGxpc2lvbnMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190/extensions/LinuxDiagnostic\",\r\n \"name\": \"LinuxDiagnostic\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190\",\r\n \"name\": \"vmcrptestps4190\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"c534340b-594e-48fe-bc39-b7915f78bee8\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4427.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4427.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4427.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic0crptestps4427\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic1crptestps4427\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRQcm9jZXNzb3JUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRJZGxlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50UHJpdmlsZWdlZFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudEludGVycnVwdFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudERQQ1RpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudFVzZXJUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnROaWNlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50SU9XYWl0VGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZE1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxVc2VkTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRBdmFpbGFibGVNZW1vcnkiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRVc2VkQnlDYWNoZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcVXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1BlclNlYyIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1JlYWRQZXJTZWMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcUGFnZXNXcml0dGVuUGVyU2VjIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VUcmFuc2ZlclRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQXZlcmFnZVJlYWRUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VXcml0ZVRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcVHJhbnNmZXJzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFJlYWRzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFdyaXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xCeXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xXcml0ZUJ5dGVzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VEaXNrUXVldWVMZW5ndGgiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVG90YWwiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVHJhbnNtaXR0ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzUmVjZWl2ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXFBhY2tldHNUcmFuc21pdHRlZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcUGFja2V0c1JlY2VpdmVkIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFJ4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFR4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbENvbGxpc2lvbnMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427/extensions/LinuxDiagnostic\",\r\n \"name\": \"LinuxDiagnostic\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427\",\r\n \"name\": \"vmcrptestps4427\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "7987" @@ -2678,10 +2678,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130995838280309262" ], "x-ms-request-id": [ - "d3455857-ff07-4649-a8f0-59e8390550c1" + "34da0d18-6c66-4115-8567-d8239ee95091" ], "Cache-Control": [ "no-cache" @@ -2691,28 +2691,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" + "14959" ], "x-ms-correlation-request-id": [ - "1960bd1e-0345-4db7-bf72-6b35c61c863f" + "ac3f2b9e-b828-4b0d-b069-78fb811f0c18" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T101235Z:1960bd1e-0345-4db7-bf72-6b35c61c863f" + "NORTHCENTRALUS:20160218T133710Z:ac3f2b9e-b828-4b0d-b069-78fb811f0c18" ], "Date": [ - "Tue, 16 Feb 2016 10:12:35 GMT" + "Thu, 18 Feb 2016 13:37:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQxOTA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQ0Mjc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b5145643-d773-4679-9c80-780b456149fb" + "9c0cc2a7-075e-4b09-a395-03df0e522c86" ], "accept-language": [ "en-US" @@ -2721,7 +2721,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"8db75222-3391-47ad-9403-a276eeb31769\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4190.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4190.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4190.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic0crptestps4190\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic1crptestps4190\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_DS2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.2\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.2\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"stocrptestps4190.hour.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"stocrptestps4190.minute.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps41902\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps41902.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190/extensions/AzureEnhancedMonitorForLinux\",\r\n \"name\": \"AzureEnhancedMonitorForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRQcm9jZXNzb3JUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRJZGxlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50UHJpdmlsZWdlZFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudEludGVycnVwdFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudERQQ1RpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudFVzZXJUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnROaWNlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50SU9XYWl0VGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZE1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxVc2VkTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRBdmFpbGFibGVNZW1vcnkiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRVc2VkQnlDYWNoZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcVXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1BlclNlYyIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1JlYWRQZXJTZWMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcUGFnZXNXcml0dGVuUGVyU2VjIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VUcmFuc2ZlclRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQXZlcmFnZVJlYWRUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VXcml0ZVRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcVHJhbnNmZXJzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFJlYWRzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFdyaXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xCeXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xXcml0ZUJ5dGVzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VEaXNrUXVldWVMZW5ndGgiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVG90YWwiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVHJhbnNtaXR0ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzUmVjZWl2ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXFBhY2tldHNUcmFuc21pdHRlZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcUGFja2V0c1JlY2VpdmVkIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFJ4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFR4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbENvbGxpc2lvbnMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190/extensions/LinuxDiagnostic\",\r\n \"name\": \"LinuxDiagnostic\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190\",\r\n \"name\": \"vmcrptestps4190\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"c534340b-594e-48fe-bc39-b7915f78bee8\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4427.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4427.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4427.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic0crptestps4427\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic1crptestps4427\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_DS2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.2\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.2\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"stocrptestps4427.hour.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"stocrptestps4427.minute.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps44272\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps44272.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427/extensions/AzureEnhancedMonitorForLinux\",\r\n \"name\": \"AzureEnhancedMonitorForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRQcm9jZXNzb3JUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRJZGxlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50UHJpdmlsZWdlZFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudEludGVycnVwdFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudERQQ1RpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudFVzZXJUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnROaWNlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50SU9XYWl0VGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZE1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxVc2VkTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRBdmFpbGFibGVNZW1vcnkiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRVc2VkQnlDYWNoZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcVXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1BlclNlYyIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1JlYWRQZXJTZWMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcUGFnZXNXcml0dGVuUGVyU2VjIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VUcmFuc2ZlclRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQXZlcmFnZVJlYWRUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VXcml0ZVRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcVHJhbnNmZXJzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFJlYWRzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFdyaXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xCeXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xXcml0ZUJ5dGVzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VEaXNrUXVldWVMZW5ndGgiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVG90YWwiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVHJhbnNtaXR0ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzUmVjZWl2ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXFBhY2tldHNUcmFuc21pdHRlZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcUGFja2V0c1JlY2VpdmVkIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFJ4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFR4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbENvbGxpc2lvbnMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427/extensions/LinuxDiagnostic\",\r\n \"name\": \"LinuxDiagnostic\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427\",\r\n \"name\": \"vmcrptestps4427\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "9959" @@ -2739,10 +2739,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130995838280309262" ], "x-ms-request-id": [ - "08004705-9ab4-4733-b19f-3c4f7675f19f" + "f4f9e91c-c922-4c8a-96c2-0d908cf3e471" ], "Cache-Control": [ "no-cache" @@ -2752,28 +2752,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14968" + "14952" ], "x-ms-correlation-request-id": [ - "88623240-2ab5-4a2e-811a-11a7c120fd12" + "a7e1c004-aadc-428b-8249-778b5b305499" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T101408Z:88623240-2ab5-4a2e-811a-11a7c120fd12" + "NORTHCENTRALUS:20160218T133842Z:a7e1c004-aadc-428b-8249-778b5b305499" ], "Date": [ - "Tue, 16 Feb 2016 10:14:07 GMT" + "Thu, 18 Feb 2016 13:38:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQxOTA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQ0Mjc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2d0406f6-0117-4ad1-bc08-be1a1b4fc418" + "e50c66b1-3637-4913-a3a4-b1eb4f9df300" ], "accept-language": [ "en-US" @@ -2782,7 +2782,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"8db75222-3391-47ad-9403-a276eeb31769\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4190.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4190.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4190.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic0crptestps4190\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic1crptestps4190\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_DS2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.2\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.2\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"stocrptestps4190.hour.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"stocrptestps4190.minute.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps41902\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps41902.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190/extensions/AzureEnhancedMonitorForLinux\",\r\n \"name\": \"AzureEnhancedMonitorForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRQcm9jZXNzb3JUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRJZGxlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50UHJpdmlsZWdlZFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudEludGVycnVwdFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudERQQ1RpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudFVzZXJUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnROaWNlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50SU9XYWl0VGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZE1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxVc2VkTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRBdmFpbGFibGVNZW1vcnkiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRVc2VkQnlDYWNoZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcVXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1BlclNlYyIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1JlYWRQZXJTZWMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcUGFnZXNXcml0dGVuUGVyU2VjIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VUcmFuc2ZlclRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQXZlcmFnZVJlYWRUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VXcml0ZVRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcVHJhbnNmZXJzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFJlYWRzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFdyaXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xCeXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xXcml0ZUJ5dGVzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VEaXNrUXVldWVMZW5ndGgiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVG90YWwiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVHJhbnNtaXR0ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzUmVjZWl2ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXFBhY2tldHNUcmFuc21pdHRlZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcUGFja2V0c1JlY2VpdmVkIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFJ4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFR4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbENvbGxpc2lvbnMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190/extensions/LinuxDiagnostic\",\r\n \"name\": \"LinuxDiagnostic\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190\",\r\n \"name\": \"vmcrptestps4190\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"c534340b-594e-48fe-bc39-b7915f78bee8\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4427.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4427.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4427.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic0crptestps4427\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic1crptestps4427\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_DS2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.2\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.2\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"stocrptestps4427.hour.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"stocrptestps4427.minute.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps44272\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps44272.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427/extensions/AzureEnhancedMonitorForLinux\",\r\n \"name\": \"AzureEnhancedMonitorForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRQcm9jZXNzb3JUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRJZGxlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50UHJpdmlsZWdlZFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudEludGVycnVwdFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudERQQ1RpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudFVzZXJUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnROaWNlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50SU9XYWl0VGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZE1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxVc2VkTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRBdmFpbGFibGVNZW1vcnkiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRVc2VkQnlDYWNoZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcVXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1BlclNlYyIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1JlYWRQZXJTZWMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcUGFnZXNXcml0dGVuUGVyU2VjIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VUcmFuc2ZlclRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQXZlcmFnZVJlYWRUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VXcml0ZVRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcVHJhbnNmZXJzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFJlYWRzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFdyaXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xCeXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xXcml0ZUJ5dGVzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VEaXNrUXVldWVMZW5ndGgiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVG90YWwiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVHJhbnNtaXR0ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzUmVjZWl2ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXFBhY2tldHNUcmFuc21pdHRlZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcUGFja2V0c1JlY2VpdmVkIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFJ4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFR4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbENvbGxpc2lvbnMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427/extensions/LinuxDiagnostic\",\r\n \"name\": \"LinuxDiagnostic\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427\",\r\n \"name\": \"vmcrptestps4427\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "9959" @@ -2800,10 +2800,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130995838280309262" ], "x-ms-request-id": [ - "6e928767-da30-4b53-bac7-53313c46dae6" + "2bae024b-0bb0-4dbb-b8f2-08d0145fac24" ], "Cache-Control": [ "no-cache" @@ -2813,28 +2813,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14966" + "14950" ], "x-ms-correlation-request-id": [ - "ef701a95-0c98-4130-a7cc-c5a95e005a1d" + "b861a7f3-e3e1-419a-bbf0-a9fc7ae874e3" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T101408Z:ef701a95-0c98-4130-a7cc-c5a95e005a1d" + "NORTHCENTRALUS:20160218T133843Z:b861a7f3-e3e1-419a-bbf0-a9fc7ae874e3" ], "Date": [ - "Tue, 16 Feb 2016 10:14:08 GMT" + "Thu, 18 Feb 2016 13:38:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQxOTA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQ0Mjc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f2f6b917-75d2-4ede-898b-aaab5e773d6b" + "8530fac0-995b-4834-af97-158ded5bcf61" ], "accept-language": [ "en-US" @@ -2843,7 +2843,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"8db75222-3391-47ad-9403-a276eeb31769\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4190.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4190.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4190.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic0crptestps4190\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic1crptestps4190\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_DS2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.2\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.2\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"stocrptestps4190.hour.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"stocrptestps4190.minute.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps41902\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps41902.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190/extensions/AzureEnhancedMonitorForLinux\",\r\n \"name\": \"AzureEnhancedMonitorForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRQcm9jZXNzb3JUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRJZGxlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50UHJpdmlsZWdlZFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudEludGVycnVwdFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudERQQ1RpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudFVzZXJUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnROaWNlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50SU9XYWl0VGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZE1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxVc2VkTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRBdmFpbGFibGVNZW1vcnkiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRVc2VkQnlDYWNoZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcVXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1BlclNlYyIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1JlYWRQZXJTZWMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcUGFnZXNXcml0dGVuUGVyU2VjIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VUcmFuc2ZlclRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQXZlcmFnZVJlYWRUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VXcml0ZVRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcVHJhbnNmZXJzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFJlYWRzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFdyaXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xCeXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xXcml0ZUJ5dGVzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VEaXNrUXVldWVMZW5ndGgiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVG90YWwiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVHJhbnNtaXR0ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzUmVjZWl2ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXFBhY2tldHNUcmFuc21pdHRlZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcUGFja2V0c1JlY2VpdmVkIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFJ4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFR4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbENvbGxpc2lvbnMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190/extensions/LinuxDiagnostic\",\r\n \"name\": \"LinuxDiagnostic\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190\",\r\n \"name\": \"vmcrptestps4190\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"c534340b-594e-48fe-bc39-b7915f78bee8\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4427.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4427.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4427.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic0crptestps4427\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic1crptestps4427\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_DS2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.2\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.2\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"stocrptestps4427.hour.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"stocrptestps4427.minute.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps44272\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps44272.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427/extensions/AzureEnhancedMonitorForLinux\",\r\n \"name\": \"AzureEnhancedMonitorForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRQcm9jZXNzb3JUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRJZGxlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50UHJpdmlsZWdlZFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudEludGVycnVwdFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudERQQ1RpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudFVzZXJUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnROaWNlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50SU9XYWl0VGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZE1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxVc2VkTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRBdmFpbGFibGVNZW1vcnkiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRVc2VkQnlDYWNoZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcVXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1BlclNlYyIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1JlYWRQZXJTZWMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcUGFnZXNXcml0dGVuUGVyU2VjIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VUcmFuc2ZlclRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQXZlcmFnZVJlYWRUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VXcml0ZVRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcVHJhbnNmZXJzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFJlYWRzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFdyaXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xCeXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xXcml0ZUJ5dGVzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VEaXNrUXVldWVMZW5ndGgiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVG90YWwiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVHJhbnNtaXR0ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzUmVjZWl2ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXFBhY2tldHNUcmFuc21pdHRlZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcUGFja2V0c1JlY2VpdmVkIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFJ4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFR4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbENvbGxpc2lvbnMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427/extensions/LinuxDiagnostic\",\r\n \"name\": \"LinuxDiagnostic\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427\",\r\n \"name\": \"vmcrptestps4427\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "9959" @@ -2861,10 +2861,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130995838280309262" ], "x-ms-request-id": [ - "c6a1ba4b-f06e-47dc-9124-513a45790b94" + "00568e30-c937-48f4-acb6-6f1e9c98f4fe" ], "Cache-Control": [ "no-cache" @@ -2874,28 +2874,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14964" + "14948" ], "x-ms-correlation-request-id": [ - "68548fb0-4aef-4be8-a17d-503e941a6427" + "61b246b1-d7b8-473e-994e-f9da877299ea" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T101415Z:68548fb0-4aef-4be8-a17d-503e941a6427" + "NORTHCENTRALUS:20160218T133900Z:61b246b1-d7b8-473e-994e-f9da877299ea" ], "Date": [ - "Tue, 16 Feb 2016 10:14:15 GMT" + "Thu, 18 Feb 2016 13:38:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQxOTA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQ0Mjc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bb7b57b8-4229-4772-bbc0-e30ae72b0566" + "e0ab1f9f-c9b8-4e69-a980-7bfbd96ceee9" ], "accept-language": [ "en-US" @@ -2904,7 +2904,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"8db75222-3391-47ad-9403-a276eeb31769\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4190.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4190.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4190.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic0crptestps4190\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic1crptestps4190\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRQcm9jZXNzb3JUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRJZGxlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50UHJpdmlsZWdlZFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudEludGVycnVwdFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudERQQ1RpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudFVzZXJUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnROaWNlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50SU9XYWl0VGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZE1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxVc2VkTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRBdmFpbGFibGVNZW1vcnkiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRVc2VkQnlDYWNoZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcVXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1BlclNlYyIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1JlYWRQZXJTZWMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcUGFnZXNXcml0dGVuUGVyU2VjIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VUcmFuc2ZlclRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQXZlcmFnZVJlYWRUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VXcml0ZVRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcVHJhbnNmZXJzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFJlYWRzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFdyaXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xCeXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xXcml0ZUJ5dGVzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VEaXNrUXVldWVMZW5ndGgiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVG90YWwiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVHJhbnNtaXR0ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzUmVjZWl2ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXFBhY2tldHNUcmFuc21pdHRlZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcUGFja2V0c1JlY2VpdmVkIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFJ4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFR4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbENvbGxpc2lvbnMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190/extensions/LinuxDiagnostic\",\r\n \"name\": \"LinuxDiagnostic\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190\",\r\n \"name\": \"vmcrptestps4190\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"c534340b-594e-48fe-bc39-b7915f78bee8\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4427.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4427.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4427.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic0crptestps4427\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic1crptestps4427\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRQcm9jZXNzb3JUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRJZGxlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50UHJpdmlsZWdlZFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudEludGVycnVwdFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudERQQ1RpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudFVzZXJUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnROaWNlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50SU9XYWl0VGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZE1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxVc2VkTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRBdmFpbGFibGVNZW1vcnkiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRVc2VkQnlDYWNoZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcVXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1BlclNlYyIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1JlYWRQZXJTZWMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcUGFnZXNXcml0dGVuUGVyU2VjIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VUcmFuc2ZlclRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQXZlcmFnZVJlYWRUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VXcml0ZVRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcVHJhbnNmZXJzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFJlYWRzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFdyaXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xCeXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xXcml0ZUJ5dGVzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VEaXNrUXVldWVMZW5ndGgiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVG90YWwiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVHJhbnNtaXR0ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzUmVjZWl2ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXFBhY2tldHNUcmFuc21pdHRlZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcUGFja2V0c1JlY2VpdmVkIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFJ4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFR4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbENvbGxpc2lvbnMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427/extensions/LinuxDiagnostic\",\r\n \"name\": \"LinuxDiagnostic\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427\",\r\n \"name\": \"vmcrptestps4427\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "7987" @@ -2922,10 +2922,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130995838280309262" ], "x-ms-request-id": [ - "eb4de531-112b-49c5-a3e1-d30b50a1a369" + "9628b235-14b3-41bb-aef9-3128cfa8b8ce" ], "Cache-Control": [ "no-cache" @@ -2935,28 +2935,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14961" + "14964" ], "x-ms-correlation-request-id": [ - "8a6bd97a-6cd9-4fe0-b405-e9e03ac428c6" + "6149834e-a0f9-4c8a-b94b-1506d95d7317" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T101547Z:8a6bd97a-6cd9-4fe0-b405-e9e03ac428c6" + "NORTHCENTRALUS:20160218T134032Z:6149834e-a0f9-4c8a-b94b-1506d95d7317" ], "Date": [ - "Tue, 16 Feb 2016 10:15:47 GMT" + "Thu, 18 Feb 2016 13:40:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190?$expand=instanceView&api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQxOTA/JGV4cGFuZD1pbnN0YW5jZVZpZXcmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427?$expand=instanceView&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQ0Mjc/JGV4cGFuZD1pbnN0YW5jZVZpZXcmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d33162ae-5b9b-4257-929b-2a913a68f907" + "a15b3bff-3ba1-44f4-8e6e-d93020a9ac05" ], "accept-language": [ "en-US" @@ -2965,10 +2965,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"8db75222-3391-47ad-9403-a276eeb31769\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4190.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4190.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4190.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic0crptestps4190\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic1crptestps4190\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"WALinuxAgent-2.0.14\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"GuestAgent is running and accepting new configurations.\",\r\n \"time\": \"2016-02-16T11:09:45+01:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"osDisk\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T11:06:56.558167+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T11:06:56.4956556+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T11:06:56.417526+01:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T11:09:50.6206599+01:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n }\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190\",\r\n \"name\": \"vmcrptestps4190\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"c534340b-594e-48fe-bc39-b7915f78bee8\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4427.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4427.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4427.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic0crptestps4427\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic1crptestps4427\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"WALinuxAgent-2.0.14\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"GuestAgent is running and accepting new configurations.\",\r\n \"time\": \"2016-02-18T14:34:40+01:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"osDisk\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-18T14:31:48.5238222+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-18T14:31:48.4612102+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-18T14:31:48.3987142+01:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-18T14:34:40.3184382+01:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n }\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427\",\r\n \"name\": \"vmcrptestps4427\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "4060" + "4062" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2983,10 +2983,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130995838280309262" ], "x-ms-request-id": [ - "c6ad93c8-2386-442f-a42a-263157a02951" + "1e9e2cdc-cc5c-464f-bf33-ec06c87ba9a7" ], "Cache-Control": [ "no-cache" @@ -2996,28 +2996,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14949" ], "x-ms-correlation-request-id": [ - "3111dbed-0468-42c8-b3e3-6884e6c88c9e" + "25347d00-df66-45e3-b02e-b273c7d0d66e" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T100959Z:3111dbed-0468-42c8-b3e3-6884e6c88c9e" + "NORTHCENTRALUS:20160218T133450Z:25347d00-df66-45e3-b02e-b273c7d0d66e" ], "Date": [ - "Tue, 16 Feb 2016 10:09:58 GMT" + "Thu, 18 Feb 2016 13:34:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190?$expand=instanceView&api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQxOTA/JGV4cGFuZD1pbnN0YW5jZVZpZXcmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427?$expand=instanceView&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQ0Mjc/JGV4cGFuZD1pbnN0YW5jZVZpZXcmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "648ac80c-edb8-47a5-893c-918bab588f31" + "b1572b79-63d6-4b54-8f4d-41eb1bed9be1" ], "accept-language": [ "en-US" @@ -3026,10 +3026,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"8db75222-3391-47ad-9403-a276eeb31769\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4190.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4190.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4190.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic0crptestps4190\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic1crptestps4190\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"WALinuxAgent-2.0.14\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"GuestAgent is running and accepting new configurations.\",\r\n \"time\": \"2016-02-16T11:10:10+01:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"osDisk\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T11:06:56.558167+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T11:06:56.4956556+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T11:06:56.417526+01:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T11:09:50.6206599+01:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n }\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190\",\r\n \"name\": \"vmcrptestps4190\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"c534340b-594e-48fe-bc39-b7915f78bee8\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4427.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4427.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4427.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic0crptestps4427\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic1crptestps4427\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"WALinuxAgent-2.0.14\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"GuestAgent is running and accepting new configurations.\",\r\n \"time\": \"2016-02-18T14:35:05+01:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"osDisk\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-18T14:31:48.5238222+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-18T14:31:48.4612102+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-18T14:31:48.3987142+01:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-18T14:34:40.3184382+01:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n }\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427\",\r\n \"name\": \"vmcrptestps4427\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "4060" + "4062" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3044,10 +3044,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130995838280309262" ], "x-ms-request-id": [ - "ad8979fd-a37a-436e-833b-e372987a0e70" + "88c9f275-286f-4d57-9b6e-19ca8aed490f" ], "Cache-Control": [ "no-cache" @@ -3057,28 +3057,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14964" ], "x-ms-correlation-request-id": [ - "11e3015d-e2ef-4da8-8e16-f6b6028e55a5" + "d20eecfc-ee77-4b77-8610-125866ee46f7" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T101028Z:11e3015d-e2ef-4da8-8e16-f6b6028e55a5" + "NORTHCENTRALUS:20160218T133520Z:d20eecfc-ee77-4b77-8610-125866ee46f7" ], "Date": [ - "Tue, 16 Feb 2016 10:10:28 GMT" + "Thu, 18 Feb 2016 13:35:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190?$expand=instanceView&api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQxOTA/JGV4cGFuZD1pbnN0YW5jZVZpZXcmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427?$expand=instanceView&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQ0Mjc/JGV4cGFuZD1pbnN0YW5jZVZpZXcmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "134951d8-4b31-4ed2-bb2b-97442af35dd4" + "0e94044e-9808-4e57-8d8d-e217342466f8" ], "accept-language": [ "en-US" @@ -3087,7 +3087,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"8db75222-3391-47ad-9403-a276eeb31769\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4190.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4190.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4190.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic0crptestps4190\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Network/networkInterfaces/nic1crptestps4190\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"WALinuxAgent-2.0.14\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"GuestAgent is running and accepting new configurations.\",\r\n \"time\": \"2016-02-16T11:13:45+01:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": [\r\n {\r\n \"type\": \"Microsoft.OSTCExtensions.AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0.0.5\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.OSTCExtensions.LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.2.0\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\"\r\n }\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"osDisk\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T11:12:36.7612867+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T11:12:36.7612867+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T11:12:36.7612867+01:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"extensions\": [\r\n {\r\n \"name\": \"AzureEnhancedMonitorForLinux\",\r\n \"type\": \"Microsoft.OSTCExtensions.AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0.0.5\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"deploymentId=ae601cf5-f3bc-483d-b9b1-7c955bc202ec roleInstance=_vmcrptestps4190 OK\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"LinuxDiagnostic\",\r\n \"type\": \"Microsoft.OSTCExtensions.LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.2.0\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"Enable succeeded\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T11:13:53.6987691+01:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_DS2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.2\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.2\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"stocrptestps4190.hour.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"stocrptestps4190.minute.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps41902\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps41902.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190/extensions/AzureEnhancedMonitorForLinux\",\r\n \"name\": \"AzureEnhancedMonitorForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRQcm9jZXNzb3JUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRJZGxlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50UHJpdmlsZWdlZFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudEludGVycnVwdFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudERQQ1RpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudFVzZXJUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnROaWNlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50SU9XYWl0VGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZE1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxVc2VkTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRBdmFpbGFibGVNZW1vcnkiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRVc2VkQnlDYWNoZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcVXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1BlclNlYyIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1JlYWRQZXJTZWMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcUGFnZXNXcml0dGVuUGVyU2VjIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VUcmFuc2ZlclRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQXZlcmFnZVJlYWRUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VXcml0ZVRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcVHJhbnNmZXJzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFJlYWRzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFdyaXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xCeXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xXcml0ZUJ5dGVzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VEaXNrUXVldWVMZW5ndGgiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVG90YWwiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVHJhbnNtaXR0ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzUmVjZWl2ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXFBhY2tldHNUcmFuc21pdHRlZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcUGFja2V0c1JlY2VpdmVkIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFJ4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFR4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbENvbGxpc2lvbnMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190/extensions/LinuxDiagnostic\",\r\n \"name\": \"LinuxDiagnostic\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190\",\r\n \"name\": \"vmcrptestps4190\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"c534340b-594e-48fe-bc39-b7915f78bee8\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4427.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4427.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4427.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic0crptestps4427\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic1crptestps4427\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"WALinuxAgent-2.0.14\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"GuestAgent is running and accepting new configurations.\",\r\n \"time\": \"2016-02-18T14:38:40+01:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": [\r\n {\r\n \"type\": \"Microsoft.OSTCExtensions.AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0.0.5\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.OSTCExtensions.LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.2.0\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\"\r\n }\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"osDisk\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-18T14:37:11.3165201+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-18T14:37:11.3165201+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-18T14:37:11.3165201+01:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"extensions\": [\r\n {\r\n \"name\": \"AzureEnhancedMonitorForLinux\",\r\n \"type\": \"Microsoft.OSTCExtensions.AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0.0.5\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"deploymentId=e8169e5b-6a9d-42d2-b937-e398a93a3b30 roleInstance=_vmcrptestps4427 OK\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"LinuxDiagnostic\",\r\n \"type\": \"Microsoft.OSTCExtensions.LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.2.0\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"Enable succeeded\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-18T14:38:14.6125743+01:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_DS2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.2\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.2\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"stocrptestps4427.hour.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"stocrptestps4427.minute.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps44272\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps44272.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427/extensions/AzureEnhancedMonitorForLinux\",\r\n \"name\": \"AzureEnhancedMonitorForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRQcm9jZXNzb3JUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRJZGxlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50UHJpdmlsZWdlZFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudEludGVycnVwdFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudERQQ1RpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudFVzZXJUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnROaWNlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50SU9XYWl0VGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZE1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxVc2VkTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRBdmFpbGFibGVNZW1vcnkiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRVc2VkQnlDYWNoZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcVXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1BlclNlYyIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1JlYWRQZXJTZWMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcUGFnZXNXcml0dGVuUGVyU2VjIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VUcmFuc2ZlclRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQXZlcmFnZVJlYWRUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VXcml0ZVRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcVHJhbnNmZXJzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFJlYWRzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFdyaXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xCeXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xXcml0ZUJ5dGVzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VEaXNrUXVldWVMZW5ndGgiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVG90YWwiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVHJhbnNtaXR0ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzUmVjZWl2ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXFBhY2tldHNUcmFuc21pdHRlZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcUGFja2V0c1JlY2VpdmVkIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFJ4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFR4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbENvbGxpc2lvbnMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427/extensions/LinuxDiagnostic\",\r\n \"name\": \"LinuxDiagnostic\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427\",\r\n \"name\": \"vmcrptestps4427\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "13399" @@ -3105,10 +3105,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130995838280309262" ], "x-ms-request-id": [ - "2dea594b-2132-4b32-afe7-803dc04aa69b" + "4b980b1e-fac7-47b0-8545-eb46c5e6c078" ], "Cache-Control": [ "no-cache" @@ -3118,37 +3118,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14965" + "14949" ], "x-ms-correlation-request-id": [ - "89433ab4-f192-4b3e-8f46-a1aafa4598cb" + "1da8bce7-27f0-4a05-9712-f5b3cf1f7eeb" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T101408Z:89433ab4-f192-4b3e-8f46-a1aafa4598cb" + "NORTHCENTRALUS:20160218T133843Z:1da8bce7-27f0-4a05-9712-f5b3cf1f7eeb" ], "Date": [ - "Tue, 16 Feb 2016 10:14:08 GMT" + "Thu, 18 Feb 2016 13:38:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "86ebe7f3-8c46-4b77-b88c-f4f314ea4ee0" + "e4df94ee-10ae-410d-b6df-e1bdb311e939" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/ase/providers/Microsoft.Storage/storageAccounts/ase7745\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"ase7745\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-08-22T12:09:54.6487474Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ase7745.blob.core.windows.net/\",\r\n \"file\": \"https://ase7745.file.core.windows.net/\",\r\n \"queue\": \"https://ase7745.queue.core.windows.net/\",\r\n \"table\": \"https://ase7745.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/benolwtlz6gcrtv2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"benolwtlz6gcrtv2\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-02T15:37:42.4160913Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://benolwtlz6gcrtv2.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/sapresourcegroup/providers/Microsoft.Storage/storageAccounts/de8da241d96f400ba8791029\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"de8da241d96f400ba8791029\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-09-18T13:22:47.5628749Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://de8da241d96f400ba8791029.blob.core.windows.net/\",\r\n \"file\": \"https://de8da241d96f400ba8791029.file.core.windows.net/\",\r\n \"queue\": \"https://de8da241d96f400ba8791029.queue.core.windows.net/\",\r\n \"table\": \"https://de8da241d96f400ba8791029.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/group-4/providers/Microsoft.Storage/storageAccounts/dsdevstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"dsdevstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-22T21:10:41.790448Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://dsdevstorage.blob.core.windows.net/\",\r\n \"file\": \"https://dsdevstorage.file.core.windows.net/\",\r\n \"queue\": \"https://dsdevstorage.queue.core.windows.net/\",\r\n \"table\": \"https://dsdevstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduscherp/providers/Microsoft.Storage/storageAccounts/erpio6r4un3ewfnm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"erpio6r4un3ewfnm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-08T12:41:16.6105852Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://erpio6r4un3ewfnm.blob.core.windows.net/\",\r\n \"file\": \"https://erpio6r4un3ewfnm.file.core.windows.net/\",\r\n \"queue\": \"https://erpio6r4un3ewfnm.queue.core.windows.net/\",\r\n \"table\": \"https://erpio6r4un3ewfnm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmpremstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmpremstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:21.7378841Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmpremstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmpremstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmpremstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmpremstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmstdstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmstdstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:22.2160008Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmstdstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmstdstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmstdstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmstdstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-test2/providers/Microsoft.Storage/storageAccounts/gortestacc2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gortestacc2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-08T21:18:17.9028388Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gortestacc2.blob.core.windows.net/\",\r\n \"file\": \"https://gortestacc2.file.core.windows.net/\",\r\n \"queue\": \"https://gortestacc2.queue.core.windows.net/\",\r\n \"table\": \"https://gortestacc2.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-04-16T13:50:52.0015725Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspacepremium\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspacepremium\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-10-23T10:22:10.7216809Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspacepremium.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvmtest/providers/Microsoft.Storage/storageAccounts/lvmtestspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmtestspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T16:56:41.5005505Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmtestspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmtestspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmtestspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmtestspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-eml2/providers/Microsoft.Storage/storageAccounts/rgeml2stacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"rgeml2stacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T08:00:29.8670815Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://rgeml2stacc.blob.core.windows.net/\",\r\n \"file\": \"https://rgeml2stacc.file.core.windows.net/\",\r\n \"queue\": \"https://rgeml2stacc.queue.core.windows.net/\",\r\n \"table\": \"https://rgeml2stacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/sapcalrg/providers/Microsoft.Storage/storageAccounts/sapcalrg8522\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"sapcalrg8522\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-28T06:54:16.0456896Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sapcalrg8522.blob.core.windows.net/\",\r\n \"file\": \"https://sapcalrg8522.file.core.windows.net/\",\r\n \"queue\": \"https://sapcalrg8522.queue.core.windows.net/\",\r\n \"table\": \"https://sapcalrg8522.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/saperpdemo859644\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"saperpdemo859644\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-01-26T11:02:43.8634331Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saperpdemo859644.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1prstacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1prstacc\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-12-10T17:35:29.0415914Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1prstacc.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1ststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1ststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-10T17:36:26.4810072Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1ststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saphana1ststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saphana1ststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saphana1ststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-linux-docu-tests/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saplinuxdocuststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-24T09:25:04.4473982Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-linux-docu-tests-we/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststaccwe\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saplinuxdocuststaccwe\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-25T13:11:50.5477032Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststaccwe.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststaccwe.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststaccwe.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststaccwe.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/sappseduscsape012612030\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"sappseduscsape012612030\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2016-01-26T11:03:56.0307387Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sappseduscsape012612030.blob.core.windows.net/\",\r\n \"file\": \"https://sappseduscsape012612030.file.core.windows.net/\",\r\n \"queue\": \"https://sappseduscsape012612030.queue.core.windows.net/\",\r\n \"table\": \"https://sappseduscsape012612030.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"westeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/saptesiarm/providers/Microsoft.Storage/storageAccounts/saptesiarm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saptesiarm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-08-27T12:13:00.4049179Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptesiarm.blob.core.windows.net/\",\r\n \"file\": \"https://saptesiarm.file.core.windows.net/\",\r\n \"queue\": \"https://saptesiarm.queue.core.windows.net/\",\r\n \"table\": \"https://saptesiarm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/saptestrajrg/providers/Microsoft.Storage/storageAccounts/saptestrajrg4518\",\r\n \"location\": \"westus\",\r\n \"name\": \"saptestrajrg4518\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-07-22T19:24:21.1065762Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptestrajrg4518.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Storage/storageAccounts/stocrptestps4190\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps4190\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-16T10:06:19.4280887Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps4190.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/temptestsap\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"temptestsap\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-10T14:03:58.3799849Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://temptestsap.blob.core.windows.net/\",\r\n \"file\": \"https://temptestsap.file.core.windows.net/\",\r\n \"queue\": \"https://temptestsap.queue.core.windows.net/\",\r\n \"table\": \"https://temptestsap.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/ase/providers/Microsoft.Storage/storageAccounts/ase7745\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"ase7745\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-08-22T12:09:54.6487474Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ase7745.blob.core.windows.net/\",\r\n \"file\": \"https://ase7745.file.core.windows.net/\",\r\n \"queue\": \"https://ase7745.queue.core.windows.net/\",\r\n \"table\": \"https://ase7745.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/benolwtlz6gcrtv2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"benolwtlz6gcrtv2\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-02T15:37:42.4160913Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://benolwtlz6gcrtv2.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/sapresourcegroup/providers/Microsoft.Storage/storageAccounts/de8da241d96f400ba8791029\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"de8da241d96f400ba8791029\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-09-18T13:22:47.5628749Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://de8da241d96f400ba8791029.blob.core.windows.net/\",\r\n \"file\": \"https://de8da241d96f400ba8791029.file.core.windows.net/\",\r\n \"queue\": \"https://de8da241d96f400ba8791029.queue.core.windows.net/\",\r\n \"table\": \"https://de8da241d96f400ba8791029.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/group-4/providers/Microsoft.Storage/storageAccounts/dsdevstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"dsdevstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-22T21:10:41.790448Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://dsdevstorage.blob.core.windows.net/\",\r\n \"file\": \"https://dsdevstorage.file.core.windows.net/\",\r\n \"queue\": \"https://dsdevstorage.queue.core.windows.net/\",\r\n \"table\": \"https://dsdevstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/seduscherp/providers/Microsoft.Storage/storageAccounts/erpio6r4un3ewfnm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"erpio6r4un3ewfnm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-08T12:41:16.6105852Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://erpio6r4un3ewfnm.blob.core.windows.net/\",\r\n \"file\": \"https://erpio6r4un3ewfnm.file.core.windows.net/\",\r\n \"queue\": \"https://erpio6r4un3ewfnm.queue.core.windows.net/\",\r\n \"table\": \"https://erpio6r4un3ewfnm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/fdfdfdf/providers/Microsoft.Storage/storageAccounts/fdfdfdf2537\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"fdfdfdf2537\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-17T10:07:55.1390685Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://fdfdfdf2537.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/fdfdfdf/providers/Microsoft.Storage/storageAccounts/fdfdfdf2925\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"fdfdfdf2925\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-17T10:07:55.715138Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://fdfdfdf2925.blob.core.windows.net/\",\r\n \"file\": \"https://fdfdfdf2925.file.core.windows.net/\",\r\n \"queue\": \"https://fdfdfdf2925.queue.core.windows.net/\",\r\n \"table\": \"https://fdfdfdf2925.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/glsresgroup1/providers/Microsoft.Storage/storageAccounts/glsstoraccount1\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"glsstoraccount1\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T12:37:47.5420067Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://glsstoraccount1.blob.core.windows.net/\",\r\n \"file\": \"https://glsstoraccount1.file.core.windows.net/\",\r\n \"queue\": \"https://glsstoraccount1.queue.core.windows.net/\",\r\n \"table\": \"https://glsstoraccount1.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmpremstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmpremstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:21.7378841Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmpremstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmpremstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmpremstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmpremstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmstdstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmstdstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:22.2160008Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmstdstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmstdstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmstdstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmstdstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-clust-arm/providers/Microsoft.Storage/storageAccounts/gorclustarmstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorclustarmstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-17T14:59:23.8666219Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorclustarmstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorclustarmstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorclustarmstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorclustarmstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {\r\n \"displayName\": \"StorageAccount\"\r\n },\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-test2/providers/Microsoft.Storage/storageAccounts/gortestacc2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gortestacc2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-08T21:18:17.9028388Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gortestacc2.blob.core.windows.net/\",\r\n \"file\": \"https://gortestacc2.file.core.windows.net/\",\r\n \"queue\": \"https://gortestacc2.queue.core.windows.net/\",\r\n \"table\": \"https://gortestacc2.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-04-16T13:50:52.0015725Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspacepremium\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspacepremium\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-10-23T10:22:10.7216809Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspacepremium.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/lvmtest/providers/Microsoft.Storage/storageAccounts/lvmtestspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmtestspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T16:56:41.5005505Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmtestspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmtestspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmtestspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmtestspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-eml2/providers/Microsoft.Storage/storageAccounts/rgeml2stacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"rgeml2stacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T08:00:29.8670815Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://rgeml2stacc.blob.core.windows.net/\",\r\n \"file\": \"https://rgeml2stacc.file.core.windows.net/\",\r\n \"queue\": \"https://rgeml2stacc.queue.core.windows.net/\",\r\n \"table\": \"https://rgeml2stacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/sapcalrg/providers/Microsoft.Storage/storageAccounts/sapcalrg8522\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"sapcalrg8522\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-28T06:54:16.0456896Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sapcalrg8522.blob.core.windows.net/\",\r\n \"file\": \"https://sapcalrg8522.file.core.windows.net/\",\r\n \"queue\": \"https://sapcalrg8522.queue.core.windows.net/\",\r\n \"table\": \"https://sapcalrg8522.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/saperpdemo859644\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"saperpdemo859644\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-01-26T11:02:43.8634331Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saperpdemo859644.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1prstacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1prstacc\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-12-10T17:35:29.0415914Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1prstacc.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1ststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1ststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-10T17:36:26.4810072Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1ststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saphana1ststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saphana1ststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saphana1ststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-sap-linux-docu-tests/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saplinuxdocuststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-24T09:25:04.4473982Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-sap-linux-docu-tests-we/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststaccwe\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saplinuxdocuststaccwe\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-25T13:11:50.5477032Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststaccwe.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststaccwe.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststaccwe.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststaccwe.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/sappseduscsape012612030\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"sappseduscsape012612030\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2016-01-26T11:03:56.0307387Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sappseduscsape012612030.blob.core.windows.net/\",\r\n \"file\": \"https://sappseduscsape012612030.file.core.windows.net/\",\r\n \"queue\": \"https://sappseduscsape012612030.queue.core.windows.net/\",\r\n \"table\": \"https://sappseduscsape012612030.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"westeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/saptesiarm/providers/Microsoft.Storage/storageAccounts/saptesiarm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saptesiarm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-08-27T12:13:00.4049179Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptesiarm.blob.core.windows.net/\",\r\n \"file\": \"https://saptesiarm.file.core.windows.net/\",\r\n \"queue\": \"https://saptesiarm.queue.core.windows.net/\",\r\n \"table\": \"https://saptesiarm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/saptestrajrg/providers/Microsoft.Storage/storageAccounts/saptestrajrg4518\",\r\n \"location\": \"westus\",\r\n \"name\": \"saptestrajrg4518\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-07-22T19:24:21.1065762Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptestrajrg4518.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Storage/storageAccounts/stocrptestps4427\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps4427\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-18T13:31:18.2831047Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps4427.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/temptestsap\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"temptestsap\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-10T14:03:58.3799849Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://temptestsap.blob.core.windows.net/\",\r\n \"file\": \"https://temptestsap.file.core.windows.net/\",\r\n \"queue\": \"https://temptestsap.queue.core.windows.net/\",\r\n \"table\": \"https://temptestsap.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-ts2-test/providers/Microsoft.Storage/storageAccounts/ts2cdlko5xtxpo3k\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"ts2cdlko5xtxpo3k\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-17T14:39:15.5207487Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ts2cdlko5xtxpo3k.blob.core.windows.net/\",\r\n \"file\": \"https://ts2cdlko5xtxpo3k.file.core.windows.net/\",\r\n \"queue\": \"https://ts2cdlko5xtxpo3k.queue.core.windows.net/\",\r\n \"table\": \"https://ts2cdlko5xtxpo3k.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "14858" + "18109" ], "Content-Type": [ "application/json" @@ -3160,7 +3160,7 @@ "no-cache" ], "x-ms-request-id": [ - "e7a74d56-61e2-46f0-b8bd-e553fe6b6557" + "19438d72-e885-4992-af3c-64fa0514c7d9" ], "Cache-Control": [ "no-cache" @@ -3170,40 +3170,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14954" + "14992" ], "x-ms-correlation-request-id": [ - "e7a74d56-61e2-46f0-b8bd-e553fe6b6557" + "19438d72-e885-4992-af3c-64fa0514c7d9" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T101001Z:e7a74d56-61e2-46f0-b8bd-e553fe6b6557" + "NORTHCENTRALUS:20160218T133451Z:19438d72-e885-4992-af3c-64fa0514c7d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Feb 2016 10:10:00 GMT" + "Thu, 18 Feb 2016 13:34:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1dce9e85-36c6-4aa6-8b7e-0482a7a791ca" + "dd04284a-d9e8-4a85-a6cc-eaaf24dadfc3" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/ase/providers/Microsoft.Storage/storageAccounts/ase7745\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"ase7745\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-08-22T12:09:54.6487474Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ase7745.blob.core.windows.net/\",\r\n \"file\": \"https://ase7745.file.core.windows.net/\",\r\n \"queue\": \"https://ase7745.queue.core.windows.net/\",\r\n \"table\": \"https://ase7745.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/benolwtlz6gcrtv2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"benolwtlz6gcrtv2\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-02T15:37:42.4160913Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://benolwtlz6gcrtv2.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/sapresourcegroup/providers/Microsoft.Storage/storageAccounts/de8da241d96f400ba8791029\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"de8da241d96f400ba8791029\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-09-18T13:22:47.5628749Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://de8da241d96f400ba8791029.blob.core.windows.net/\",\r\n \"file\": \"https://de8da241d96f400ba8791029.file.core.windows.net/\",\r\n \"queue\": \"https://de8da241d96f400ba8791029.queue.core.windows.net/\",\r\n \"table\": \"https://de8da241d96f400ba8791029.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/group-4/providers/Microsoft.Storage/storageAccounts/dsdevstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"dsdevstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-22T21:10:41.790448Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://dsdevstorage.blob.core.windows.net/\",\r\n \"file\": \"https://dsdevstorage.file.core.windows.net/\",\r\n \"queue\": \"https://dsdevstorage.queue.core.windows.net/\",\r\n \"table\": \"https://dsdevstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduscherp/providers/Microsoft.Storage/storageAccounts/erpio6r4un3ewfnm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"erpio6r4un3ewfnm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-08T12:41:16.6105852Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://erpio6r4un3ewfnm.blob.core.windows.net/\",\r\n \"file\": \"https://erpio6r4un3ewfnm.file.core.windows.net/\",\r\n \"queue\": \"https://erpio6r4un3ewfnm.queue.core.windows.net/\",\r\n \"table\": \"https://erpio6r4un3ewfnm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmpremstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmpremstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:21.7378841Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmpremstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmpremstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmpremstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmpremstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmstdstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmstdstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:22.2160008Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmstdstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmstdstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmstdstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmstdstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-test2/providers/Microsoft.Storage/storageAccounts/gortestacc2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gortestacc2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-08T21:18:17.9028388Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gortestacc2.blob.core.windows.net/\",\r\n \"file\": \"https://gortestacc2.file.core.windows.net/\",\r\n \"queue\": \"https://gortestacc2.queue.core.windows.net/\",\r\n \"table\": \"https://gortestacc2.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-04-16T13:50:52.0015725Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspacepremium\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspacepremium\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-10-23T10:22:10.7216809Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspacepremium.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvmtest/providers/Microsoft.Storage/storageAccounts/lvmtestspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmtestspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T16:56:41.5005505Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmtestspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmtestspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmtestspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmtestspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-eml2/providers/Microsoft.Storage/storageAccounts/rgeml2stacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"rgeml2stacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T08:00:29.8670815Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://rgeml2stacc.blob.core.windows.net/\",\r\n \"file\": \"https://rgeml2stacc.file.core.windows.net/\",\r\n \"queue\": \"https://rgeml2stacc.queue.core.windows.net/\",\r\n \"table\": \"https://rgeml2stacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/sapcalrg/providers/Microsoft.Storage/storageAccounts/sapcalrg8522\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"sapcalrg8522\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-28T06:54:16.0456896Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sapcalrg8522.blob.core.windows.net/\",\r\n \"file\": \"https://sapcalrg8522.file.core.windows.net/\",\r\n \"queue\": \"https://sapcalrg8522.queue.core.windows.net/\",\r\n \"table\": \"https://sapcalrg8522.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/saperpdemo859644\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"saperpdemo859644\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-01-26T11:02:43.8634331Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saperpdemo859644.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1prstacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1prstacc\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-12-10T17:35:29.0415914Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1prstacc.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1ststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1ststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-10T17:36:26.4810072Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1ststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saphana1ststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saphana1ststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saphana1ststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-linux-docu-tests/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saplinuxdocuststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-24T09:25:04.4473982Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-linux-docu-tests-we/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststaccwe\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saplinuxdocuststaccwe\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-25T13:11:50.5477032Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststaccwe.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststaccwe.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststaccwe.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststaccwe.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/sappseduscsape012612030\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"sappseduscsape012612030\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2016-01-26T11:03:56.0307387Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sappseduscsape012612030.blob.core.windows.net/\",\r\n \"file\": \"https://sappseduscsape012612030.file.core.windows.net/\",\r\n \"queue\": \"https://sappseduscsape012612030.queue.core.windows.net/\",\r\n \"table\": \"https://sappseduscsape012612030.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"westeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/saptesiarm/providers/Microsoft.Storage/storageAccounts/saptesiarm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saptesiarm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-08-27T12:13:00.4049179Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptesiarm.blob.core.windows.net/\",\r\n \"file\": \"https://saptesiarm.file.core.windows.net/\",\r\n \"queue\": \"https://saptesiarm.queue.core.windows.net/\",\r\n \"table\": \"https://saptesiarm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/saptestrajrg/providers/Microsoft.Storage/storageAccounts/saptestrajrg4518\",\r\n \"location\": \"westus\",\r\n \"name\": \"saptestrajrg4518\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-07-22T19:24:21.1065762Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptestrajrg4518.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Storage/storageAccounts/stocrptestps4190\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps4190\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-16T10:06:19.4280887Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps4190.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Storage/storageAccounts/stocrptestps41902\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps41902\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T10:10:01.8371302Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps41902.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps41902.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps41902.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps41902.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/temptestsap\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"temptestsap\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-10T14:03:58.3799849Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://temptestsap.blob.core.windows.net/\",\r\n \"file\": \"https://temptestsap.file.core.windows.net/\",\r\n \"queue\": \"https://temptestsap.queue.core.windows.net/\",\r\n \"table\": \"https://temptestsap.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/ase/providers/Microsoft.Storage/storageAccounts/ase7745\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"ase7745\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-08-22T12:09:54.6487474Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ase7745.blob.core.windows.net/\",\r\n \"file\": \"https://ase7745.file.core.windows.net/\",\r\n \"queue\": \"https://ase7745.queue.core.windows.net/\",\r\n \"table\": \"https://ase7745.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/benolwtlz6gcrtv2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"benolwtlz6gcrtv2\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-02T15:37:42.4160913Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://benolwtlz6gcrtv2.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/sapresourcegroup/providers/Microsoft.Storage/storageAccounts/de8da241d96f400ba8791029\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"de8da241d96f400ba8791029\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-09-18T13:22:47.5628749Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://de8da241d96f400ba8791029.blob.core.windows.net/\",\r\n \"file\": \"https://de8da241d96f400ba8791029.file.core.windows.net/\",\r\n \"queue\": \"https://de8da241d96f400ba8791029.queue.core.windows.net/\",\r\n \"table\": \"https://de8da241d96f400ba8791029.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/group-4/providers/Microsoft.Storage/storageAccounts/dsdevstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"dsdevstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-22T21:10:41.790448Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://dsdevstorage.blob.core.windows.net/\",\r\n \"file\": \"https://dsdevstorage.file.core.windows.net/\",\r\n \"queue\": \"https://dsdevstorage.queue.core.windows.net/\",\r\n \"table\": \"https://dsdevstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/seduscherp/providers/Microsoft.Storage/storageAccounts/erpio6r4un3ewfnm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"erpio6r4un3ewfnm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-08T12:41:16.6105852Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://erpio6r4un3ewfnm.blob.core.windows.net/\",\r\n \"file\": \"https://erpio6r4un3ewfnm.file.core.windows.net/\",\r\n \"queue\": \"https://erpio6r4un3ewfnm.queue.core.windows.net/\",\r\n \"table\": \"https://erpio6r4un3ewfnm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/fdfdfdf/providers/Microsoft.Storage/storageAccounts/fdfdfdf2537\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"fdfdfdf2537\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-17T10:07:55.1390685Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://fdfdfdf2537.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/fdfdfdf/providers/Microsoft.Storage/storageAccounts/fdfdfdf2925\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"fdfdfdf2925\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-17T10:07:55.715138Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://fdfdfdf2925.blob.core.windows.net/\",\r\n \"file\": \"https://fdfdfdf2925.file.core.windows.net/\",\r\n \"queue\": \"https://fdfdfdf2925.queue.core.windows.net/\",\r\n \"table\": \"https://fdfdfdf2925.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/glsresgroup1/providers/Microsoft.Storage/storageAccounts/glsstoraccount1\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"glsstoraccount1\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T12:37:47.5420067Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://glsstoraccount1.blob.core.windows.net/\",\r\n \"file\": \"https://glsstoraccount1.file.core.windows.net/\",\r\n \"queue\": \"https://glsstoraccount1.queue.core.windows.net/\",\r\n \"table\": \"https://glsstoraccount1.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmpremstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmpremstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:21.7378841Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmpremstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmpremstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmpremstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmpremstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmstdstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmstdstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:22.2160008Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmstdstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmstdstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmstdstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmstdstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-clust-arm/providers/Microsoft.Storage/storageAccounts/gorclustarmstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorclustarmstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-17T14:59:23.8666219Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorclustarmstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorclustarmstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorclustarmstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorclustarmstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {\r\n \"displayName\": \"StorageAccount\"\r\n },\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-test2/providers/Microsoft.Storage/storageAccounts/gortestacc2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gortestacc2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-08T21:18:17.9028388Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gortestacc2.blob.core.windows.net/\",\r\n \"file\": \"https://gortestacc2.file.core.windows.net/\",\r\n \"queue\": \"https://gortestacc2.queue.core.windows.net/\",\r\n \"table\": \"https://gortestacc2.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-04-16T13:50:52.0015725Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspacepremium\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspacepremium\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-10-23T10:22:10.7216809Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspacepremium.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/lvmtest/providers/Microsoft.Storage/storageAccounts/lvmtestspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmtestspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T16:56:41.5005505Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmtestspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmtestspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmtestspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmtestspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-eml2/providers/Microsoft.Storage/storageAccounts/rgeml2stacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"rgeml2stacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T08:00:29.8670815Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://rgeml2stacc.blob.core.windows.net/\",\r\n \"file\": \"https://rgeml2stacc.file.core.windows.net/\",\r\n \"queue\": \"https://rgeml2stacc.queue.core.windows.net/\",\r\n \"table\": \"https://rgeml2stacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/sapcalrg/providers/Microsoft.Storage/storageAccounts/sapcalrg8522\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"sapcalrg8522\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-28T06:54:16.0456896Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sapcalrg8522.blob.core.windows.net/\",\r\n \"file\": \"https://sapcalrg8522.file.core.windows.net/\",\r\n \"queue\": \"https://sapcalrg8522.queue.core.windows.net/\",\r\n \"table\": \"https://sapcalrg8522.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/saperpdemo859644\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"saperpdemo859644\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-01-26T11:02:43.8634331Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saperpdemo859644.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1prstacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1prstacc\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-12-10T17:35:29.0415914Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1prstacc.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1ststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1ststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-10T17:36:26.4810072Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1ststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saphana1ststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saphana1ststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saphana1ststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-sap-linux-docu-tests/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saplinuxdocuststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-24T09:25:04.4473982Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-sap-linux-docu-tests-we/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststaccwe\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saplinuxdocuststaccwe\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-25T13:11:50.5477032Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststaccwe.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststaccwe.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststaccwe.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststaccwe.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/sappseduscsape012612030\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"sappseduscsape012612030\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2016-01-26T11:03:56.0307387Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sappseduscsape012612030.blob.core.windows.net/\",\r\n \"file\": \"https://sappseduscsape012612030.file.core.windows.net/\",\r\n \"queue\": \"https://sappseduscsape012612030.queue.core.windows.net/\",\r\n \"table\": \"https://sappseduscsape012612030.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"westeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/saptesiarm/providers/Microsoft.Storage/storageAccounts/saptesiarm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saptesiarm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-08-27T12:13:00.4049179Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptesiarm.blob.core.windows.net/\",\r\n \"file\": \"https://saptesiarm.file.core.windows.net/\",\r\n \"queue\": \"https://saptesiarm.queue.core.windows.net/\",\r\n \"table\": \"https://saptesiarm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/saptestrajrg/providers/Microsoft.Storage/storageAccounts/saptestrajrg4518\",\r\n \"location\": \"westus\",\r\n \"name\": \"saptestrajrg4518\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-07-22T19:24:21.1065762Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptestrajrg4518.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Storage/storageAccounts/stocrptestps4427\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps4427\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-18T13:31:18.2831047Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps4427.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Storage/storageAccounts/stocrptestps44272\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps44272\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-18T13:34:52.8607821Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps44272.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps44272.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps44272.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps44272.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/temptestsap\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"temptestsap\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-10T14:03:58.3799849Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://temptestsap.blob.core.windows.net/\",\r\n \"file\": \"https://temptestsap.file.core.windows.net/\",\r\n \"queue\": \"https://temptestsap.queue.core.windows.net/\",\r\n \"table\": \"https://temptestsap.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-ts2-test/providers/Microsoft.Storage/storageAccounts/ts2cdlko5xtxpo3k\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"ts2cdlko5xtxpo3k\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-17T14:39:15.5207487Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ts2cdlko5xtxpo3k.blob.core.windows.net/\",\r\n \"file\": \"https://ts2cdlko5xtxpo3k.file.core.windows.net/\",\r\n \"queue\": \"https://ts2cdlko5xtxpo3k.queue.core.windows.net/\",\r\n \"table\": \"https://ts2cdlko5xtxpo3k.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "15546" + "18797" ], "Content-Type": [ "application/json" @@ -3215,7 +3215,7 @@ "no-cache" ], "x-ms-request-id": [ - "43441199-5c03-42bd-90a2-dab3e8051b6d" + "b9e8448e-2271-42bc-bfb2-87e77cb725a5" ], "Cache-Control": [ "no-cache" @@ -3225,40 +3225,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14950" + "14989" ], "x-ms-correlation-request-id": [ - "43441199-5c03-42bd-90a2-dab3e8051b6d" + "b9e8448e-2271-42bc-bfb2-87e77cb725a5" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T101029Z:43441199-5c03-42bd-90a2-dab3e8051b6d" + "NORTHCENTRALUS:20160218T133520Z:b9e8448e-2271-42bc-bfb2-87e77cb725a5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Feb 2016 10:10:28 GMT" + "Thu, 18 Feb 2016 13:35:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e987fe23-f1c9-4e75-8fb7-7e24026d3196" + "204577bb-31f0-4ebe-97ca-3933b25aabb5" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/ase/providers/Microsoft.Storage/storageAccounts/ase7745\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"ase7745\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-08-22T12:09:54.6487474Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ase7745.blob.core.windows.net/\",\r\n \"file\": \"https://ase7745.file.core.windows.net/\",\r\n \"queue\": \"https://ase7745.queue.core.windows.net/\",\r\n \"table\": \"https://ase7745.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/benolwtlz6gcrtv2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"benolwtlz6gcrtv2\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-02T15:37:42.4160913Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://benolwtlz6gcrtv2.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/sapresourcegroup/providers/Microsoft.Storage/storageAccounts/de8da241d96f400ba8791029\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"de8da241d96f400ba8791029\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-09-18T13:22:47.5628749Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://de8da241d96f400ba8791029.blob.core.windows.net/\",\r\n \"file\": \"https://de8da241d96f400ba8791029.file.core.windows.net/\",\r\n \"queue\": \"https://de8da241d96f400ba8791029.queue.core.windows.net/\",\r\n \"table\": \"https://de8da241d96f400ba8791029.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/group-4/providers/Microsoft.Storage/storageAccounts/dsdevstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"dsdevstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-22T21:10:41.790448Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://dsdevstorage.blob.core.windows.net/\",\r\n \"file\": \"https://dsdevstorage.file.core.windows.net/\",\r\n \"queue\": \"https://dsdevstorage.queue.core.windows.net/\",\r\n \"table\": \"https://dsdevstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduscherp/providers/Microsoft.Storage/storageAccounts/erpio6r4un3ewfnm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"erpio6r4un3ewfnm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-08T12:41:16.6105852Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://erpio6r4un3ewfnm.blob.core.windows.net/\",\r\n \"file\": \"https://erpio6r4un3ewfnm.file.core.windows.net/\",\r\n \"queue\": \"https://erpio6r4un3ewfnm.queue.core.windows.net/\",\r\n \"table\": \"https://erpio6r4un3ewfnm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmpremstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmpremstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:21.7378841Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmpremstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmpremstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmpremstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmpremstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmstdstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmstdstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:22.2160008Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmstdstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmstdstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmstdstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmstdstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-test2/providers/Microsoft.Storage/storageAccounts/gortestacc2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gortestacc2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-08T21:18:17.9028388Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gortestacc2.blob.core.windows.net/\",\r\n \"file\": \"https://gortestacc2.file.core.windows.net/\",\r\n \"queue\": \"https://gortestacc2.queue.core.windows.net/\",\r\n \"table\": \"https://gortestacc2.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-04-16T13:50:52.0015725Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspacepremium\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspacepremium\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-10-23T10:22:10.7216809Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspacepremium.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvmtest/providers/Microsoft.Storage/storageAccounts/lvmtestspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmtestspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T16:56:41.5005505Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmtestspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmtestspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmtestspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmtestspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-eml2/providers/Microsoft.Storage/storageAccounts/rgeml2stacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"rgeml2stacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T08:00:29.8670815Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://rgeml2stacc.blob.core.windows.net/\",\r\n \"file\": \"https://rgeml2stacc.file.core.windows.net/\",\r\n \"queue\": \"https://rgeml2stacc.queue.core.windows.net/\",\r\n \"table\": \"https://rgeml2stacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/sapcalrg/providers/Microsoft.Storage/storageAccounts/sapcalrg8522\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"sapcalrg8522\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-28T06:54:16.0456896Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sapcalrg8522.blob.core.windows.net/\",\r\n \"file\": \"https://sapcalrg8522.file.core.windows.net/\",\r\n \"queue\": \"https://sapcalrg8522.queue.core.windows.net/\",\r\n \"table\": \"https://sapcalrg8522.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/saperpdemo859644\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"saperpdemo859644\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-01-26T11:02:43.8634331Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saperpdemo859644.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1prstacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1prstacc\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-12-10T17:35:29.0415914Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1prstacc.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1ststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1ststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-10T17:36:26.4810072Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1ststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saphana1ststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saphana1ststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saphana1ststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-linux-docu-tests/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saplinuxdocuststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-24T09:25:04.4473982Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-linux-docu-tests-we/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststaccwe\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saplinuxdocuststaccwe\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-25T13:11:50.5477032Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststaccwe.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststaccwe.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststaccwe.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststaccwe.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/sappseduscsape012612030\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"sappseduscsape012612030\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2016-01-26T11:03:56.0307387Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sappseduscsape012612030.blob.core.windows.net/\",\r\n \"file\": \"https://sappseduscsape012612030.file.core.windows.net/\",\r\n \"queue\": \"https://sappseduscsape012612030.queue.core.windows.net/\",\r\n \"table\": \"https://sappseduscsape012612030.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"westeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/saptesiarm/providers/Microsoft.Storage/storageAccounts/saptesiarm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saptesiarm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-08-27T12:13:00.4049179Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptesiarm.blob.core.windows.net/\",\r\n \"file\": \"https://saptesiarm.file.core.windows.net/\",\r\n \"queue\": \"https://saptesiarm.queue.core.windows.net/\",\r\n \"table\": \"https://saptesiarm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/saptestrajrg/providers/Microsoft.Storage/storageAccounts/saptestrajrg4518\",\r\n \"location\": \"westus\",\r\n \"name\": \"saptestrajrg4518\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-07-22T19:24:21.1065762Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptestrajrg4518.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Storage/storageAccounts/stocrptestps4190\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps4190\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-16T10:06:19.4280887Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps4190.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Storage/storageAccounts/stocrptestps41902\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps41902\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T10:10:01.8371302Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps41902.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps41902.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps41902.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps41902.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/temptestsap\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"temptestsap\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-10T14:03:58.3799849Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://temptestsap.blob.core.windows.net/\",\r\n \"file\": \"https://temptestsap.file.core.windows.net/\",\r\n \"queue\": \"https://temptestsap.queue.core.windows.net/\",\r\n \"table\": \"https://temptestsap.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/ase/providers/Microsoft.Storage/storageAccounts/ase7745\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"ase7745\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-08-22T12:09:54.6487474Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ase7745.blob.core.windows.net/\",\r\n \"file\": \"https://ase7745.file.core.windows.net/\",\r\n \"queue\": \"https://ase7745.queue.core.windows.net/\",\r\n \"table\": \"https://ase7745.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/benolwtlz6gcrtv2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"benolwtlz6gcrtv2\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-02T15:37:42.4160913Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://benolwtlz6gcrtv2.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/sapresourcegroup/providers/Microsoft.Storage/storageAccounts/de8da241d96f400ba8791029\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"de8da241d96f400ba8791029\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-09-18T13:22:47.5628749Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://de8da241d96f400ba8791029.blob.core.windows.net/\",\r\n \"file\": \"https://de8da241d96f400ba8791029.file.core.windows.net/\",\r\n \"queue\": \"https://de8da241d96f400ba8791029.queue.core.windows.net/\",\r\n \"table\": \"https://de8da241d96f400ba8791029.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/group-4/providers/Microsoft.Storage/storageAccounts/dsdevstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"dsdevstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-22T21:10:41.790448Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://dsdevstorage.blob.core.windows.net/\",\r\n \"file\": \"https://dsdevstorage.file.core.windows.net/\",\r\n \"queue\": \"https://dsdevstorage.queue.core.windows.net/\",\r\n \"table\": \"https://dsdevstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/seduscherp/providers/Microsoft.Storage/storageAccounts/erpio6r4un3ewfnm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"erpio6r4un3ewfnm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-08T12:41:16.6105852Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://erpio6r4un3ewfnm.blob.core.windows.net/\",\r\n \"file\": \"https://erpio6r4un3ewfnm.file.core.windows.net/\",\r\n \"queue\": \"https://erpio6r4un3ewfnm.queue.core.windows.net/\",\r\n \"table\": \"https://erpio6r4un3ewfnm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/fdfdfdf/providers/Microsoft.Storage/storageAccounts/fdfdfdf2537\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"fdfdfdf2537\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-17T10:07:55.1390685Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://fdfdfdf2537.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/fdfdfdf/providers/Microsoft.Storage/storageAccounts/fdfdfdf2925\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"fdfdfdf2925\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-17T10:07:55.715138Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://fdfdfdf2925.blob.core.windows.net/\",\r\n \"file\": \"https://fdfdfdf2925.file.core.windows.net/\",\r\n \"queue\": \"https://fdfdfdf2925.queue.core.windows.net/\",\r\n \"table\": \"https://fdfdfdf2925.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/glsresgroup1/providers/Microsoft.Storage/storageAccounts/glsstoraccount1\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"glsstoraccount1\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T12:37:47.5420067Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://glsstoraccount1.blob.core.windows.net/\",\r\n \"file\": \"https://glsstoraccount1.file.core.windows.net/\",\r\n \"queue\": \"https://glsstoraccount1.queue.core.windows.net/\",\r\n \"table\": \"https://glsstoraccount1.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmpremstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmpremstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:21.7378841Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmpremstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmpremstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmpremstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmpremstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmstdstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmstdstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:22.2160008Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmstdstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmstdstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmstdstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmstdstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-clust-arm/providers/Microsoft.Storage/storageAccounts/gorclustarmstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorclustarmstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-17T14:59:23.8666219Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorclustarmstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorclustarmstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorclustarmstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorclustarmstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {\r\n \"displayName\": \"StorageAccount\"\r\n },\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-test2/providers/Microsoft.Storage/storageAccounts/gortestacc2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gortestacc2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-08T21:18:17.9028388Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gortestacc2.blob.core.windows.net/\",\r\n \"file\": \"https://gortestacc2.file.core.windows.net/\",\r\n \"queue\": \"https://gortestacc2.queue.core.windows.net/\",\r\n \"table\": \"https://gortestacc2.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-04-16T13:50:52.0015725Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspacepremium\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspacepremium\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-10-23T10:22:10.7216809Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspacepremium.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/lvmtest/providers/Microsoft.Storage/storageAccounts/lvmtestspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmtestspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T16:56:41.5005505Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmtestspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmtestspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmtestspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmtestspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-eml2/providers/Microsoft.Storage/storageAccounts/rgeml2stacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"rgeml2stacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T08:00:29.8670815Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://rgeml2stacc.blob.core.windows.net/\",\r\n \"file\": \"https://rgeml2stacc.file.core.windows.net/\",\r\n \"queue\": \"https://rgeml2stacc.queue.core.windows.net/\",\r\n \"table\": \"https://rgeml2stacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/sapcalrg/providers/Microsoft.Storage/storageAccounts/sapcalrg8522\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"sapcalrg8522\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-28T06:54:16.0456896Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sapcalrg8522.blob.core.windows.net/\",\r\n \"file\": \"https://sapcalrg8522.file.core.windows.net/\",\r\n \"queue\": \"https://sapcalrg8522.queue.core.windows.net/\",\r\n \"table\": \"https://sapcalrg8522.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/saperpdemo859644\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"saperpdemo859644\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-01-26T11:02:43.8634331Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saperpdemo859644.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1prstacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1prstacc\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-12-10T17:35:29.0415914Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1prstacc.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1ststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1ststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-10T17:36:26.4810072Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1ststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saphana1ststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saphana1ststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saphana1ststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-sap-linux-docu-tests/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saplinuxdocuststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-24T09:25:04.4473982Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-sap-linux-docu-tests-we/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststaccwe\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saplinuxdocuststaccwe\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-25T13:11:50.5477032Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststaccwe.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststaccwe.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststaccwe.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststaccwe.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/sappseduscsape012612030\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"sappseduscsape012612030\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2016-01-26T11:03:56.0307387Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sappseduscsape012612030.blob.core.windows.net/\",\r\n \"file\": \"https://sappseduscsape012612030.file.core.windows.net/\",\r\n \"queue\": \"https://sappseduscsape012612030.queue.core.windows.net/\",\r\n \"table\": \"https://sappseduscsape012612030.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"westeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/saptesiarm/providers/Microsoft.Storage/storageAccounts/saptesiarm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saptesiarm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-08-27T12:13:00.4049179Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptesiarm.blob.core.windows.net/\",\r\n \"file\": \"https://saptesiarm.file.core.windows.net/\",\r\n \"queue\": \"https://saptesiarm.queue.core.windows.net/\",\r\n \"table\": \"https://saptesiarm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/saptestrajrg/providers/Microsoft.Storage/storageAccounts/saptestrajrg4518\",\r\n \"location\": \"westus\",\r\n \"name\": \"saptestrajrg4518\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-07-22T19:24:21.1065762Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptestrajrg4518.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Storage/storageAccounts/stocrptestps4427\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps4427\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-18T13:31:18.2831047Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps4427.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Storage/storageAccounts/stocrptestps44272\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps44272\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-18T13:34:52.8607821Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps44272.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps44272.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps44272.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps44272.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/temptestsap\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"temptestsap\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-10T14:03:58.3799849Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://temptestsap.blob.core.windows.net/\",\r\n \"file\": \"https://temptestsap.file.core.windows.net/\",\r\n \"queue\": \"https://temptestsap.queue.core.windows.net/\",\r\n \"table\": \"https://temptestsap.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-ts2-test/providers/Microsoft.Storage/storageAccounts/ts2cdlko5xtxpo3k\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"ts2cdlko5xtxpo3k\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-17T14:39:15.5207487Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ts2cdlko5xtxpo3k.blob.core.windows.net/\",\r\n \"file\": \"https://ts2cdlko5xtxpo3k.file.core.windows.net/\",\r\n \"queue\": \"https://ts2cdlko5xtxpo3k.queue.core.windows.net/\",\r\n \"table\": \"https://ts2cdlko5xtxpo3k.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "15546" + "18797" ], "Content-Type": [ "application/json" @@ -3270,7 +3270,7 @@ "no-cache" ], "x-ms-request-id": [ - "fcc3d5dd-b9cc-4c2f-b435-1fb8cae937d7" + "30204c3a-4f82-4e20-8558-7f9adf5794c3" ], "Cache-Control": [ "no-cache" @@ -3280,40 +3280,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14949" + "14988" ], "x-ms-correlation-request-id": [ - "fcc3d5dd-b9cc-4c2f-b435-1fb8cae937d7" + "30204c3a-4f82-4e20-8558-7f9adf5794c3" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T101030Z:fcc3d5dd-b9cc-4c2f-b435-1fb8cae937d7" + "NORTHCENTRALUS:20160218T133536Z:30204c3a-4f82-4e20-8558-7f9adf5794c3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Feb 2016 10:10:29 GMT" + "Thu, 18 Feb 2016 13:35:36 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ccc40cd5-b300-4c1d-9c4e-b6ecdfc12adb" + "2e1738d2-4b58-4727-bc45-65898fd7d384" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/ase/providers/Microsoft.Storage/storageAccounts/ase7745\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"ase7745\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-08-22T12:09:54.6487474Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ase7745.blob.core.windows.net/\",\r\n \"file\": \"https://ase7745.file.core.windows.net/\",\r\n \"queue\": \"https://ase7745.queue.core.windows.net/\",\r\n \"table\": \"https://ase7745.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/benolwtlz6gcrtv2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"benolwtlz6gcrtv2\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-02T15:37:42.4160913Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://benolwtlz6gcrtv2.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/sapresourcegroup/providers/Microsoft.Storage/storageAccounts/de8da241d96f400ba8791029\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"de8da241d96f400ba8791029\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-09-18T13:22:47.5628749Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://de8da241d96f400ba8791029.blob.core.windows.net/\",\r\n \"file\": \"https://de8da241d96f400ba8791029.file.core.windows.net/\",\r\n \"queue\": \"https://de8da241d96f400ba8791029.queue.core.windows.net/\",\r\n \"table\": \"https://de8da241d96f400ba8791029.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/group-4/providers/Microsoft.Storage/storageAccounts/dsdevstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"dsdevstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-22T21:10:41.790448Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://dsdevstorage.blob.core.windows.net/\",\r\n \"file\": \"https://dsdevstorage.file.core.windows.net/\",\r\n \"queue\": \"https://dsdevstorage.queue.core.windows.net/\",\r\n \"table\": \"https://dsdevstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduscherp/providers/Microsoft.Storage/storageAccounts/erpio6r4un3ewfnm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"erpio6r4un3ewfnm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-08T12:41:16.6105852Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://erpio6r4un3ewfnm.blob.core.windows.net/\",\r\n \"file\": \"https://erpio6r4un3ewfnm.file.core.windows.net/\",\r\n \"queue\": \"https://erpio6r4un3ewfnm.queue.core.windows.net/\",\r\n \"table\": \"https://erpio6r4un3ewfnm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmpremstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmpremstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:21.7378841Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmpremstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmpremstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmpremstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmpremstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmstdstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmstdstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:22.2160008Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmstdstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmstdstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmstdstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmstdstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-test2/providers/Microsoft.Storage/storageAccounts/gortestacc2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gortestacc2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-08T21:18:17.9028388Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gortestacc2.blob.core.windows.net/\",\r\n \"file\": \"https://gortestacc2.file.core.windows.net/\",\r\n \"queue\": \"https://gortestacc2.queue.core.windows.net/\",\r\n \"table\": \"https://gortestacc2.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-04-16T13:50:52.0015725Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspacepremium\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspacepremium\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-10-23T10:22:10.7216809Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspacepremium.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvmtest/providers/Microsoft.Storage/storageAccounts/lvmtestspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmtestspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T16:56:41.5005505Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmtestspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmtestspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmtestspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmtestspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-eml2/providers/Microsoft.Storage/storageAccounts/rgeml2stacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"rgeml2stacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T08:00:29.8670815Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://rgeml2stacc.blob.core.windows.net/\",\r\n \"file\": \"https://rgeml2stacc.file.core.windows.net/\",\r\n \"queue\": \"https://rgeml2stacc.queue.core.windows.net/\",\r\n \"table\": \"https://rgeml2stacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/sapcalrg/providers/Microsoft.Storage/storageAccounts/sapcalrg8522\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"sapcalrg8522\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-28T06:54:16.0456896Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sapcalrg8522.blob.core.windows.net/\",\r\n \"file\": \"https://sapcalrg8522.file.core.windows.net/\",\r\n \"queue\": \"https://sapcalrg8522.queue.core.windows.net/\",\r\n \"table\": \"https://sapcalrg8522.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/saperpdemo859644\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"saperpdemo859644\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-01-26T11:02:43.8634331Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saperpdemo859644.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1prstacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1prstacc\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-12-10T17:35:29.0415914Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1prstacc.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1ststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1ststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-10T17:36:26.4810072Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1ststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saphana1ststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saphana1ststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saphana1ststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-linux-docu-tests/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saplinuxdocuststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-24T09:25:04.4473982Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-linux-docu-tests-we/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststaccwe\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saplinuxdocuststaccwe\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-25T13:11:50.5477032Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststaccwe.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststaccwe.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststaccwe.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststaccwe.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/sappseduscsape012612030\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"sappseduscsape012612030\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2016-01-26T11:03:56.0307387Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sappseduscsape012612030.blob.core.windows.net/\",\r\n \"file\": \"https://sappseduscsape012612030.file.core.windows.net/\",\r\n \"queue\": \"https://sappseduscsape012612030.queue.core.windows.net/\",\r\n \"table\": \"https://sappseduscsape012612030.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"westeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/saptesiarm/providers/Microsoft.Storage/storageAccounts/saptesiarm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saptesiarm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-08-27T12:13:00.4049179Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptesiarm.blob.core.windows.net/\",\r\n \"file\": \"https://saptesiarm.file.core.windows.net/\",\r\n \"queue\": \"https://saptesiarm.queue.core.windows.net/\",\r\n \"table\": \"https://saptesiarm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/saptestrajrg/providers/Microsoft.Storage/storageAccounts/saptestrajrg4518\",\r\n \"location\": \"westus\",\r\n \"name\": \"saptestrajrg4518\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-07-22T19:24:21.1065762Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptestrajrg4518.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Storage/storageAccounts/stocrptestps4190\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps4190\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-16T10:06:19.4280887Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps4190.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Storage/storageAccounts/stocrptestps41902\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps41902\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T10:10:01.8371302Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps41902.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps41902.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps41902.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps41902.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/temptestsap\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"temptestsap\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-10T14:03:58.3799849Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://temptestsap.blob.core.windows.net/\",\r\n \"file\": \"https://temptestsap.file.core.windows.net/\",\r\n \"queue\": \"https://temptestsap.queue.core.windows.net/\",\r\n \"table\": \"https://temptestsap.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/ase/providers/Microsoft.Storage/storageAccounts/ase7745\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"ase7745\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-08-22T12:09:54.6487474Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ase7745.blob.core.windows.net/\",\r\n \"file\": \"https://ase7745.file.core.windows.net/\",\r\n \"queue\": \"https://ase7745.queue.core.windows.net/\",\r\n \"table\": \"https://ase7745.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/benolwtlz6gcrtv2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"benolwtlz6gcrtv2\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-02T15:37:42.4160913Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://benolwtlz6gcrtv2.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/sapresourcegroup/providers/Microsoft.Storage/storageAccounts/de8da241d96f400ba8791029\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"de8da241d96f400ba8791029\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-09-18T13:22:47.5628749Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://de8da241d96f400ba8791029.blob.core.windows.net/\",\r\n \"file\": \"https://de8da241d96f400ba8791029.file.core.windows.net/\",\r\n \"queue\": \"https://de8da241d96f400ba8791029.queue.core.windows.net/\",\r\n \"table\": \"https://de8da241d96f400ba8791029.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/group-4/providers/Microsoft.Storage/storageAccounts/dsdevstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"dsdevstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-22T21:10:41.790448Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://dsdevstorage.blob.core.windows.net/\",\r\n \"file\": \"https://dsdevstorage.file.core.windows.net/\",\r\n \"queue\": \"https://dsdevstorage.queue.core.windows.net/\",\r\n \"table\": \"https://dsdevstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/seduscherp/providers/Microsoft.Storage/storageAccounts/erpio6r4un3ewfnm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"erpio6r4un3ewfnm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-08T12:41:16.6105852Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://erpio6r4un3ewfnm.blob.core.windows.net/\",\r\n \"file\": \"https://erpio6r4un3ewfnm.file.core.windows.net/\",\r\n \"queue\": \"https://erpio6r4un3ewfnm.queue.core.windows.net/\",\r\n \"table\": \"https://erpio6r4un3ewfnm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/fdfdfdf/providers/Microsoft.Storage/storageAccounts/fdfdfdf2537\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"fdfdfdf2537\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-17T10:07:55.1390685Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://fdfdfdf2537.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/fdfdfdf/providers/Microsoft.Storage/storageAccounts/fdfdfdf2925\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"fdfdfdf2925\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-17T10:07:55.715138Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://fdfdfdf2925.blob.core.windows.net/\",\r\n \"file\": \"https://fdfdfdf2925.file.core.windows.net/\",\r\n \"queue\": \"https://fdfdfdf2925.queue.core.windows.net/\",\r\n \"table\": \"https://fdfdfdf2925.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/glsresgroup1/providers/Microsoft.Storage/storageAccounts/glsstoraccount1\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"glsstoraccount1\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T12:37:47.5420067Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://glsstoraccount1.blob.core.windows.net/\",\r\n \"file\": \"https://glsstoraccount1.file.core.windows.net/\",\r\n \"queue\": \"https://glsstoraccount1.queue.core.windows.net/\",\r\n \"table\": \"https://glsstoraccount1.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmpremstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmpremstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:21.7378841Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmpremstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmpremstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmpremstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmpremstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmstdstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmstdstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:22.2160008Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmstdstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmstdstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmstdstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmstdstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-clust-arm/providers/Microsoft.Storage/storageAccounts/gorclustarmstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorclustarmstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-17T14:59:23.8666219Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorclustarmstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorclustarmstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorclustarmstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorclustarmstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {\r\n \"displayName\": \"StorageAccount\"\r\n },\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-test2/providers/Microsoft.Storage/storageAccounts/gortestacc2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gortestacc2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-08T21:18:17.9028388Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gortestacc2.blob.core.windows.net/\",\r\n \"file\": \"https://gortestacc2.file.core.windows.net/\",\r\n \"queue\": \"https://gortestacc2.queue.core.windows.net/\",\r\n \"table\": \"https://gortestacc2.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-04-16T13:50:52.0015725Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspacepremium\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspacepremium\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-10-23T10:22:10.7216809Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspacepremium.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/lvmtest/providers/Microsoft.Storage/storageAccounts/lvmtestspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmtestspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T16:56:41.5005505Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmtestspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmtestspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmtestspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmtestspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-eml2/providers/Microsoft.Storage/storageAccounts/rgeml2stacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"rgeml2stacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T08:00:29.8670815Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://rgeml2stacc.blob.core.windows.net/\",\r\n \"file\": \"https://rgeml2stacc.file.core.windows.net/\",\r\n \"queue\": \"https://rgeml2stacc.queue.core.windows.net/\",\r\n \"table\": \"https://rgeml2stacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/sapcalrg/providers/Microsoft.Storage/storageAccounts/sapcalrg8522\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"sapcalrg8522\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-28T06:54:16.0456896Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sapcalrg8522.blob.core.windows.net/\",\r\n \"file\": \"https://sapcalrg8522.file.core.windows.net/\",\r\n \"queue\": \"https://sapcalrg8522.queue.core.windows.net/\",\r\n \"table\": \"https://sapcalrg8522.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/saperpdemo859644\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"saperpdemo859644\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-01-26T11:02:43.8634331Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saperpdemo859644.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1prstacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1prstacc\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-12-10T17:35:29.0415914Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1prstacc.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1ststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1ststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-10T17:36:26.4810072Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1ststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saphana1ststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saphana1ststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saphana1ststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-sap-linux-docu-tests/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saplinuxdocuststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-24T09:25:04.4473982Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-sap-linux-docu-tests-we/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststaccwe\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saplinuxdocuststaccwe\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-25T13:11:50.5477032Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststaccwe.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststaccwe.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststaccwe.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststaccwe.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/sappseduscsape012612030\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"sappseduscsape012612030\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2016-01-26T11:03:56.0307387Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sappseduscsape012612030.blob.core.windows.net/\",\r\n \"file\": \"https://sappseduscsape012612030.file.core.windows.net/\",\r\n \"queue\": \"https://sappseduscsape012612030.queue.core.windows.net/\",\r\n \"table\": \"https://sappseduscsape012612030.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"westeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/saptesiarm/providers/Microsoft.Storage/storageAccounts/saptesiarm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saptesiarm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-08-27T12:13:00.4049179Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptesiarm.blob.core.windows.net/\",\r\n \"file\": \"https://saptesiarm.file.core.windows.net/\",\r\n \"queue\": \"https://saptesiarm.queue.core.windows.net/\",\r\n \"table\": \"https://saptesiarm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/saptestrajrg/providers/Microsoft.Storage/storageAccounts/saptestrajrg4518\",\r\n \"location\": \"westus\",\r\n \"name\": \"saptestrajrg4518\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-07-22T19:24:21.1065762Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptestrajrg4518.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Storage/storageAccounts/stocrptestps4427\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps4427\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-18T13:31:18.2831047Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps4427.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Storage/storageAccounts/stocrptestps44272\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps44272\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-18T13:34:52.8607821Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps44272.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps44272.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps44272.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps44272.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/temptestsap\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"temptestsap\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-10T14:03:58.3799849Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://temptestsap.blob.core.windows.net/\",\r\n \"file\": \"https://temptestsap.file.core.windows.net/\",\r\n \"queue\": \"https://temptestsap.queue.core.windows.net/\",\r\n \"table\": \"https://temptestsap.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-ts2-test/providers/Microsoft.Storage/storageAccounts/ts2cdlko5xtxpo3k\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"ts2cdlko5xtxpo3k\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-17T14:39:15.5207487Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ts2cdlko5xtxpo3k.blob.core.windows.net/\",\r\n \"file\": \"https://ts2cdlko5xtxpo3k.file.core.windows.net/\",\r\n \"queue\": \"https://ts2cdlko5xtxpo3k.queue.core.windows.net/\",\r\n \"table\": \"https://ts2cdlko5xtxpo3k.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "15546" + "18797" ], "Content-Type": [ "application/json" @@ -3325,7 +3325,7 @@ "no-cache" ], "x-ms-request-id": [ - "6f9556fd-b592-4013-b551-9f952a10ea23" + "44401e46-ce4d-4d11-8204-066db7877b31" ], "Cache-Control": [ "no-cache" @@ -3335,40 +3335,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14937" + "14987" ], "x-ms-correlation-request-id": [ - "6f9556fd-b592-4013-b551-9f952a10ea23" + "44401e46-ce4d-4d11-8204-066db7877b31" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T101413Z:6f9556fd-b592-4013-b551-9f952a10ea23" + "NORTHCENTRALUS:20160218T133844Z:44401e46-ce4d-4d11-8204-066db7877b31" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Feb 2016 10:14:12 GMT" + "Thu, 18 Feb 2016 13:38:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6736ac81-44d8-4d5c-8132-6d4c95f17195" + "f670db43-e884-40dc-8431-51b3854478d6" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/ase/providers/Microsoft.Storage/storageAccounts/ase7745\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"ase7745\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-08-22T12:09:54.6487474Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ase7745.blob.core.windows.net/\",\r\n \"file\": \"https://ase7745.file.core.windows.net/\",\r\n \"queue\": \"https://ase7745.queue.core.windows.net/\",\r\n \"table\": \"https://ase7745.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/benolwtlz6gcrtv2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"benolwtlz6gcrtv2\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-02T15:37:42.4160913Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://benolwtlz6gcrtv2.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/sapresourcegroup/providers/Microsoft.Storage/storageAccounts/de8da241d96f400ba8791029\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"de8da241d96f400ba8791029\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-09-18T13:22:47.5628749Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://de8da241d96f400ba8791029.blob.core.windows.net/\",\r\n \"file\": \"https://de8da241d96f400ba8791029.file.core.windows.net/\",\r\n \"queue\": \"https://de8da241d96f400ba8791029.queue.core.windows.net/\",\r\n \"table\": \"https://de8da241d96f400ba8791029.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/group-4/providers/Microsoft.Storage/storageAccounts/dsdevstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"dsdevstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-22T21:10:41.790448Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://dsdevstorage.blob.core.windows.net/\",\r\n \"file\": \"https://dsdevstorage.file.core.windows.net/\",\r\n \"queue\": \"https://dsdevstorage.queue.core.windows.net/\",\r\n \"table\": \"https://dsdevstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduscherp/providers/Microsoft.Storage/storageAccounts/erpio6r4un3ewfnm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"erpio6r4un3ewfnm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-08T12:41:16.6105852Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://erpio6r4un3ewfnm.blob.core.windows.net/\",\r\n \"file\": \"https://erpio6r4un3ewfnm.file.core.windows.net/\",\r\n \"queue\": \"https://erpio6r4un3ewfnm.queue.core.windows.net/\",\r\n \"table\": \"https://erpio6r4un3ewfnm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmpremstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmpremstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:21.7378841Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmpremstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmpremstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmpremstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmpremstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmstdstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmstdstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:22.2160008Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmstdstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmstdstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmstdstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmstdstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-test2/providers/Microsoft.Storage/storageAccounts/gortestacc2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gortestacc2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-08T21:18:17.9028388Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gortestacc2.blob.core.windows.net/\",\r\n \"file\": \"https://gortestacc2.file.core.windows.net/\",\r\n \"queue\": \"https://gortestacc2.queue.core.windows.net/\",\r\n \"table\": \"https://gortestacc2.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-04-16T13:50:52.0015725Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspacepremium\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspacepremium\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-10-23T10:22:10.7216809Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspacepremium.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvmtest/providers/Microsoft.Storage/storageAccounts/lvmtestspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmtestspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T16:56:41.5005505Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmtestspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmtestspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmtestspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmtestspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-eml2/providers/Microsoft.Storage/storageAccounts/rgeml2stacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"rgeml2stacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T08:00:29.8670815Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://rgeml2stacc.blob.core.windows.net/\",\r\n \"file\": \"https://rgeml2stacc.file.core.windows.net/\",\r\n \"queue\": \"https://rgeml2stacc.queue.core.windows.net/\",\r\n \"table\": \"https://rgeml2stacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/sapcalrg/providers/Microsoft.Storage/storageAccounts/sapcalrg8522\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"sapcalrg8522\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-28T06:54:16.0456896Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sapcalrg8522.blob.core.windows.net/\",\r\n \"file\": \"https://sapcalrg8522.file.core.windows.net/\",\r\n \"queue\": \"https://sapcalrg8522.queue.core.windows.net/\",\r\n \"table\": \"https://sapcalrg8522.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/saperpdemo859644\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"saperpdemo859644\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-01-26T11:02:43.8634331Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saperpdemo859644.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1prstacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1prstacc\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-12-10T17:35:29.0415914Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1prstacc.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1ststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1ststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-10T17:36:26.4810072Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1ststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saphana1ststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saphana1ststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saphana1ststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-linux-docu-tests/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saplinuxdocuststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-24T09:25:04.4473982Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-linux-docu-tests-we/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststaccwe\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saplinuxdocuststaccwe\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-25T13:11:50.5477032Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststaccwe.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststaccwe.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststaccwe.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststaccwe.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/sappseduscsape012612030\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"sappseduscsape012612030\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2016-01-26T11:03:56.0307387Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sappseduscsape012612030.blob.core.windows.net/\",\r\n \"file\": \"https://sappseduscsape012612030.file.core.windows.net/\",\r\n \"queue\": \"https://sappseduscsape012612030.queue.core.windows.net/\",\r\n \"table\": \"https://sappseduscsape012612030.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"westeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/saptesiarm/providers/Microsoft.Storage/storageAccounts/saptesiarm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saptesiarm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-08-27T12:13:00.4049179Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptesiarm.blob.core.windows.net/\",\r\n \"file\": \"https://saptesiarm.file.core.windows.net/\",\r\n \"queue\": \"https://saptesiarm.queue.core.windows.net/\",\r\n \"table\": \"https://saptesiarm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/saptestrajrg/providers/Microsoft.Storage/storageAccounts/saptestrajrg4518\",\r\n \"location\": \"westus\",\r\n \"name\": \"saptestrajrg4518\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-07-22T19:24:21.1065762Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptestrajrg4518.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Storage/storageAccounts/stocrptestps4190\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps4190\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-16T10:06:19.4280887Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps4190.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Storage/storageAccounts/stocrptestps41902\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps41902\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T10:10:01.8371302Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps41902.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps41902.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps41902.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps41902.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/temptestsap\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"temptestsap\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-10T14:03:58.3799849Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://temptestsap.blob.core.windows.net/\",\r\n \"file\": \"https://temptestsap.file.core.windows.net/\",\r\n \"queue\": \"https://temptestsap.queue.core.windows.net/\",\r\n \"table\": \"https://temptestsap.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/ase/providers/Microsoft.Storage/storageAccounts/ase7745\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"ase7745\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-08-22T12:09:54.6487474Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ase7745.blob.core.windows.net/\",\r\n \"file\": \"https://ase7745.file.core.windows.net/\",\r\n \"queue\": \"https://ase7745.queue.core.windows.net/\",\r\n \"table\": \"https://ase7745.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/benolwtlz6gcrtv2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"benolwtlz6gcrtv2\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-02T15:37:42.4160913Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://benolwtlz6gcrtv2.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/sapresourcegroup/providers/Microsoft.Storage/storageAccounts/de8da241d96f400ba8791029\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"de8da241d96f400ba8791029\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-09-18T13:22:47.5628749Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://de8da241d96f400ba8791029.blob.core.windows.net/\",\r\n \"file\": \"https://de8da241d96f400ba8791029.file.core.windows.net/\",\r\n \"queue\": \"https://de8da241d96f400ba8791029.queue.core.windows.net/\",\r\n \"table\": \"https://de8da241d96f400ba8791029.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/group-4/providers/Microsoft.Storage/storageAccounts/dsdevstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"dsdevstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-22T21:10:41.790448Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://dsdevstorage.blob.core.windows.net/\",\r\n \"file\": \"https://dsdevstorage.file.core.windows.net/\",\r\n \"queue\": \"https://dsdevstorage.queue.core.windows.net/\",\r\n \"table\": \"https://dsdevstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/seduscherp/providers/Microsoft.Storage/storageAccounts/erpio6r4un3ewfnm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"erpio6r4un3ewfnm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-08T12:41:16.6105852Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://erpio6r4un3ewfnm.blob.core.windows.net/\",\r\n \"file\": \"https://erpio6r4un3ewfnm.file.core.windows.net/\",\r\n \"queue\": \"https://erpio6r4un3ewfnm.queue.core.windows.net/\",\r\n \"table\": \"https://erpio6r4un3ewfnm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/fdfdfdf/providers/Microsoft.Storage/storageAccounts/fdfdfdf2537\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"fdfdfdf2537\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-17T10:07:55.1390685Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://fdfdfdf2537.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/fdfdfdf/providers/Microsoft.Storage/storageAccounts/fdfdfdf2925\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"fdfdfdf2925\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-17T10:07:55.715138Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://fdfdfdf2925.blob.core.windows.net/\",\r\n \"file\": \"https://fdfdfdf2925.file.core.windows.net/\",\r\n \"queue\": \"https://fdfdfdf2925.queue.core.windows.net/\",\r\n \"table\": \"https://fdfdfdf2925.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/glsresgroup1/providers/Microsoft.Storage/storageAccounts/glsstoraccount1\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"glsstoraccount1\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T12:37:47.5420067Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://glsstoraccount1.blob.core.windows.net/\",\r\n \"file\": \"https://glsstoraccount1.file.core.windows.net/\",\r\n \"queue\": \"https://glsstoraccount1.queue.core.windows.net/\",\r\n \"table\": \"https://glsstoraccount1.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmpremstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmpremstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:21.7378841Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmpremstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmpremstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmpremstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmpremstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmstdstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmstdstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:22.2160008Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmstdstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmstdstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmstdstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmstdstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-clust-arm/providers/Microsoft.Storage/storageAccounts/gorclustarmstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorclustarmstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-17T14:59:23.8666219Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorclustarmstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorclustarmstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorclustarmstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorclustarmstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {\r\n \"displayName\": \"StorageAccount\"\r\n },\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-test2/providers/Microsoft.Storage/storageAccounts/gortestacc2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gortestacc2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-08T21:18:17.9028388Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gortestacc2.blob.core.windows.net/\",\r\n \"file\": \"https://gortestacc2.file.core.windows.net/\",\r\n \"queue\": \"https://gortestacc2.queue.core.windows.net/\",\r\n \"table\": \"https://gortestacc2.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-04-16T13:50:52.0015725Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspacepremium\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspacepremium\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-10-23T10:22:10.7216809Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspacepremium.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/lvmtest/providers/Microsoft.Storage/storageAccounts/lvmtestspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmtestspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T16:56:41.5005505Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmtestspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmtestspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmtestspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmtestspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-eml2/providers/Microsoft.Storage/storageAccounts/rgeml2stacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"rgeml2stacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T08:00:29.8670815Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://rgeml2stacc.blob.core.windows.net/\",\r\n \"file\": \"https://rgeml2stacc.file.core.windows.net/\",\r\n \"queue\": \"https://rgeml2stacc.queue.core.windows.net/\",\r\n \"table\": \"https://rgeml2stacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/sapcalrg/providers/Microsoft.Storage/storageAccounts/sapcalrg8522\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"sapcalrg8522\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-28T06:54:16.0456896Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sapcalrg8522.blob.core.windows.net/\",\r\n \"file\": \"https://sapcalrg8522.file.core.windows.net/\",\r\n \"queue\": \"https://sapcalrg8522.queue.core.windows.net/\",\r\n \"table\": \"https://sapcalrg8522.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/saperpdemo859644\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"saperpdemo859644\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-01-26T11:02:43.8634331Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saperpdemo859644.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1prstacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1prstacc\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-12-10T17:35:29.0415914Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1prstacc.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1ststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1ststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-10T17:36:26.4810072Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1ststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saphana1ststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saphana1ststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saphana1ststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-sap-linux-docu-tests/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saplinuxdocuststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-24T09:25:04.4473982Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-sap-linux-docu-tests-we/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststaccwe\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saplinuxdocuststaccwe\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-25T13:11:50.5477032Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststaccwe.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststaccwe.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststaccwe.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststaccwe.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/sappseduscsape012612030\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"sappseduscsape012612030\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2016-01-26T11:03:56.0307387Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sappseduscsape012612030.blob.core.windows.net/\",\r\n \"file\": \"https://sappseduscsape012612030.file.core.windows.net/\",\r\n \"queue\": \"https://sappseduscsape012612030.queue.core.windows.net/\",\r\n \"table\": \"https://sappseduscsape012612030.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"westeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/saptesiarm/providers/Microsoft.Storage/storageAccounts/saptesiarm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saptesiarm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-08-27T12:13:00.4049179Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptesiarm.blob.core.windows.net/\",\r\n \"file\": \"https://saptesiarm.file.core.windows.net/\",\r\n \"queue\": \"https://saptesiarm.queue.core.windows.net/\",\r\n \"table\": \"https://saptesiarm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/saptestrajrg/providers/Microsoft.Storage/storageAccounts/saptestrajrg4518\",\r\n \"location\": \"westus\",\r\n \"name\": \"saptestrajrg4518\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-07-22T19:24:21.1065762Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptestrajrg4518.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Storage/storageAccounts/stocrptestps4427\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps4427\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-18T13:31:18.2831047Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps4427.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Storage/storageAccounts/stocrptestps44272\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps44272\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-18T13:34:52.8607821Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps44272.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps44272.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps44272.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps44272.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/temptestsap\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"temptestsap\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-10T14:03:58.3799849Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://temptestsap.blob.core.windows.net/\",\r\n \"file\": \"https://temptestsap.file.core.windows.net/\",\r\n \"queue\": \"https://temptestsap.queue.core.windows.net/\",\r\n \"table\": \"https://temptestsap.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-ts2-test/providers/Microsoft.Storage/storageAccounts/ts2cdlko5xtxpo3k\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"ts2cdlko5xtxpo3k\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-17T14:39:15.5207487Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ts2cdlko5xtxpo3k.blob.core.windows.net/\",\r\n \"file\": \"https://ts2cdlko5xtxpo3k.file.core.windows.net/\",\r\n \"queue\": \"https://ts2cdlko5xtxpo3k.queue.core.windows.net/\",\r\n \"table\": \"https://ts2cdlko5xtxpo3k.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "15546" + "18797" ], "Content-Type": [ "application/json" @@ -3380,7 +3380,7 @@ "no-cache" ], "x-ms-request-id": [ - "0a8bef73-08b5-4f25-b7d2-9d6cfd815f2d" + "e4ba8ecb-fec9-4a14-83c8-7974d4a1e500" ], "Cache-Control": [ "no-cache" @@ -3390,26 +3390,26 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14936" + "14986" ], "x-ms-correlation-request-id": [ - "0a8bef73-08b5-4f25-b7d2-9d6cfd815f2d" + "e4ba8ecb-fec9-4a14-83c8-7974d4a1e500" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T101414Z:0a8bef73-08b5-4f25-b7d2-9d6cfd815f2d" + "NORTHCENTRALUS:20160218T133859Z:e4ba8ecb-fec9-4a14-83c8-7974d4a1e500" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Feb 2016 10:14:13 GMT" + "Thu, 18 Feb 2016 13:38:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Storage/storageAccounts/stocrptestps41902?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM0MTkwMj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Storage/storageAccounts/stocrptestps44272?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM0NDI3Mj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\"\r\n }\r\n}", "RequestHeaders": { @@ -3420,7 +3420,7 @@ "89" ], "x-ms-client-request-id": [ - "7858239d-b60f-494d-b13e-1737a2fe0085" + "9415c3c3-4d95-414c-a256-1687994612af" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" @@ -3444,41 +3444,41 @@ "1199" ], "x-ms-request-id": [ - "88ed99d5-ce6a-4091-8f32-1cee75e13967" + "ee5c6f9d-a903-4b52-81dd-882cac46c5cb" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Storage/operations/f3fb3d5f-4005-4642-82d9-6a5999e9caf4?monitor=true&api-version=2015-06-15" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Storage/operations/053efd9a-860c-4c64-afb8-edd07f21824c?monitor=true&api-version=2015-06-15" ], "Server": [ "Microsoft-Azure-Storage-Resource-Provider/1.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "88ed99d5-ce6a-4091-8f32-1cee75e13967" + "ee5c6f9d-a903-4b52-81dd-882cac46c5cb" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T101002Z:88ed99d5-ce6a-4091-8f32-1cee75e13967" + "NORTHCENTRALUS:20160218T133454Z:ee5c6f9d-a903-4b52-81dd-882cac46c5cb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Feb 2016 10:10:01 GMT" + "Thu, 18 Feb 2016 13:34:53 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Storage/operations/f3fb3d5f-4005-4642-82d9-6a5999e9caf4?monitor=true&api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2YzZmIzZDVmLTQwMDUtNDY0Mi04MmQ5LTZhNTk5OWU5Y2FmND9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Storage/operations/053efd9a-860c-4c64-afb8-edd07f21824c?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzA1M2VmZDlhLTg2MGMtNGM2NC1hZmI4LWVkZDA3ZjIxODI0Yz9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "77f883a7-7d34-45a6-910f-79646bff095b" + "2b44f36d-483e-486a-9c44-6538cea70a57" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" @@ -3499,44 +3499,44 @@ "25" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14953" + "14991" ], "x-ms-request-id": [ - "ea84a12b-27e9-4689-945f-7179f498a225" + "565d8fdc-eae3-4c2f-9adc-b61080a7b1cd" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Storage/operations/f3fb3d5f-4005-4642-82d9-6a5999e9caf4?monitor=true&api-version=2015-06-15" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Storage/operations/053efd9a-860c-4c64-afb8-edd07f21824c?monitor=true&api-version=2015-06-15" ], "Server": [ "Microsoft-Azure-Storage-Resource-Provider/1.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "ea84a12b-27e9-4689-945f-7179f498a225" + "565d8fdc-eae3-4c2f-9adc-b61080a7b1cd" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T101003Z:ea84a12b-27e9-4689-945f-7179f498a225" + "NORTHCENTRALUS:20160218T133454Z:565d8fdc-eae3-4c2f-9adc-b61080a7b1cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Feb 2016 10:10:02 GMT" + "Thu, 18 Feb 2016 13:34:54 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Storage/operations/f3fb3d5f-4005-4642-82d9-6a5999e9caf4?monitor=true&api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2YzZmIzZDVmLTQwMDUtNDY0Mi04MmQ5LTZhNTk5OWU5Y2FmND9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Storage/operations/053efd9a-860c-4c64-afb8-edd07f21824c?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzA1M2VmZDlhLTg2MGMtNGM2NC1hZmI4LWVkZDA3ZjIxODI0Yz9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cfb44fb5-00b2-4716-a08e-64a8fec04180" + "6e6877a4-9589-4655-b032-fb39c4b2ee6a" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" @@ -3557,7 +3557,7 @@ "no-cache" ], "x-ms-request-id": [ - "c681fe9e-e5b1-4b24-80f6-3be00bb1096b" + "82a6dfa5-12c8-4fd4-b8c7-0cdae93bb6c8" ], "Cache-Control": [ "no-cache" @@ -3567,37 +3567,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14952" + "14991" ], "x-ms-correlation-request-id": [ - "c681fe9e-e5b1-4b24-80f6-3be00bb1096b" + "82a6dfa5-12c8-4fd4-b8c7-0cdae93bb6c8" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T101028Z:c681fe9e-e5b1-4b24-80f6-3be00bb1096b" + "NORTHCENTRALUS:20160218T133519Z:82a6dfa5-12c8-4fd4-b8c7-0cdae93bb6c8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Feb 2016 10:10:28 GMT" + "Thu, 18 Feb 2016 13:35:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Storage/storageAccounts/stocrptestps41902?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM0MTkwMj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Storage/storageAccounts/stocrptestps44272?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM0NDI3Mj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ed004706-66da-42ae-9506-1fb6c5de3f4d" + "a860dccb-25c7-4451-b3d1-245962dcdef0" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Storage/storageAccounts/stocrptestps41902\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps41902\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T10:10:01.8371302Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps41902.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps41902.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps41902.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps41902.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Storage/storageAccounts/stocrptestps44272\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps44272\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-18T13:34:52.8607821Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps44272.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps44272.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps44272.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps44272.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "688" @@ -3612,7 +3612,7 @@ "no-cache" ], "x-ms-request-id": [ - "1974473d-62ed-4e28-b2e7-d9ada3e17efb" + "8739c4ed-04c4-4e71-9aba-e138ae0bee46" ], "Cache-Control": [ "no-cache" @@ -3622,37 +3622,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14951" + "14990" ], "x-ms-correlation-request-id": [ - "1974473d-62ed-4e28-b2e7-d9ada3e17efb" + "8739c4ed-04c4-4e71-9aba-e138ae0bee46" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T101028Z:1974473d-62ed-4e28-b2e7-d9ada3e17efb" + "NORTHCENTRALUS:20160218T133519Z:8739c4ed-04c4-4e71-9aba-e138ae0bee46" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Feb 2016 10:10:28 GMT" + "Thu, 18 Feb 2016 13:35:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Storage/storageAccounts/stocrptestps41902/listKeys?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM0MTkwMi9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Storage/storageAccounts/stocrptestps44272/listKeys?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM0NDI3Mi9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c2049769-b019-4555-9431-e6ec44a586b6" + "0fd44e58-4e8b-48e5-b431-ec5b943f3e08" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"key1\": \"rScet1r0e9FtH/vlbBAxc3Vo2azOLDyJh7T6ZNahDpnU+C89PaNfnFnox+jZcg0L4YwYcoy9h/cpylY//qEFeg==\",\r\n \"key2\": \"w1W3rLCfv/YxbWBLNnXsJkv5U/aUjTDrI1xyAuAVl+ha5C25mm1Ne10WQM13BeZPu8S5O/myFBtJyOas72aJ4w==\"\r\n}", + "ResponseBody": "{\r\n \"key1\": \"gSQQlWUd96Jt7RsvKOROnNdIUNasI858O/RwojTFOFez5SjSogtSXtNHpAcxgge1dpWu+FxqU5vcNUYaqpy8NQ==\",\r\n \"key2\": \"k/zUJO1tRNOixdi48Malbl3FGoAV/Pl/265DEqo69IMxdyou9II06p5IuIG8+mLrtemfwh/jEOFapS+SMeJM+Q==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "198" @@ -3667,7 +3667,7 @@ "no-cache" ], "x-ms-request-id": [ - "86ba6777-4d03-4239-9710-c7ed1ba2d7f4" + "d18447da-325f-4240-a84b-706e5113fb24" ], "Cache-Control": [ "no-cache" @@ -3680,34 +3680,34 @@ "1196" ], "x-ms-correlation-request-id": [ - "86ba6777-4d03-4239-9710-c7ed1ba2d7f4" + "d18447da-325f-4240-a84b-706e5113fb24" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T101030Z:86ba6777-4d03-4239-9710-c7ed1ba2d7f4" + "NORTHCENTRALUS:20160218T133536Z:d18447da-325f-4240-a84b-706e5113fb24" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Feb 2016 10:10:30 GMT" + "Thu, 18 Feb 2016 13:35:36 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Storage/storageAccounts/stocrptestps41902/listKeys?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM0MTkwMi9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Storage/storageAccounts/stocrptestps44272/listKeys?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM0NDI3Mi9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "78870083-36d1-4be2-a28f-21bdda20c5f6" + "59bdfecd-2fc0-4e34-8f8a-b18b41024e23" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"key1\": \"rScet1r0e9FtH/vlbBAxc3Vo2azOLDyJh7T6ZNahDpnU+C89PaNfnFnox+jZcg0L4YwYcoy9h/cpylY//qEFeg==\",\r\n \"key2\": \"w1W3rLCfv/YxbWBLNnXsJkv5U/aUjTDrI1xyAuAVl+ha5C25mm1Ne10WQM13BeZPu8S5O/myFBtJyOas72aJ4w==\"\r\n}", + "ResponseBody": "{\r\n \"key1\": \"gSQQlWUd96Jt7RsvKOROnNdIUNasI858O/RwojTFOFez5SjSogtSXtNHpAcxgge1dpWu+FxqU5vcNUYaqpy8NQ==\",\r\n \"key2\": \"k/zUJO1tRNOixdi48Malbl3FGoAV/Pl/265DEqo69IMxdyou9II06p5IuIG8+mLrtemfwh/jEOFapS+SMeJM+Q==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "198" @@ -3722,7 +3722,7 @@ "no-cache" ], "x-ms-request-id": [ - "1f574d6a-ea6e-4594-a5b8-3a9450751c85" + "dc1e6cec-83a4-4459-aedc-9aed90464157" ], "Cache-Control": [ "no-cache" @@ -3732,28 +3732,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1194" ], "x-ms-correlation-request-id": [ - "1f574d6a-ea6e-4594-a5b8-3a9450751c85" + "dc1e6cec-83a4-4459-aedc-9aed90464157" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T101414Z:1f574d6a-ea6e-4594-a5b8-3a9450751c85" + "NORTHCENTRALUS:20160218T133859Z:dc1e6cec-83a4-4459-aedc-9aed90464157" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Feb 2016 10:14:13 GMT" + "Thu, 18 Feb 2016 13:38:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190/extensions/LinuxDiagnostic?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQxOTAvZXh0ZW5zaW9ucy9MaW51eERpYWdub3N0aWM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427/extensions/LinuxDiagnostic?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQ0MjcvZXh0ZW5zaW9ucy9MaW51eERpYWdub3N0aWM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRQcm9jZXNzb3JUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRJZGxlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50UHJpdmlsZWdlZFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudEludGVycnVwdFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudERQQ1RpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudFVzZXJUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnROaWNlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50SU9XYWl0VGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZE1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxVc2VkTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRBdmFpbGFibGVNZW1vcnkiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRVc2VkQnlDYWNoZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcVXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1BlclNlYyIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1JlYWRQZXJTZWMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcUGFnZXNXcml0dGVuUGVyU2VjIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VUcmFuc2ZlclRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQXZlcmFnZVJlYWRUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VXcml0ZVRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcVHJhbnNmZXJzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFJlYWRzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFdyaXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xCeXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xXcml0ZUJ5dGVzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VEaXNrUXVldWVMZW5ndGgiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVG90YWwiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVHJhbnNtaXR0ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzUmVjZWl2ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXFBhY2tldHNUcmFuc21pdHRlZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcUGFja2V0c1JlY2VpdmVkIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFJ4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFR4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbENvbGxpc2lvbnMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"protectedSettings\": {\r\n \"storageAccountName\": \"stocrptestps41902\",\r\n \"storageAccountKey\": \"rScet1r0e9FtH/vlbBAxc3Vo2azOLDyJh7T6ZNahDpnU+C89PaNfnFnox+jZcg0L4YwYcoy9h/cpylY//qEFeg==\",\r\n \"storageAccountEndPoint\": \"https://core.windows.net\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRQcm9jZXNzb3JUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRJZGxlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50UHJpdmlsZWdlZFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudEludGVycnVwdFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudERQQ1RpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudFVzZXJUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnROaWNlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50SU9XYWl0VGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZE1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxVc2VkTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRBdmFpbGFibGVNZW1vcnkiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRVc2VkQnlDYWNoZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcVXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1BlclNlYyIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1JlYWRQZXJTZWMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcUGFnZXNXcml0dGVuUGVyU2VjIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VUcmFuc2ZlclRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQXZlcmFnZVJlYWRUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VXcml0ZVRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcVHJhbnNmZXJzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFJlYWRzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFdyaXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xCeXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xXcml0ZUJ5dGVzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VEaXNrUXVldWVMZW5ndGgiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVG90YWwiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVHJhbnNtaXR0ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzUmVjZWl2ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXFBhY2tldHNUcmFuc21pdHRlZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcUGFja2V0c1JlY2VpdmVkIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFJ4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFR4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbENvbGxpc2lvbnMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"protectedSettings\": {\r\n \"storageAccountName\": \"stocrptestps44272\",\r\n \"storageAccountKey\": \"gSQQlWUd96Jt7RsvKOROnNdIUNasI858O/RwojTFOFez5SjSogtSXtNHpAcxgge1dpWu+FxqU5vcNUYaqpy8NQ==\",\r\n \"storageAccountEndPoint\": \"https://core.windows.net\"\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -3762,7 +3762,7 @@ "5617" ], "x-ms-client-request-id": [ - "ac04ad62-6d68-418f-992d-786d032d3150" + "04057b3d-d79f-4c74-b774-24209e08e8eb" ], "accept-language": [ "en-US" @@ -3771,7 +3771,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRQcm9jZXNzb3JUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRJZGxlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50UHJpdmlsZWdlZFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudEludGVycnVwdFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudERQQ1RpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudFVzZXJUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnROaWNlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50SU9XYWl0VGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZE1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxVc2VkTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRBdmFpbGFibGVNZW1vcnkiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRVc2VkQnlDYWNoZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcVXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1BlclNlYyIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1JlYWRQZXJTZWMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcUGFnZXNXcml0dGVuUGVyU2VjIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VUcmFuc2ZlclRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQXZlcmFnZVJlYWRUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VXcml0ZVRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcVHJhbnNmZXJzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFJlYWRzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFdyaXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xCeXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xXcml0ZUJ5dGVzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VEaXNrUXVldWVMZW5ndGgiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVG90YWwiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVHJhbnNtaXR0ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzUmVjZWl2ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXFBhY2tldHNUcmFuc21pdHRlZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcUGFja2V0c1JlY2VpdmVkIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFJ4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFR4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbENvbGxpc2lvbnMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190/extensions/LinuxDiagnostic\",\r\n \"name\": \"LinuxDiagnostic\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRQcm9jZXNzb3JUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRJZGxlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50UHJpdmlsZWdlZFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudEludGVycnVwdFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudERQQ1RpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudFVzZXJUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnROaWNlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50SU9XYWl0VGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZE1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxVc2VkTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRBdmFpbGFibGVNZW1vcnkiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRVc2VkQnlDYWNoZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcVXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1BlclNlYyIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1JlYWRQZXJTZWMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcUGFnZXNXcml0dGVuUGVyU2VjIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VUcmFuc2ZlclRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQXZlcmFnZVJlYWRUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VXcml0ZVRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcVHJhbnNmZXJzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFJlYWRzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFdyaXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xCeXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xXcml0ZUJ5dGVzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VEaXNrUXVldWVMZW5ndGgiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVG90YWwiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVHJhbnNtaXR0ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzUmVjZWl2ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXFBhY2tldHNUcmFuc21pdHRlZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcUGFja2V0c1JlY2VpdmVkIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFJ4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFR4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbENvbGxpc2lvbnMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427/extensions/LinuxDiagnostic\",\r\n \"name\": \"LinuxDiagnostic\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "5682" @@ -3786,16 +3786,16 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/76aa3d8a-20aa-47af-ab01-f3847ff32183?api-version=2015-06-15" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/4a14860c-61f4-49d2-a1d4-b83111f7c388?api-version=2015-06-15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130995838280309262" ], "x-ms-request-id": [ - "76aa3d8a-20aa-47af-ab01-f3847ff32183" + "4a14860c-61f4-49d2-a1d4-b83111f7c388" ], "Cache-Control": [ "no-cache" @@ -3808,75 +3808,20 @@ "1198" ], "x-ms-correlation-request-id": [ - "102f9a39-8531-4a4f-beb9-f859e6b448d4" + "5eee5f73-9247-46da-8b74-4581213ef6d9" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T101032Z:102f9a39-8531-4a4f-beb9-f859e6b448d4" + "NORTHCENTRALUS:20160218T133539Z:5eee5f73-9247-46da-8b74-4581213ef6d9" ], "Date": [ - "Tue, 16 Feb 2016 10:10:32 GMT" + "Thu, 18 Feb 2016 13:35:38 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/76aa3d8a-20aa-47af-ab01-f3847ff32183?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNzZhYTNkOGEtMjBhYS00N2FmLWFiMDEtZjM4NDdmZjMyMTgzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"operationId\": \"76aa3d8a-20aa-47af-ab01-f3847ff32183\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T11:10:32.2768837+01: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-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" - ], - "x-ms-request-id": [ - "432b6a6d-5b0b-46a1-8f48-a796bbda01aa" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" - ], - "x-ms-correlation-request-id": [ - "61723925-bf8a-49ea-801b-4bc17766f8cf" - ], - "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T101103Z:61723925-bf8a-49ea-801b-4bc17766f8cf" - ], - "Date": [ - "Tue, 16 Feb 2016 10:11:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/76aa3d8a-20aa-47af-ab01-f3847ff32183?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNzZhYTNkOGEtMjBhYS00N2FmLWFiMDEtZjM4NDdmZjMyMTgzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/4a14860c-61f4-49d2-a1d4-b83111f7c388?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNGExNDg2MGMtNjFmNC00OWQyLWExZDQtYjgzMTExZjdjMzg4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3884,10 +3829,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"76aa3d8a-20aa-47af-ab01-f3847ff32183\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T11:10:32.2768837+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"4a14860c-61f4-49d2-a1d4-b83111f7c388\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-18T14:35:38.348967+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "140" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3902,10 +3847,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130995838280309262" ], "x-ms-request-id": [ - "5a9c002f-bebd-4be9-95df-2835bc7a9279" + "9c11d3c0-58ec-479f-ba46-9a2b37c3c271" ], "Cache-Control": [ "no-cache" @@ -3915,23 +3860,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14963" ], "x-ms-correlation-request-id": [ - "b0adbded-96d8-4dd3-b5f7-04038a5db2cb" + "2bad52cb-7ea8-4c59-bb90-277639680926" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T101133Z:b0adbded-96d8-4dd3-b5f7-04038a5db2cb" + "NORTHCENTRALUS:20160218T133609Z:2bad52cb-7ea8-4c59-bb90-277639680926" ], "Date": [ - "Tue, 16 Feb 2016 10:11:33 GMT" + "Thu, 18 Feb 2016 13:36:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/76aa3d8a-20aa-47af-ab01-f3847ff32183?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNzZhYTNkOGEtMjBhYS00N2FmLWFiMDEtZjM4NDdmZjMyMTgzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/4a14860c-61f4-49d2-a1d4-b83111f7c388?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNGExNDg2MGMtNjFmNC00OWQyLWExZDQtYjgzMTExZjdjMzg4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3939,10 +3884,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"76aa3d8a-20aa-47af-ab01-f3847ff32183\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T11:10:32.2768837+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"4a14860c-61f4-49d2-a1d4-b83111f7c388\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-18T14:35:38.348967+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "140" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3957,10 +3902,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130995838280309262" ], "x-ms-request-id": [ - "c2d3f359-5829-4fdb-a27a-783f397e5827" + "665e0d52-255c-4699-b7a3-cfcb5153feeb" ], "Cache-Control": [ "no-cache" @@ -3970,23 +3915,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" + "14962" ], "x-ms-correlation-request-id": [ - "c54b23b8-be30-4c1b-8edd-369bd8ac085a" + "020e62ed-91bf-420d-a02c-8bc59a5d9b9a" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T101203Z:c54b23b8-be30-4c1b-8edd-369bd8ac085a" + "NORTHCENTRALUS:20160218T133639Z:020e62ed-91bf-420d-a02c-8bc59a5d9b9a" ], "Date": [ - "Tue, 16 Feb 2016 10:12:02 GMT" + "Thu, 18 Feb 2016 13:36:39 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/76aa3d8a-20aa-47af-ab01-f3847ff32183?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNzZhYTNkOGEtMjBhYS00N2FmLWFiMDEtZjM4NDdmZjMyMTgzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/4a14860c-61f4-49d2-a1d4-b83111f7c388?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNGExNDg2MGMtNjFmNC00OWQyLWExZDQtYjgzMTExZjdjMzg4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3994,10 +3939,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"76aa3d8a-20aa-47af-ab01-f3847ff32183\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-02-16T11:10:32.2768837+01:00\",\r\n \"endTime\": \"2016-02-16T11:12:14.5425256+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"4a14860c-61f4-49d2-a1d4-b83111f7c388\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-02-18T14:35:38.348967+01:00\",\r\n \"endTime\": \"2016-02-18T14:36:49.67616+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "191" + "188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4012,10 +3957,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130995838280309262" ], "x-ms-request-id": [ - "128d295c-759d-4f70-a16b-0e05134e14d6" + "20847f54-9c9c-4228-9476-cb04ce47bc39" ], "Cache-Control": [ "no-cache" @@ -4025,23 +3970,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" + "14961" ], "x-ms-correlation-request-id": [ - "9ae5828b-1fde-4581-b02c-a0413c796ff8" + "62650b45-21b5-4a66-8fdb-b7b17d3a517b" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T101233Z:9ae5828b-1fde-4581-b02c-a0413c796ff8" + "NORTHCENTRALUS:20160218T133709Z:62650b45-21b5-4a66-8fdb-b7b17d3a517b" ], "Date": [ - "Tue, 16 Feb 2016 10:12:33 GMT" + "Thu, 18 Feb 2016 13:37:09 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190/extensions/LinuxDiagnostic?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQxOTAvZXh0ZW5zaW9ucy9MaW51eERpYWdub3N0aWM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427/extensions/LinuxDiagnostic?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQ0MjcvZXh0ZW5zaW9ucy9MaW51eERpYWdub3N0aWM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4049,7 +3994,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRQcm9jZXNzb3JUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRJZGxlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50UHJpdmlsZWdlZFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudEludGVycnVwdFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudERQQ1RpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudFVzZXJUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnROaWNlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50SU9XYWl0VGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZE1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxVc2VkTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRBdmFpbGFibGVNZW1vcnkiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRVc2VkQnlDYWNoZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcVXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1BlclNlYyIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1JlYWRQZXJTZWMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcUGFnZXNXcml0dGVuUGVyU2VjIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VUcmFuc2ZlclRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQXZlcmFnZVJlYWRUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VXcml0ZVRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcVHJhbnNmZXJzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFJlYWRzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFdyaXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xCeXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xXcml0ZUJ5dGVzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VEaXNrUXVldWVMZW5ndGgiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVG90YWwiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVHJhbnNtaXR0ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzUmVjZWl2ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXFBhY2tldHNUcmFuc21pdHRlZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcUGFja2V0c1JlY2VpdmVkIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFJ4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFR4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbENvbGxpc2lvbnMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190/extensions/LinuxDiagnostic\",\r\n \"name\": \"LinuxDiagnostic\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRQcm9jZXNzb3JUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRJZGxlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50UHJpdmlsZWdlZFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudEludGVycnVwdFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudERQQ1RpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudFVzZXJUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnROaWNlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50SU9XYWl0VGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZE1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxVc2VkTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRBdmFpbGFibGVNZW1vcnkiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRVc2VkQnlDYWNoZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcVXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1BlclNlYyIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1JlYWRQZXJTZWMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcUGFnZXNXcml0dGVuUGVyU2VjIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VUcmFuc2ZlclRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQXZlcmFnZVJlYWRUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VXcml0ZVRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcVHJhbnNmZXJzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFJlYWRzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFdyaXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xCeXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xXcml0ZUJ5dGVzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VEaXNrUXVldWVMZW5ndGgiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVG90YWwiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVHJhbnNtaXR0ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzUmVjZWl2ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXFBhY2tldHNUcmFuc21pdHRlZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcUGFja2V0c1JlY2VpdmVkIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFJ4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFR4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbENvbGxpc2lvbnMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427/extensions/LinuxDiagnostic\",\r\n \"name\": \"LinuxDiagnostic\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "5683" @@ -4067,10 +4012,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130995838280309262" ], "x-ms-request-id": [ - "e7504bcc-b8f1-4d7d-9d3f-bace696d7dd3" + "38ca6ce2-7ddb-4d6f-9476-19e4d162690d" ], "Cache-Control": [ "no-cache" @@ -4080,25 +4025,25 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" + "14960" ], "x-ms-correlation-request-id": [ - "e167bc0f-8643-4006-aa57-f0b6d7c1176e" + "00626384-4929-4e4e-8761-16ce3504c463" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T101234Z:e167bc0f-8643-4006-aa57-f0b6d7c1176e" + "NORTHCENTRALUS:20160218T133710Z:00626384-4929-4e4e-8761-16ce3504c463" ], "Date": [ - "Tue, 16 Feb 2016 10:12:34 GMT" + "Thu, 18 Feb 2016 13:37:09 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190/extensions/AzureEnhancedMonitorForLinux?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQxOTAvZXh0ZW5zaW9ucy9BenVyZUVuaGFuY2VkTW9uaXRvckZvckxpbnV4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427/extensions/AzureEnhancedMonitorForLinux?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQ0MjcvZXh0ZW5zaW9ucy9BenVyZUVuaGFuY2VkTW9uaXRvckZvckxpbnV4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_DS2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.2\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.2\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"stocrptestps4190.hour.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"stocrptestps4190.minute.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps41902\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps41902.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"protectedSettings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"wad.key\",\r\n \"value\": \"rScet1r0e9FtH/vlbBAxc3Vo2azOLDyJh7T6ZNahDpnU+C89PaNfnFnox+jZcg0L4YwYcoy9h/cpylY//qEFeg==\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_DS2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.2\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.2\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"stocrptestps4427.hour.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"stocrptestps4427.minute.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps44272\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps44272.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"protectedSettings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"wad.key\",\r\n \"value\": \"gSQQlWUd96Jt7RsvKOROnNdIUNasI858O/RwojTFOFez5SjSogtSXtNHpAcxgge1dpWu+FxqU5vcNUYaqpy8NQ==\"\r\n }\r\n ]\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -4107,7 +4052,7 @@ "3205" ], "x-ms-client-request-id": [ - "a2944410-b7c4-45f9-ae7e-9233f7aacb79" + "22717fe1-0102-4f9e-b649-fc937a2b9c4b" ], "accept-language": [ "en-US" @@ -4116,7 +4061,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_DS2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.2\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.2\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"stocrptestps4190.hour.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"stocrptestps4190.minute.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps41902\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps41902.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190/extensions/AzureEnhancedMonitorForLinux\",\r\n \"name\": \"AzureEnhancedMonitorForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_DS2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.2\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.2\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"stocrptestps4427.hour.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"stocrptestps4427.minute.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps44272\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps44272.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427/extensions/AzureEnhancedMonitorForLinux\",\r\n \"name\": \"AzureEnhancedMonitorForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1912" @@ -4131,16 +4076,16 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/d49fa26f-5bbe-477a-a998-2ef0a598b5ea?api-version=2015-06-15" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/b24b3001-8d8f-4e1f-9bf5-4afcf425156d?api-version=2015-06-15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130995838280309262" ], "x-ms-request-id": [ - "d49fa26f-5bbe-477a-a998-2ef0a598b5ea" + "b24b3001-8d8f-4e1f-9bf5-4afcf425156d" ], "Cache-Control": [ "no-cache" @@ -4153,20 +4098,20 @@ "1197" ], "x-ms-correlation-request-id": [ - "f4bf6c8f-3f9d-4a87-821c-fc32fdc7b4db" + "c0ffaf69-5a4f-4cb2-8646-89f3ac8f8628" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T101237Z:f4bf6c8f-3f9d-4a87-821c-fc32fdc7b4db" + "NORTHCENTRALUS:20160218T133711Z:c0ffaf69-5a4f-4cb2-8646-89f3ac8f8628" ], "Date": [ - "Tue, 16 Feb 2016 10:12:36 GMT" + "Thu, 18 Feb 2016 13:37:11 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/d49fa26f-5bbe-477a-a998-2ef0a598b5ea?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZDQ5ZmEyNmYtNWJiZS00NzdhLWE5OTgtMmVmMGE1OThiNWVhP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/b24b3001-8d8f-4e1f-9bf5-4afcf425156d?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjI0YjMwMDEtOGQ4Zi00ZTFmLTliZjUtNGFmY2Y0MjUxNTZkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4174,7 +4119,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"d49fa26f-5bbe-477a-a998-2ef0a598b5ea\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T11:12:36.4644118+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"b24b3001-8d8f-4e1f-9bf5-4afcf425156d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-18T14:37:11.0977536+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -4192,10 +4137,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130995838280309262" ], "x-ms-request-id": [ - "f214f546-9f82-47d3-b89d-28e223c3f39d" + "5dbb708d-f34e-46b5-871d-63479b25d220" ], "Cache-Control": [ "no-cache" @@ -4205,23 +4150,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" + "14957" ], "x-ms-correlation-request-id": [ - "8395db3f-8c17-41d8-abc5-6fb232aedea9" + "7a3bda51-34da-4e79-844d-13468be1855b" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T101307Z:8395db3f-8c17-41d8-abc5-6fb232aedea9" + "NORTHCENTRALUS:20160218T133742Z:7a3bda51-34da-4e79-844d-13468be1855b" ], "Date": [ - "Tue, 16 Feb 2016 10:13:07 GMT" + "Thu, 18 Feb 2016 13:37:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/d49fa26f-5bbe-477a-a998-2ef0a598b5ea?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZDQ5ZmEyNmYtNWJiZS00NzdhLWE5OTgtMmVmMGE1OThiNWVhP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/b24b3001-8d8f-4e1f-9bf5-4afcf425156d?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjI0YjMwMDEtOGQ4Zi00ZTFmLTliZjUtNGFmY2Y0MjUxNTZkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4229,7 +4174,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"d49fa26f-5bbe-477a-a998-2ef0a598b5ea\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T11:12:36.4644118+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"b24b3001-8d8f-4e1f-9bf5-4afcf425156d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-18T14:37:11.0977536+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -4247,10 +4192,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130995838280309262" ], "x-ms-request-id": [ - "6f573d77-a1b4-4cd5-852d-02fce634fba5" + "d2cfb870-71ab-4b9f-896e-b32b13ffc5e8" ], "Cache-Control": [ "no-cache" @@ -4260,23 +4205,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" + "14955" ], "x-ms-correlation-request-id": [ - "4c448c8f-f7f3-4f2f-8ca7-8cec8d3a23d4" + "1037e929-797f-4595-b0a6-be07e3bc4f3b" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T101337Z:4c448c8f-f7f3-4f2f-8ca7-8cec8d3a23d4" + "NORTHCENTRALUS:20160218T133812Z:1037e929-797f-4595-b0a6-be07e3bc4f3b" ], "Date": [ - "Tue, 16 Feb 2016 10:13:36 GMT" + "Thu, 18 Feb 2016 13:38:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/d49fa26f-5bbe-477a-a998-2ef0a598b5ea?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZDQ5ZmEyNmYtNWJiZS00NzdhLWE5OTgtMmVmMGE1OThiNWVhP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/b24b3001-8d8f-4e1f-9bf5-4afcf425156d?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjI0YjMwMDEtOGQ4Zi00ZTFmLTliZjUtNGFmY2Y0MjUxNTZkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4284,7 +4229,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"d49fa26f-5bbe-477a-a998-2ef0a598b5ea\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-02-16T11:12:36.4644118+01:00\",\r\n \"endTime\": \"2016-02-16T11:13:53.7612765+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"b24b3001-8d8f-4e1f-9bf5-4afcf425156d\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-02-18T14:37:11.0977536+01:00\",\r\n \"endTime\": \"2016-02-18T14:38:14.7375694+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "191" @@ -4302,10 +4247,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130995838280309262" ], "x-ms-request-id": [ - "4942caa3-3ba9-45dc-870f-11cab20fe62e" + "14eff503-caab-4cbe-bd12-d1af27d5342c" ], "Cache-Control": [ "no-cache" @@ -4315,23 +4260,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14970" + "14954" ], "x-ms-correlation-request-id": [ - "0deb294d-7ba8-4b3a-8665-4b5bd1f9ecf2" + "fb1fc756-f53d-4cbc-ab18-e84ac4bc5849" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T101407Z:0deb294d-7ba8-4b3a-8665-4b5bd1f9ecf2" + "NORTHCENTRALUS:20160218T133842Z:fb1fc756-f53d-4cbc-ab18-e84ac4bc5849" ], "Date": [ - "Tue, 16 Feb 2016 10:14:07 GMT" + "Thu, 18 Feb 2016 13:38:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190/extensions/AzureEnhancedMonitorForLinux?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQxOTAvZXh0ZW5zaW9ucy9BenVyZUVuaGFuY2VkTW9uaXRvckZvckxpbnV4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427/extensions/AzureEnhancedMonitorForLinux?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQ0MjcvZXh0ZW5zaW9ucy9BenVyZUVuaGFuY2VkTW9uaXRvckZvckxpbnV4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4339,7 +4284,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_DS2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.2\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.2\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"stocrptestps4190.hour.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"stocrptestps4190.minute.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps41902\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps41902.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190/extensions/AzureEnhancedMonitorForLinux\",\r\n \"name\": \"AzureEnhancedMonitorForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_DS2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.2\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.2\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"stocrptestps4427.hour.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"stocrptestps4427.minute.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps44272\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps44272.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427/extensions/AzureEnhancedMonitorForLinux\",\r\n \"name\": \"AzureEnhancedMonitorForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1913" @@ -4357,10 +4302,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130995838280309262" ], "x-ms-request-id": [ - "7dbbbbc7-12e0-4754-b54b-870c9f2afbe0" + "a4366648-cf43-4493-941b-f59165826186" ], "Cache-Control": [ "no-cache" @@ -4370,28 +4315,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14969" + "14953" ], "x-ms-correlation-request-id": [ - "c47f2465-a74b-4e69-9be9-3737288b8158" + "19567665-2f43-47c9-b8b4-bb7340b2c331" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T101407Z:c47f2465-a74b-4e69-9be9-3737288b8158" + "NORTHCENTRALUS:20160218T133842Z:19567665-2f43-47c9-b8b4-bb7340b2c331" ], "Date": [ - "Tue, 16 Feb 2016 10:14:07 GMT" + "Thu, 18 Feb 2016 13:38:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190/extensions/AzureEnhancedMonitorForLinux?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQxOTAvZXh0ZW5zaW9ucy9BenVyZUVuaGFuY2VkTW9uaXRvckZvckxpbnV4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427/extensions/AzureEnhancedMonitorForLinux?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQ0MjcvZXh0ZW5zaW9ucy9BenVyZUVuaGFuY2VkTW9uaXRvckZvckxpbnV4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ebd41102-0583-4d38-804d-e7f9d6818c6c" + "5ae91200-2c88-4831-8c80-b48ffba12378" ], "accept-language": [ "en-US" @@ -4400,7 +4345,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_DS2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.2\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.2\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"stocrptestps4190.hour.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"stocrptestps4190.minute.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps41902\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps41902.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190/extensions/AzureEnhancedMonitorForLinux\",\r\n \"name\": \"AzureEnhancedMonitorForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_DS2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.2\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.2\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"stocrptestps4427.hour.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"stocrptestps4427.minute.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps44272\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps44272.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427/extensions/AzureEnhancedMonitorForLinux\",\r\n \"name\": \"AzureEnhancedMonitorForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1913" @@ -4418,10 +4363,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130995838280309262" ], "x-ms-request-id": [ - "5aaa8f55-3c28-465e-a044-056ea67a08af" + "bcbbdeff-8f47-438a-9375-ada58f83070c" ], "Cache-Control": [ "no-cache" @@ -4431,28 +4376,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14967" + "14951" ], "x-ms-correlation-request-id": [ - "5126e977-5314-434e-8ba1-73440b03253c" + "27a906b8-a7e3-4283-9e04-29c17900e6e2" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T101408Z:5126e977-5314-434e-8ba1-73440b03253c" + "NORTHCENTRALUS:20160218T133843Z:27a906b8-a7e3-4283-9e04-29c17900e6e2" ], "Date": [ - "Tue, 16 Feb 2016 10:14:07 GMT" + "Thu, 18 Feb 2016 13:38:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps4190/providers/Microsoft.Compute/virtualMachines/vmcrptestps4190/extensions/AzureEnhancedMonitorForLinux?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQxOTAvZXh0ZW5zaW9ucy9BenVyZUVuaGFuY2VkTW9uaXRvckZvckxpbnV4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427/extensions/AzureEnhancedMonitorForLinux?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQ0MjcvZXh0ZW5zaW9ucy9BenVyZUVuaGFuY2VkTW9uaXRvckZvckxpbnV4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "94fa37d5-e10d-4d4b-9842-88c19013032b" + "f6931240-7d66-4283-a34f-b28ec5bd655d" ], "accept-language": [ "en-US" @@ -4473,22 +4418,22 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/939ed62b-f3ce-4b7e-8528-aeb97b9c70de?api-version=2015-06-15" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/4a8ded29-1f55-406f-b0a8-65a9950761a8?api-version=2015-06-15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130995838280309262" ], "x-ms-request-id": [ - "939ed62b-f3ce-4b7e-8528-aeb97b9c70de" + "4a8ded29-1f55-406f-b0a8-65a9950761a8" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/939ed62b-f3ce-4b7e-8528-aeb97b9c70de?monitor=true&api-version=2015-06-15" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/4a8ded29-1f55-406f-b0a8-65a9950761a8?monitor=true&api-version=2015-06-15" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -4498,20 +4443,20 @@ "1196" ], "x-ms-correlation-request-id": [ - "72a2a2b3-8d3b-4547-9c58-1c02340751f6" + "0be9e049-17e1-4d44-a8d0-0ef3b8350446" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T101416Z:72a2a2b3-8d3b-4547-9c58-1c02340751f6" + "NORTHCENTRALUS:20160218T133901Z:0be9e049-17e1-4d44-a8d0-0ef3b8350446" ], "Date": [ - "Tue, 16 Feb 2016 10:14:15 GMT" + "Thu, 18 Feb 2016 13:39:01 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/939ed62b-f3ce-4b7e-8528-aeb97b9c70de?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOTM5ZWQ2MmItZjNjZS00YjdlLTg1MjgtYWViOTdiOWM3MGRlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/4a8ded29-1f55-406f-b0a8-65a9950761a8?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNGE4ZGVkMjktMWY1NS00MDZmLWIwYTgtNjVhOTk1MDc2MWE4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4519,7 +4464,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"939ed62b-f3ce-4b7e-8528-aeb97b9c70de\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T11:14:16.2612772+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"4a8ded29-1f55-406f-b0a8-65a9950761a8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-18T14:39:01.3619733+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -4537,10 +4482,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130995838280309262" ], "x-ms-request-id": [ - "e6b66b56-0e6f-445d-9ea0-36fc92eb97b8" + "5f11d6fe-8dfb-4b1e-9735-706903619a23" ], "Cache-Control": [ "no-cache" @@ -4550,23 +4495,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14962" + "14947" ], "x-ms-correlation-request-id": [ - "b475dd81-4da9-47c4-897b-8610b34399ef" + "8e398d88-d791-41a0-9e1a-42ccb0b0c18a" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T101446Z:b475dd81-4da9-47c4-897b-8610b34399ef" + "NORTHCENTRALUS:20160218T133931Z:8e398d88-d791-41a0-9e1a-42ccb0b0c18a" ], "Date": [ - "Tue, 16 Feb 2016 10:14:46 GMT" + "Thu, 18 Feb 2016 13:39:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/939ed62b-f3ce-4b7e-8528-aeb97b9c70de?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOTM5ZWQ2MmItZjNjZS00YjdlLTg1MjgtYWViOTdiOWM3MGRlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/4a8ded29-1f55-406f-b0a8-65a9950761a8?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNGE4ZGVkMjktMWY1NS00MDZmLWIwYTgtNjVhOTk1MDc2MWE4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4574,7 +4519,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"939ed62b-f3ce-4b7e-8528-aeb97b9c70de\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T11:14:16.2612772+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"4a8ded29-1f55-406f-b0a8-65a9950761a8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-18T14:39:01.3619733+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -4592,10 +4537,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130995838280309262" ], "x-ms-request-id": [ - "94a0fd23-1189-4c3f-9777-c7407a70dc03" + "d3752ab3-1052-4af4-bd2c-8fbbed69edb7" ], "Cache-Control": [ "no-cache" @@ -4605,23 +4550,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14964" + "14966" ], "x-ms-correlation-request-id": [ - "6b41a53e-914f-4d87-86fd-981290632611" + "24dd8dcf-0c62-40b3-869d-aeac77100bb4" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T101517Z:6b41a53e-914f-4d87-86fd-981290632611" + "NORTHCENTRALUS:20160218T134002Z:24dd8dcf-0c62-40b3-869d-aeac77100bb4" ], "Date": [ - "Tue, 16 Feb 2016 10:15:16 GMT" + "Thu, 18 Feb 2016 13:40:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/939ed62b-f3ce-4b7e-8528-aeb97b9c70de?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOTM5ZWQ2MmItZjNjZS00YjdlLTg1MjgtYWViOTdiOWM3MGRlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/4a8ded29-1f55-406f-b0a8-65a9950761a8?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNGE4ZGVkMjktMWY1NS00MDZmLWIwYTgtNjVhOTk1MDc2MWE4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4629,7 +4574,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"939ed62b-f3ce-4b7e-8528-aeb97b9c70de\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-02-16T11:14:16.2612772+01:00\",\r\n \"endTime\": \"2016-02-16T11:15:23.3081558+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"4a8ded29-1f55-406f-b0a8-65a9950761a8\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-02-18T14:39:01.3619733+01:00\",\r\n \"endTime\": \"2016-02-18T14:40:15.2672841+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "191" @@ -4647,10 +4592,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130995838280309262" ], "x-ms-request-id": [ - "3e284eb5-eeec-4331-9fca-6d78a2aea898" + "e6e6d5d2-ff91-40f2-91a5-7ad735bb3c8b" ], "Cache-Control": [ "no-cache" @@ -4660,23 +4605,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14962" + "14965" ], "x-ms-correlation-request-id": [ - "87de1894-7eed-4d99-b49e-fcef87c4c45e" + "96f62403-196c-4512-8afb-0d596f8b33a4" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T101547Z:87de1894-7eed-4d99-b49e-fcef87c4c45e" + "NORTHCENTRALUS:20160218T134032Z:96f62403-196c-4512-8afb-0d596f8b33a4" ], "Date": [ - "Tue, 16 Feb 2016 10:15:47 GMT" + "Thu, 18 Feb 2016 13:40:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourcegroups/crptestps4190?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczQxOTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourcegroups/crptestps4427?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczQ0Mjc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -4699,16 +4644,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-request-id": [ - "a0df5431-17a9-416a-bb80-d9e92879b7d4" + "9e26c167-8b6b-45d1-8ece-3290be5fc90f" ], "x-ms-correlation-request-id": [ - "a0df5431-17a9-416a-bb80-d9e92879b7d4" + "9e26c167-8b6b-45d1-8ece-3290be5fc90f" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T101548Z:a0df5431-17a9-416a-bb80-d9e92879b7d4" + "NORTHCENTRALUS:20160218T134033Z:9e26c167-8b6b-45d1-8ece-3290be5fc90f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4717,17 +4662,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 10:15:47 GMT" + "Thu, 18 Feb 2016 13:40:33 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTkwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTkwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTVRrd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRJM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4753,16 +4698,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14988" ], "x-ms-request-id": [ - "db55fd08-9827-4290-84d8-f0b0dbf2e279" + "2e4aac41-4522-4c3c-a86d-89973c7aad5b" ], "x-ms-correlation-request-id": [ - "db55fd08-9827-4290-84d8-f0b0dbf2e279" + "2e4aac41-4522-4c3c-a86d-89973c7aad5b" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T101548Z:db55fd08-9827-4290-84d8-f0b0dbf2e279" + "NORTHCENTRALUS:20160218T134034Z:2e4aac41-4522-4c3c-a86d-89973c7aad5b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4771,17 +4716,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 10:15:47 GMT" + "Thu, 18 Feb 2016 13:40:33 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTkwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTkwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTVRrd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRJM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4807,16 +4752,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14987" ], "x-ms-request-id": [ - "49025614-7cbb-4019-8964-5f960071877c" + "dcc7d673-e9b9-4a3b-b029-50617d0ea5db" ], "x-ms-correlation-request-id": [ - "49025614-7cbb-4019-8964-5f960071877c" + "dcc7d673-e9b9-4a3b-b029-50617d0ea5db" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T101603Z:49025614-7cbb-4019-8964-5f960071877c" + "NORTHCENTRALUS:20160218T134049Z:dcc7d673-e9b9-4a3b-b029-50617d0ea5db" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4825,17 +4770,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 10:16:03 GMT" + "Thu, 18 Feb 2016 13:40:48 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTkwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTkwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTVRrd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRJM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4861,16 +4806,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14986" ], "x-ms-request-id": [ - "8f9a7f62-1c85-4f4c-9a70-35a1c18f2038" + "2f534124-8428-43bb-b94e-4170806fe663" ], "x-ms-correlation-request-id": [ - "8f9a7f62-1c85-4f4c-9a70-35a1c18f2038" + "2f534124-8428-43bb-b94e-4170806fe663" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T101618Z:8f9a7f62-1c85-4f4c-9a70-35a1c18f2038" + "NORTHCENTRALUS:20160218T134104Z:2f534124-8428-43bb-b94e-4170806fe663" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4879,17 +4824,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 10:16:18 GMT" + "Thu, 18 Feb 2016 13:41:04 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTkwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTkwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTVRrd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRJM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4915,16 +4860,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14985" ], "x-ms-request-id": [ - "cf05a9a7-75ff-4ea2-9147-a528979c9c1d" + "57b8878e-7577-4728-8689-3ff00c1acadf" ], "x-ms-correlation-request-id": [ - "cf05a9a7-75ff-4ea2-9147-a528979c9c1d" + "57b8878e-7577-4728-8689-3ff00c1acadf" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T101634Z:cf05a9a7-75ff-4ea2-9147-a528979c9c1d" + "NORTHCENTRALUS:20160218T134119Z:57b8878e-7577-4728-8689-3ff00c1acadf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4933,17 +4878,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 10:16:33 GMT" + "Thu, 18 Feb 2016 13:41:18 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTkwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTkwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTVRrd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRJM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4969,16 +4914,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14984" ], "x-ms-request-id": [ - "f8821ecf-5aba-4347-8340-eb8950a74938" + "d9741706-679a-4f14-a986-6acb05efe66c" ], "x-ms-correlation-request-id": [ - "f8821ecf-5aba-4347-8340-eb8950a74938" + "d9741706-679a-4f14-a986-6acb05efe66c" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T101649Z:f8821ecf-5aba-4347-8340-eb8950a74938" + "NORTHCENTRALUS:20160218T134134Z:d9741706-679a-4f14-a986-6acb05efe66c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4987,17 +4932,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 10:16:49 GMT" + "Thu, 18 Feb 2016 13:41:34 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTkwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTkwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTVRrd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRJM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5023,16 +4968,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14983" ], "x-ms-request-id": [ - "94ba4154-a9db-4a66-a7ee-7ecc6d560098" + "ab0bcfbc-8ba5-4d15-beaa-9624c0bbaa6f" ], "x-ms-correlation-request-id": [ - "94ba4154-a9db-4a66-a7ee-7ecc6d560098" + "ab0bcfbc-8ba5-4d15-beaa-9624c0bbaa6f" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T101704Z:94ba4154-a9db-4a66-a7ee-7ecc6d560098" + "NORTHCENTRALUS:20160218T134149Z:ab0bcfbc-8ba5-4d15-beaa-9624c0bbaa6f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5041,17 +4986,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 10:17:03 GMT" + "Thu, 18 Feb 2016 13:41:49 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTkwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTkwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTVRrd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRJM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5077,16 +5022,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14982" ], "x-ms-request-id": [ - "3d98ff7d-fe02-483e-989a-bc6000a1eff0" + "1adb4a07-65fd-4a1e-b922-5d38c00afe0c" ], "x-ms-correlation-request-id": [ - "3d98ff7d-fe02-483e-989a-bc6000a1eff0" + "1adb4a07-65fd-4a1e-b922-5d38c00afe0c" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T101719Z:3d98ff7d-fe02-483e-989a-bc6000a1eff0" + "NORTHCENTRALUS:20160218T134205Z:1adb4a07-65fd-4a1e-b922-5d38c00afe0c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5095,17 +5040,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 10:17:18 GMT" + "Thu, 18 Feb 2016 13:42:04 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTkwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTkwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTVRrd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRJM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5131,16 +5076,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14981" ], "x-ms-request-id": [ - "a9badeb5-8db2-40bc-b13a-09e5b5c36a50" + "3ef82a41-10c7-4951-b2f5-5f9536aa506c" ], "x-ms-correlation-request-id": [ - "a9badeb5-8db2-40bc-b13a-09e5b5c36a50" + "3ef82a41-10c7-4951-b2f5-5f9536aa506c" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T101734Z:a9badeb5-8db2-40bc-b13a-09e5b5c36a50" + "NORTHCENTRALUS:20160218T134220Z:3ef82a41-10c7-4951-b2f5-5f9536aa506c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5149,17 +5094,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 10:17:34 GMT" + "Thu, 18 Feb 2016 13:42:19 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTkwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTkwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTVRrd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRJM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5185,16 +5130,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14980" ], "x-ms-request-id": [ - "dd1d408e-c611-4766-931b-1fa95bb08cd2" + "fe539b5e-3329-4bbc-92d6-b7f9f0e1f664" ], "x-ms-correlation-request-id": [ - "dd1d408e-c611-4766-931b-1fa95bb08cd2" + "fe539b5e-3329-4bbc-92d6-b7f9f0e1f664" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T101750Z:dd1d408e-c611-4766-931b-1fa95bb08cd2" + "NORTHCENTRALUS:20160218T134235Z:fe539b5e-3329-4bbc-92d6-b7f9f0e1f664" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5203,17 +5148,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 10:17:50 GMT" + "Thu, 18 Feb 2016 13:42:34 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTkwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTkwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTVRrd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRJM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5242,13 +5187,13 @@ "14978" ], "x-ms-request-id": [ - "0bc07d2f-ae45-42b6-b6b9-c1a85c301900" + "f515e0b9-35d4-41d3-889d-96e0ccfd68d6" ], "x-ms-correlation-request-id": [ - "0bc07d2f-ae45-42b6-b6b9-c1a85c301900" + "f515e0b9-35d4-41d3-889d-96e0ccfd68d6" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T101805Z:0bc07d2f-ae45-42b6-b6b9-c1a85c301900" + "NORTHCENTRALUS:20160218T134250Z:f515e0b9-35d4-41d3-889d-96e0ccfd68d6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5257,17 +5202,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 10:18:04 GMT" + "Thu, 18 Feb 2016 13:42:49 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTkwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTkwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTVRrd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRJM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5296,13 +5241,13 @@ "14977" ], "x-ms-request-id": [ - "aaf42e1e-ee49-4fdd-9c25-2cccf7bc75e8" + "8f50b6df-cf00-40f4-ba1b-fec7b2efccbb" ], "x-ms-correlation-request-id": [ - "aaf42e1e-ee49-4fdd-9c25-2cccf7bc75e8" + "8f50b6df-cf00-40f4-ba1b-fec7b2efccbb" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T101820Z:aaf42e1e-ee49-4fdd-9c25-2cccf7bc75e8" + "NORTHCENTRALUS:20160218T134305Z:8f50b6df-cf00-40f4-ba1b-fec7b2efccbb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5311,17 +5256,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 10:18:19 GMT" + "Thu, 18 Feb 2016 13:43:05 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTkwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTkwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTVRrd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRJM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5350,13 +5295,13 @@ "14976" ], "x-ms-request-id": [ - "4b32cb4a-e039-4563-8855-6c016c1741b7" + "dbcb8a27-9285-4055-aeca-1e8edb22cf9f" ], "x-ms-correlation-request-id": [ - "4b32cb4a-e039-4563-8855-6c016c1741b7" + "dbcb8a27-9285-4055-aeca-1e8edb22cf9f" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T101835Z:4b32cb4a-e039-4563-8855-6c016c1741b7" + "NORTHCENTRALUS:20160218T134321Z:dbcb8a27-9285-4055-aeca-1e8edb22cf9f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5365,17 +5310,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 10:18:35 GMT" + "Thu, 18 Feb 2016 13:43:20 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTkwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTkwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTVRrd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRJM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5404,13 +5349,13 @@ "14975" ], "x-ms-request-id": [ - "ba2ba2a0-1631-4eb9-9630-94f57cd4ed58" + "4a1fd039-969d-4d7c-8a52-0d5b7d283444" ], "x-ms-correlation-request-id": [ - "ba2ba2a0-1631-4eb9-9630-94f57cd4ed58" + "4a1fd039-969d-4d7c-8a52-0d5b7d283444" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T101850Z:ba2ba2a0-1631-4eb9-9630-94f57cd4ed58" + "NORTHCENTRALUS:20160218T134336Z:4a1fd039-969d-4d7c-8a52-0d5b7d283444" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5419,17 +5364,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 10:18:50 GMT" + "Thu, 18 Feb 2016 13:43:35 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTkwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTkwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTVRrd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRJM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5458,13 +5403,13 @@ "14974" ], "x-ms-request-id": [ - "0bbcaaf3-73c4-4106-8287-f675fb2cb29e" + "19a6b86d-810d-4df2-b93f-a71fe637c6f0" ], "x-ms-correlation-request-id": [ - "0bbcaaf3-73c4-4106-8287-f675fb2cb29e" + "19a6b86d-810d-4df2-b93f-a71fe637c6f0" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T101905Z:0bbcaaf3-73c4-4106-8287-f675fb2cb29e" + "NORTHCENTRALUS:20160218T134351Z:19a6b86d-810d-4df2-b93f-a71fe637c6f0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5473,17 +5418,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 10:19:05 GMT" + "Thu, 18 Feb 2016 13:43:51 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTkwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTkwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTVRrd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRJM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5512,13 +5457,13 @@ "14973" ], "x-ms-request-id": [ - "3e5ecead-a1c7-48e1-a85e-9af194ae4f0d" + "21d4f280-4edd-4176-87c3-b59b9dc8fac5" ], "x-ms-correlation-request-id": [ - "3e5ecead-a1c7-48e1-a85e-9af194ae4f0d" + "21d4f280-4edd-4176-87c3-b59b9dc8fac5" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T101921Z:3e5ecead-a1c7-48e1-a85e-9af194ae4f0d" + "NORTHCENTRALUS:20160218T134406Z:21d4f280-4edd-4176-87c3-b59b9dc8fac5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5527,17 +5472,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 10:19:21 GMT" + "Thu, 18 Feb 2016 13:44:05 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTkwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTkwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTVRrd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRJM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5566,13 +5511,13 @@ "14972" ], "x-ms-request-id": [ - "c060b95f-82b9-4b88-8abc-bb3ecb54cf22" + "761a1c9a-3463-4ca1-bee9-2b2e2b74a1ce" ], "x-ms-correlation-request-id": [ - "c060b95f-82b9-4b88-8abc-bb3ecb54cf22" + "761a1c9a-3463-4ca1-bee9-2b2e2b74a1ce" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T101936Z:c060b95f-82b9-4b88-8abc-bb3ecb54cf22" + "NORTHCENTRALUS:20160218T134421Z:761a1c9a-3463-4ca1-bee9-2b2e2b74a1ce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5581,17 +5526,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 10:19:35 GMT" + "Thu, 18 Feb 2016 13:44:21 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTkwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTkwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTVRrd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRJM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5620,13 +5565,13 @@ "14971" ], "x-ms-request-id": [ - "6a8724b2-3f68-4c16-ae44-7c89f75ae438" + "ae2efe00-6670-4c56-9333-ce80e957a8c6" ], "x-ms-correlation-request-id": [ - "6a8724b2-3f68-4c16-ae44-7c89f75ae438" + "ae2efe00-6670-4c56-9333-ce80e957a8c6" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T101951Z:6a8724b2-3f68-4c16-ae44-7c89f75ae438" + "NORTHCENTRALUS:20160218T134436Z:ae2efe00-6670-4c56-9333-ce80e957a8c6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5635,17 +5580,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 10:19:51 GMT" + "Thu, 18 Feb 2016 13:44:36 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTkwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTkwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTVRrd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRJM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5674,13 +5619,13 @@ "14970" ], "x-ms-request-id": [ - "7084e21c-bb14-4246-b4f9-0103ef725b6d" + "2e1ba58f-f92a-4931-9671-ac4aa84fc435" ], "x-ms-correlation-request-id": [ - "7084e21c-bb14-4246-b4f9-0103ef725b6d" + "2e1ba58f-f92a-4931-9671-ac4aa84fc435" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T102006Z:7084e21c-bb14-4246-b4f9-0103ef725b6d" + "NORTHCENTRALUS:20160218T134452Z:2e1ba58f-f92a-4931-9671-ac4aa84fc435" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5689,17 +5634,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 10:20:06 GMT" + "Thu, 18 Feb 2016 13:44:52 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTkwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0MTkwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTVRrd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRJM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5721,17 +5666,449 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "15" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "14969" ], "x-ms-request-id": [ - "f78bcd90-c8db-420e-84b4-33bff73c5c0a" + "ff22e4ae-2b7a-4a1e-90ac-e74628ec32e4" + ], + "x-ms-correlation-request-id": [ + "ff22e4ae-2b7a-4a1e-90ac-e74628ec32e4" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160218T134507Z:ff22e4ae-2b7a-4a1e-90ac-e74628ec32e4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 18 Feb 2016 13:45:07 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRJM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14968" + ], + "x-ms-request-id": [ + "c0550e2a-3901-4a6b-8021-d3a3906af8ab" + ], + "x-ms-correlation-request-id": [ + "c0550e2a-3901-4a6b-8021-d3a3906af8ab" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160218T134523Z:c0550e2a-3901-4a6b-8021-d3a3906af8ab" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 18 Feb 2016 13:45:22 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRJM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14967" + ], + "x-ms-request-id": [ + "ae7c9cc1-6d35-421c-a5f1-e3a32ea04150" + ], + "x-ms-correlation-request-id": [ + "ae7c9cc1-6d35-421c-a5f1-e3a32ea04150" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160218T134538Z:ae7c9cc1-6d35-421c-a5f1-e3a32ea04150" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 18 Feb 2016 13:45:38 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRJM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14966" + ], + "x-ms-request-id": [ + "e4936daf-bdb6-4bd3-96e3-c83eaabfba0e" + ], + "x-ms-correlation-request-id": [ + "e4936daf-bdb6-4bd3-96e3-c83eaabfba0e" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160218T134553Z:e4936daf-bdb6-4bd3-96e3-c83eaabfba0e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 18 Feb 2016 13:45:53 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRJM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14965" + ], + "x-ms-request-id": [ + "7d2a493e-022c-4b25-9b80-a64606075c2d" + ], + "x-ms-correlation-request-id": [ + "7d2a493e-022c-4b25-9b80-a64606075c2d" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160218T134608Z:7d2a493e-022c-4b25-9b80-a64606075c2d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 18 Feb 2016 13:46:08 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRJM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14964" + ], + "x-ms-request-id": [ + "f28e882b-a714-4362-a80f-ef778cec2f57" + ], + "x-ms-correlation-request-id": [ + "f28e882b-a714-4362-a80f-ef778cec2f57" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160218T134624Z:f28e882b-a714-4362-a80f-ef778cec2f57" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 18 Feb 2016 13:46:23 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRJM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14963" + ], + "x-ms-request-id": [ + "5ae70b2a-0ab0-4f2b-b2d4-6bd100f80dad" + ], + "x-ms-correlation-request-id": [ + "5ae70b2a-0ab0-4f2b-b2d4-6bd100f80dad" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160218T134639Z:5ae70b2a-0ab0-4f2b-b2d4-6bd100f80dad" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 18 Feb 2016 13:46:38 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRJM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14962" + ], + "x-ms-request-id": [ + "ce2494d9-8715-495b-8ce2-6537b99d8f17" + ], + "x-ms-correlation-request-id": [ + "ce2494d9-8715-495b-8ce2-6537b99d8f17" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160218T134654Z:ce2494d9-8715-495b-8ce2-6537b99d8f17" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 18 Feb 2016 13:46:53 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRJM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ + "14961" + ], + "x-ms-request-id": [ + "908c12a5-a4d7-40a1-b83f-82011c187f2f" ], "x-ms-correlation-request-id": [ - "f78bcd90-c8db-420e-84b4-33bff73c5c0a" + "908c12a5-a4d7-40a1-b83f-82011c187f2f" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T102021Z:f78bcd90-c8db-420e-84b4-33bff73c5c0a" + "NORTHCENTRALUS:20160218T134709Z:908c12a5-a4d7-40a1-b83f-82011c187f2f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5740,7 +6117,7 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 10:20:21 GMT" + "Thu, 18 Feb 2016 13:47:09 GMT" ] }, "StatusCode": 200 @@ -5748,10 +6125,10 @@ ], "Names": { "Test-AEMExtensionAdvancedLinux": [ - "crptestps4190" + "crptestps4427" ] }, "Variables": { - "SubscriptionId": "acf8322c-ac5c-4cbd-8907-5f5920784774" + "SubscriptionId": "e663cc2d-722b-4be1-b636-bbd9e4c60fd9" } } \ No newline at end of file diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/AEMHelper.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/AEMHelper.cs index 0c716a64a2c7..2f005cfa43c2 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/AEMHelper.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/AEMHelper.cs @@ -1,5 +1,5 @@ -using Microsoft.Azure.Commands.Compute.StorageServices; -using Microsoft.Azure.Common.Authentication.Models; +using Microsoft.Azure.Commands.Common.Authentication.Models; +using Microsoft.Azure.Commands.Compute.StorageServices; using Microsoft.Azure.Management.Compute.Models; using Microsoft.Azure.Management.Storage; using Microsoft.Azure.Management.Storage.Models; @@ -92,6 +92,7 @@ internal bool IsPremiumStorageAccount(string accountName) internal int? GetDiskSizeGbFromBlobUri(string sBlobUri) { + var storageClient = new StorageManagementClient(); var blobMatch = Regex.Match(sBlobUri, "https?://(\\S*?)\\..*?/(.*)"); if (!blobMatch.Success) { @@ -103,22 +104,36 @@ internal bool IsPremiumStorageAccount(string accountName) BlobUri blobUri; if (BlobUri.TryParseUri(new Uri(sBlobUri), out blobUri)) { - var account = this.GetStorageAccountFromCache(accountName); - var resGroupName = this.GetResourceGroupFromId(account.Id); - StorageCredentialsFactory storageCredentialsFactory = new StorageCredentialsFactory(resGroupName, - this._StorageClient, this._Subscription); - StorageCredentials sc = storageCredentialsFactory.Create(blobUri); - CloudStorageAccount cloudStorageAccount = new CloudStorageAccount(sc, true); - CloudBlobClient blobClient = cloudStorageAccount.CreateCloudBlobClient(); - CloudBlobContainer blobContainer = blobClient.GetContainerReference(blobUri.BlobContainerName); - var cloudref = blobContainer.GetBlobReferenceFromServer(blobUri.BlobName); - - //var key = this.GetAzureStorageKeyFromCache(accountName); - //var account = this.GetStorageAccountFromCache(accountName); - //var credentials = new StorageCredentials(account.Name.ToLower(), key); - //var client = new CloudBlobClient(account.PrimaryEndpoints.Blob, credentials); - //var cloudref = blobClient.GetBlobReferenceFromServer(sc.TransformUri(new Uri(sBlobUri))); - return (int?)(cloudref.Properties.Length / (1024 * 1024 * 1024)); + try + { + var account = this.GetStorageAccountFromCache(accountName); + var resGroupName = this.GetResourceGroupFromId(account.Id); + StorageCredentialsFactory storageCredentialsFactory = new StorageCredentialsFactory(resGroupName, + this._StorageClient, this._Subscription); + StorageCredentials sc = storageCredentialsFactory.Create(blobUri); + CloudStorageAccount cloudStorageAccount = new CloudStorageAccount(sc, true); + CloudBlobClient blobClient = cloudStorageAccount.CreateCloudBlobClient(); + CloudBlobContainer blobContainer = blobClient.GetContainerReference(blobUri.BlobContainerName); + var cloudBlob = blobContainer.GetPageBlobReference(blobUri.BlobName); + var sasToken = cloudBlob.GetSharedAccessSignature( + new SharedAccessBlobPolicy() + { + SharedAccessExpiryTime = DateTime.UtcNow.AddHours(24.0), + Permissions = SharedAccessBlobPermissions.Read + }); + cloudBlob.FetchAttributes(); + + //var key = this.GetAzureStorageKeyFromCache(accountName); + //var account = this.GetStorageAccountFromCache(accountName); + //var credentials = new StorageCredentials(account.Name.ToLower(), key); + //var client = new CloudBlobClient(account.PrimaryEndpoints.Blob, credentials); + //var cloudref = blobClient.GetBlobReferenceFromServer(sc.TransformUri(new Uri(sBlobUri))); + return (int?)(cloudBlob.Properties.Length / (1024 * 1024 * 1024)); + } + catch (Exception) + { + throw; + } } return null; diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/RemoveAzureRmVMAEMExtension.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/RemoveAzureRmVMAEMExtension.cs index 6dd505f7f128..403ace346b79 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/RemoveAzureRmVMAEMExtension.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/RemoveAzureRmVMAEMExtension.cs @@ -8,9 +8,9 @@ using System.Management.Automation; using Microsoft.Azure.Management.Compute; using Microsoft.Azure.Management.Storage; -using Microsoft.Azure.Common.Authentication; using Microsoft.Azure.Commands.Compute.Extension.AEM; -using Microsoft.Azure.Common.Authentication.Models; +using Microsoft.Azure.Commands.Common.Authentication; +using Microsoft.Azure.Commands.Common.Authentication.Models; namespace Microsoft.Azure.Commands.Compute { diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/SetAzureRmVMAEMExtension.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/SetAzureRmVMAEMExtension.cs index 866de2d6158e..699fc71f536e 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/SetAzureRmVMAEMExtension.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/SetAzureRmVMAEMExtension.cs @@ -25,8 +25,6 @@ using Microsoft.Azure.Management.Storage.Models; using Newtonsoft.Json; using Microsoft.Azure.Management.Storage; -using Microsoft.Azure.Common.Authentication; -using Microsoft.Azure.Common.Authentication.Models; using System.Text.RegularExpressions; using System.Net; using Microsoft.WindowsAzure.Commands.Common.Storage; @@ -36,6 +34,8 @@ using Microsoft.WindowsAzure.Storage.Shared.Protocol; using Microsoft.Azure.Commands.Compute.Extension.AEM; using AutoMapper; +using Microsoft.Azure.Commands.Common.Authentication; +using Microsoft.Azure.Commands.Common.Authentication.Models; namespace Microsoft.Azure.Commands.Compute { diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/TestAzureRmVMAEMExtension.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/TestAzureRmVMAEMExtension.cs index a8727862114a..6d3948155f02 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/TestAzureRmVMAEMExtension.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/TestAzureRmVMAEMExtension.cs @@ -12,10 +12,10 @@ using System.Text.RegularExpressions; using Newtonsoft.Json.Linq; using Microsoft.Azure.Management.Storage; -using Microsoft.Azure.Common.Authentication; -using Microsoft.Azure.Common.Authentication.Models; using Microsoft.Azure.Management.Compute.Models; using AutoMapper; +using Microsoft.Azure.Commands.Common.Authentication; +using Microsoft.Azure.Commands.Common.Authentication.Models; namespace Microsoft.Azure.Commands.Compute { From 4a4aed7873c08322f1dcb86e826e128753550507 Mon Sep 17 00:00:00 2001 From: vivsriaus Date: Fri, 19 Feb 2016 11:16:48 -0800 Subject: [PATCH 3/7] Increase sleep to 5 seconds when waiting for deployment to complete --- .../Commands.Resources/Models.ResourceGroups/ResourceClient.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ResourceManager/Resources/Commands.Resources/Models.ResourceGroups/ResourceClient.cs b/src/ResourceManager/Resources/Commands.Resources/Models.ResourceGroups/ResourceClient.cs index 03f700dccda0..bea91144b777 100644 --- a/src/ResourceManager/Resources/Commands.Resources/Models.ResourceGroups/ResourceClient.cs +++ b/src/ResourceManager/Resources/Commands.Resources/Models.ResourceGroups/ResourceClient.cs @@ -321,7 +321,7 @@ private DeploymentExtended WaitDeploymentStatus( } deployment = ResourceManagementClient.Deployments.Get(resourceGroup, deploymentName).Deployment; - TestMockSupport.Delay(2000); + TestMockSupport.Delay(5000); } while (!status.Any(s => s.Equals(deployment.Properties.ProvisioningState, StringComparison.OrdinalIgnoreCase))); From 420576b7e1890335e043853cb3f7043903de4a2d Mon Sep 17 00:00:00 2001 From: Sebastian Max Dusch Date: Sat, 20 Feb 2016 14:48:46 +0100 Subject: [PATCH 4/7] add skip table check --- .../ScenarioTests/AEMExtensionTests.ps1 | 8 +++--- .../Extension/AEM/AEMHelper.cs | 7 +++++- .../AEM/TestAzureRmVMAEMExtension.cs | 25 +++++++++++++++---- 3 files changed, 30 insertions(+), 10 deletions(-) diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/AEMExtensionTests.ps1 b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/AEMExtensionTests.ps1 index d71fe2fcb71b..2f227ad49425 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/AEMExtensionTests.ps1 +++ b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/AEMExtensionTests.ps1 @@ -56,7 +56,7 @@ function Test-AEMExtensionBasicWindows # Test command. - $testResult = Test-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname -WaitTimeInMinutes 50 + $testResult = Test-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname -WaitTimeInMinutes 50 -SkipTableContentCheck Assert-True { $testResult.Result } Assert-True { ($testResult.PartialResults.Count -gt 0) } @@ -117,7 +117,7 @@ function Test-AEMExtensionAdvancedWindows # Test command. Write-Verbose "Test-AEMExtensionAdvancedWindows: Test with extension" - $res = Test-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname + $res = Test-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname -SkipTableContentCheck Assert-True { $res.Result } Assert-True { ($res.PartialResults.Count -gt 0) } Write-Verbose "Test-AEMExtensionAdvancedWindows: Test done" @@ -177,7 +177,7 @@ function Test-AEMExtensionBasicLinux Restart-AzureRmVM -ResourceGroupName $rgname -Name $vmname # Test command. - $testResult = Test-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname -WaitTimeInMinutes 50 + $testResult = Test-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname -WaitTimeInMinutes 50 -SkipTableContentCheck Assert-True { $testResult.Result } Assert-True { ($testResult.PartialResults.Count -gt 0) } @@ -239,7 +239,7 @@ function Test-AEMExtensionAdvancedLinux # Test command. Write-Verbose "Test-AEMExtensionAdvancedLinux: Test with extension" - $res = Test-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname + $res = Test-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname -SkipTableContentCheck Assert-True { $res.Result } Assert-True { ($res.PartialResults.Count -gt 0) } Write-Verbose "Test-AEMExtensionAdvancedLinux: Test done" diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/AEMHelper.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/AEMHelper.cs index 2f005cfa43c2..7ab3c1213052 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/AEMHelper.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/AEMHelper.cs @@ -132,7 +132,7 @@ internal bool IsPremiumStorageAccount(string accountName) } catch (Exception) { - throw; + this.WriteWarning("Could not determine OS Disk size."); } } @@ -289,6 +289,11 @@ internal AzureSLA GetDiskSLA(int? diskSize, string vhdUri) { diskSize = this.GetDiskSizeGbFromBlobUri(vhdUri); } + if (!diskSize.HasValue) + { + this.WriteWarning("OS Disk size is empty and could not be determined. Assuming P10."); + diskSize = 127; + } AzureSLA sla = new AzureSLA(); if (diskSize > 0 && diskSize < 129) diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/TestAzureRmVMAEMExtension.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/TestAzureRmVMAEMExtension.cs index 6d3948155f02..83333b18db2e 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/TestAzureRmVMAEMExtension.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/TestAzureRmVMAEMExtension.cs @@ -58,6 +58,13 @@ public class TestAzureRmVMAEMExtension : VirtualMachineExtensionBaseCmdlet HelpMessage = "Time that should be waited for the Strorage Metrics or Diagnostics data to be available in minutes. Default is 15 minutes")] public int WaitTimeInMinutes { get; set; } + [Parameter( + Mandatory = false, + Position = 4, + ValueFromPipelineByPropertyName = false, + HelpMessage = "Disables the test for table content")] + public SwitchParameter SkipTableContentCheck { get; set; } + public TestAzureRmVMAEMExtension() { this.WaitTimeInMinutes = 15; @@ -214,17 +221,21 @@ public override void ExecuteCmdlet() var filterMinute = Microsoft.WindowsAzure.Storage.Table.TableQuery. GenerateFilterConditionForDate("Timestamp", "gt", DateTime.Now.AddMinutes(AEMExtensionConstants.ContentAgeInMinutes * -1)); - if (storageConfigOk && this._Helper.CheckTableAndContent(account, "$MetricsMinutePrimaryTransactionsBlob", filterMinute, ".", false, this.WaitTimeInMinutes)) + if (!this.SkipTableContentCheck.IsPresent && storageConfigOk && this._Helper.CheckTableAndContent(account, "$MetricsMinutePrimaryTransactionsBlob", filterMinute, ".", false, this.WaitTimeInMinutes)) { this._Helper.WriteHost("OK ", ConsoleColor.Green); accountResult.PartialResults.Add(new AEMTestResult("Storage Metrics data check for {0}", true, account)); } - else + else if (!this.SkipTableContentCheck.IsPresent) { accountResult.PartialResults.Add(new AEMTestResult("Storage Metrics data check for {0}", false, account)); this._Helper.WriteHost("NOT OK ", ConsoleColor.Red); } + else + { + this._Helper.WriteHost("Skipped ", ConsoleColor.Yellow); + } } else { @@ -437,7 +448,7 @@ public override void ExecuteCmdlet() var ok = false; - if ((!String.IsNullOrEmpty(deploymentId)) && (!String.IsNullOrEmpty(roleName)) && (!String.IsNullOrEmpty(wadstorage))) + if (!this.SkipTableContentCheck.IsPresent && (!String.IsNullOrEmpty(deploymentId)) && (!String.IsNullOrEmpty(roleName)) && (!String.IsNullOrEmpty(wadstorage))) { if (this.OSType.Equals(AEMExtensionConstants.OSTypeLinux, StringComparison.InvariantCultureIgnoreCase)) @@ -456,16 +467,20 @@ public override void ExecuteCmdlet() } - if (ok) + if (ok && !this.SkipTableContentCheck.IsPresent) { wadConfigResult.PartialResults.Add(new AEMTestResult("IaaSDiagnostics data check", true)); this._Helper.WriteHost("OK ", ConsoleColor.Green); } - else + else if (!this.SkipTableContentCheck.IsPresent) { wadConfigResult.PartialResults.Add(new AEMTestResult("IaaSDiagnostics data check", false)); this._Helper.WriteHost("NOT OK ", ConsoleColor.Red); } + else + { + this._Helper.WriteHost("Skipped ", ConsoleColor.Yellow); + } } else { From b027ecedc9e0e8d0d604f456b9cd32e1a5cabd4b Mon Sep 17 00:00:00 2001 From: sedusch Date: Mon, 22 Feb 2016 11:48:22 +0100 Subject: [PATCH 5/7] fix test cases to work offline --- .../ScenarioTests/AEMExtensionTests.ps1 | 41 +- .../TestAEMExtensionAdvancedLinux.json | 2002 ++++++------- .../TestAEMExtensionAdvancedWindows.json | 2650 +++++++---------- .../TestAEMExtensionBasicLinux.json | 2005 +++++++------ .../TestAEMExtensionBasicWindows.json | 2576 +++++++--------- .../Extension/AEM/AEMHelper.cs | 8 + .../Extension/AEM/SetAzureRmVMAEMExtension.cs | 23 +- .../AEM/TestAzureRmVMAEMExtension.cs | 94 +- 8 files changed, 4315 insertions(+), 5084 deletions(-) diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/AEMExtensionTests.ps1 b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/AEMExtensionTests.ps1 index 2f227ad49425..40dbd07b97b6 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/AEMExtensionTests.ps1 +++ b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/AEMExtensionTests.ps1 @@ -32,11 +32,11 @@ function Test-AEMExtensionBasicWindows $extension = Get-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname Assert-Null $extension # Test with not extension - $testResult = Test-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname + $testResult = Test-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname -SkipStorageCheck Assert-False { $testResult.Result } # Set and Get command. - Set-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname + Set-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname -SkipStorage $extension = Get-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname Assert-NotNull $extension @@ -46,17 +46,8 @@ function Test-AEMExtensionBasicWindows $settings = $extension.PublicSettings | ConvertFrom-Json Assert-NotNull $settings.cfg - $stoname = 'sto' + $rgname; - $tempFile = [System.IO.Path]::GetTempFileName() - "new file content" | Out-File $tempFile - $ctxt = (New-AzureStorageContext -StorageAccountName $stoname -StorageAccountKey (Get-AzureRmStorageAccountKey -ResourceGroupName $rgname -Name $stoname).Key1) - $container = New-AzureStorageContainer -Name "uploadtest" -Context $ctxt - Set-AzureStorageBlobContent -File $tempFile -Context $ctxt -Container "uploadtest" -Blob "filtemp.txt" - Restart-AzureRmVM -ResourceGroupName $rgname -Name $vmname - - # Test command. - $testResult = Test-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname -WaitTimeInMinutes 50 -SkipTableContentCheck + $testResult = Test-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname -WaitTimeInMinutes 50 -SkipStorageCheck Assert-True { $testResult.Result } Assert-True { ($testResult.PartialResults.Count -gt 0) } @@ -92,7 +83,7 @@ function Test-AEMExtensionAdvancedWindows # Test with not extension Write-Verbose "Test-AEMExtensionAdvancedWindows: Test with no extension" - $res = Test-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname + $res = Test-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname -SkipStorageCheck Assert-False { $res.Result } Write-Verbose "Test-AEMExtensionAdvancedWindows: Test done" @@ -101,7 +92,7 @@ function Test-AEMExtensionAdvancedWindows # Set and Get command. Write-Verbose "Test-AEMExtensionAdvancedWindows: Set with no extension" - Set-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname -WADStorageAccountName $stoname + Set-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname -WADStorageAccountName $stoname -SkipStorage Write-Verbose "Test-AEMExtensionAdvancedWindows: Set done" Write-Verbose "Test-AEMExtensionAdvancedWindows: Get with extension" $extension = Get-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname @@ -117,7 +108,7 @@ function Test-AEMExtensionAdvancedWindows # Test command. Write-Verbose "Test-AEMExtensionAdvancedWindows: Test with extension" - $res = Test-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname -SkipTableContentCheck + $res = Test-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname -SkipStorageCheck Assert-True { $res.Result } Assert-True { ($res.PartialResults.Count -gt 0) } Write-Verbose "Test-AEMExtensionAdvancedWindows: Test done" @@ -154,11 +145,11 @@ function Test-AEMExtensionBasicLinux $extension = Get-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname Assert-Null $extension # Test with not extension - $testResult = Test-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname + $testResult = Test-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname -SkipStorageCheck Assert-False { $testResult.Result } # Set and Get command. - Set-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname + Set-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname -SkipStorage $extension = Get-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname Assert-NotNull $extension @@ -168,16 +159,8 @@ function Test-AEMExtensionBasicLinux $settings = $extension.PublicSettings | ConvertFrom-Json Assert-NotNull $settings.cfg - $stoname = 'sto' + $rgname; - $tempFile = [System.IO.Path]::GetTempFileName() - "new file content" | Out-File $tempFile - $ctxt = (New-AzureStorageContext -StorageAccountName $stoname -StorageAccountKey (Get-AzureRmStorageAccountKey -ResourceGroupName $rgname -Name $stoname).Key1) - $container = New-AzureStorageContainer -Name "uploadtest" -Context $ctxt - Set-AzureStorageBlobContent -File $tempFile -Context $ctxt -Container "uploadtest" -Blob "filtemp.txt" - Restart-AzureRmVM -ResourceGroupName $rgname -Name $vmname - # Test command. - $testResult = Test-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname -WaitTimeInMinutes 50 -SkipTableContentCheck + $testResult = Test-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname -WaitTimeInMinutes 50 -SkipStorageCheck Assert-True { $testResult.Result } Assert-True { ($testResult.PartialResults.Count -gt 0) } @@ -213,7 +196,7 @@ function Test-AEMExtensionAdvancedLinux # Test with not extension Write-Verbose "Test-AEMExtensionAdvancedLinux: Test with no extension" - $res = Test-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname + $res = Test-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname -SkipStorageCheck Write-Verbose ("Test-AEMExtensionAdvancedLinux: Test result " + $res.Result) Assert-False { $res.Result } Write-Verbose "Test-AEMExtensionAdvancedLinux: Test done" @@ -223,7 +206,7 @@ function Test-AEMExtensionAdvancedLinux # Set and Get command. Write-Verbose "Test-AEMExtensionAdvancedLinux: Set with no extension" - Set-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname -WADStorageAccountName $stoname + Set-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname -WADStorageAccountName $stoname -SkipStorage Write-Verbose "Test-AEMExtensionAdvancedLinux: Set done" Write-Verbose "Test-AEMExtensionAdvancedLinux: Get with extension" $extension = Get-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname @@ -239,7 +222,7 @@ function Test-AEMExtensionAdvancedLinux # Test command. Write-Verbose "Test-AEMExtensionAdvancedLinux: Test with extension" - $res = Test-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname -SkipTableContentCheck + $res = Test-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname -SkipStorageCheck Assert-True { $res.Result } Assert-True { ($res.PartialResults.Count -gt 0) } Write-Verbose "Test-AEMExtensionAdvancedLinux: Test done" diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.AEMExtensionTests/TestAEMExtensionAdvancedLinux.json b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.AEMExtensionTests/TestAEMExtensionAdvancedLinux.json index 7be6610141fb..d4c5ca8ce81c 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.AEMExtensionTests/TestAEMExtensionAdvancedLinux.json +++ b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.AEMExtensionTests/TestAEMExtensionAdvancedLinux.json @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14812" + "14992" ], "x-ms-request-id": [ - "f696b563-82d0-480b-8067-7d0a40853832" + "3cd8335e-56f6-411c-9dd9-66c5f97a75a9" ], "x-ms-correlation-request-id": [ - "f696b563-82d0-480b-8067-7d0a40853832" + "3cd8335e-56f6-411c-9dd9-66c5f97a75a9" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T133002Z:f696b563-82d0-480b-8067-7d0a40853832" + "NORTHCENTRALUS:20160220T140531Z:3cd8335e-56f6-411c-9dd9-66c5f97a75a9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,14 +43,14 @@ "no-cache" ], "Date": [ - "Thu, 18 Feb 2016 13:30:02 GMT" + "Sat, 20 Feb 2016 14:05:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourcegroups/crptestps4427?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczQ0Mjc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourcegroups/crptestps4470?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczQ0NzA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -76,16 +76,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14811" + "14991" ], "x-ms-request-id": [ - "371c3cf9-235f-41e1-9a8d-363daacbf123" + "33e6d938-63bc-4175-9851-8afc44be31fc" ], "x-ms-correlation-request-id": [ - "371c3cf9-235f-41e1-9a8d-363daacbf123" + "33e6d938-63bc-4175-9851-8afc44be31fc" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T133002Z:371c3cf9-235f-41e1-9a8d-363daacbf123" + "NORTHCENTRALUS:20160220T140531Z:33e6d938-63bc-4175-9851-8afc44be31fc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -94,14 +94,14 @@ "no-cache" ], "Date": [ - "Thu, 18 Feb 2016 13:30:02 GMT" + "Sat, 20 Feb 2016 14:05:30 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourcegroups/crptestps4427?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczQ0Mjc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourcegroups/crptestps4470?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczQ0NzA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -121,16 +121,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14992" ], "x-ms-request-id": [ - "2f931b10-4ac2-4a5d-bfd4-7f9aa33ffc17" + "23dedbc4-c097-4a76-8de2-21d24109dab8" ], "x-ms-correlation-request-id": [ - "2f931b10-4ac2-4a5d-bfd4-7f9aa33ffc17" + "23dedbc4-c097-4a76-8de2-21d24109dab8" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T134033Z:2f931b10-4ac2-4a5d-bfd4-7f9aa33ffc17" + "NORTHCENTRALUS:20160220T141643Z:23dedbc4-c097-4a76-8de2-21d24109dab8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -139,14 +139,14 @@ "no-cache" ], "Date": [ - "Thu, 18 Feb 2016 13:40:32 GMT" + "Sat, 20 Feb 2016 14:16:42 GMT" ] }, "StatusCode": 204 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourcegroups/crptestps4427?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczQ0Mjc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourcegroups/crptestps4470?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczQ0NzA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { @@ -160,7 +160,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427\",\r\n \"name\": \"crptestps4427\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470\",\r\n \"name\": \"crptestps4470\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "179" @@ -175,16 +175,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-request-id": [ - "701c8515-c22a-40bc-b307-13a8783ce85c" + "d8d4c4d6-10ce-497f-88e0-5fabbbe0e98e" ], "x-ms-correlation-request-id": [ - "701c8515-c22a-40bc-b307-13a8783ce85c" + "d8d4c4d6-10ce-497f-88e0-5fabbbe0e98e" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T133004Z:701c8515-c22a-40bc-b307-13a8783ce85c" + "NORTHCENTRALUS:20160220T140532Z:d8d4c4d6-10ce-497f-88e0-5fabbbe0e98e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -193,14 +193,14 @@ "no-cache" ], "Date": [ - "Thu, 18 Feb 2016 13:30:03 GMT" + "Sat, 20 Feb 2016 14:05:32 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0NzAvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -223,16 +223,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14810" + "14990" ], "x-ms-request-id": [ - "9aeb1aec-7068-452b-abcc-2c7f90cf4787" + "28eb236c-ccfc-4723-bfa4-bbdb100e4813" ], "x-ms-correlation-request-id": [ - "9aeb1aec-7068-452b-abcc-2c7f90cf4787" + "28eb236c-ccfc-4723-bfa4-bbdb100e4813" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T133004Z:9aeb1aec-7068-452b-abcc-2c7f90cf4787" + "NORTHCENTRALUS:20160220T140533Z:28eb236c-ccfc-4723-bfa4-bbdb100e4813" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -241,19 +241,19 @@ "no-cache" ], "Date": [ - "Thu, 18 Feb 2016 13:30:04 GMT" + "Sat, 20 Feb 2016 14:05:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/virtualnetworks/vnetcrptestps4427?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNDQyNz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Network/virtualnetworks/vnetcrptestps4470?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0NzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNDQ3MD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b625ddc9-3559-4cf6-859b-45827221d292" + "2e4d937a-f06f-4821-8759-19d4ac36061e" ], "accept-language": [ "en-US" @@ -262,7 +262,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/vnetcrptestps4427' under resource group 'crptestps4427' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/vnetcrptestps4470' under resource group 'crptestps4470' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "168" @@ -280,13 +280,13 @@ "gateway" ], "x-ms-request-id": [ - "40f4dedd-ae27-450f-b56d-43b402a4b407" + "7f935e26-fdb5-41f8-8c89-ccfaf89b4fc2" ], "x-ms-correlation-request-id": [ - "40f4dedd-ae27-450f-b56d-43b402a4b407" + "7f935e26-fdb5-41f8-8c89-ccfaf89b4fc2" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T133006Z:40f4dedd-ae27-450f-b56d-43b402a4b407" + "NORTHCENTRALUS:20160220T140534Z:7f935e26-fdb5-41f8-8c89-ccfaf89b4fc2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -295,14 +295,14 @@ "no-cache" ], "Date": [ - "Thu, 18 Feb 2016 13:30:05 GMT" + "Sat, 20 Feb 2016 14:05:34 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/virtualnetworks/vnetcrptestps4427?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNDQyNz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Network/virtualnetworks/vnetcrptestps4470?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0NzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNDQ3MD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -310,7 +310,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetcrptestps4427\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4427\",\r\n \"etag\": \"W/\\\"8bd310aa-b1c8-4577-b928-85273da279a1\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c5b3dc49-8466-4db4-a03f-865d891dc651\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps4427\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4427/subnets/subnetcrptestps4427\",\r\n \"etag\": \"W/\\\"8bd310aa-b1c8-4577-b928-85273da279a1\\\"\",\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}", + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps4470\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4470\",\r\n \"etag\": \"W/\\\"d2e08de3-4281-48bc-9e51-1efd9d97fbf8\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5cf47b8f-b419-483e-a048-3f50a032c06b\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps4470\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4470/subnets/subnetcrptestps4470\",\r\n \"etag\": \"W/\\\"d2e08de3-4281-48bc-9e51-1efd9d97fbf8\\\"\",\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}", "ResponseHeaders": { "Content-Length": [ "994" @@ -325,7 +325,7 @@ "no-cache" ], "x-ms-request-id": [ - "e3d6e438-7cdd-44f4-9422-87b0f85cd7f2" + "cb5ba69b-14af-4322-888a-3fd8279078f8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,35 +334,35 @@ "no-cache" ], "ETag": [ - "W/\"8bd310aa-b1c8-4577-b928-85273da279a1\"" + "W/\"d2e08de3-4281-48bc-9e51-1efd9d97fbf8\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14988" ], "x-ms-correlation-request-id": [ - "9b1ef027-9645-41c7-8f73-6f4f1955f769" + "11019dc0-7ff1-4859-9953-4a82662fb9e4" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T133039Z:9b1ef027-9645-41c7-8f73-6f4f1955f769" + "NORTHCENTRALUS:20160220T140607Z:11019dc0-7ff1-4859-9953-4a82662fb9e4" ], "Date": [ - "Thu, 18 Feb 2016 13:30:38 GMT" + "Sat, 20 Feb 2016 14:06:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/virtualnetworks/vnetcrptestps4427?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNDQyNz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Network/virtualnetworks/vnetcrptestps4470?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0NzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNDQ3MD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "39e6a12b-3de7-4558-8526-9df7d305bfbf" + "2e3983c4-e283-4551-9e46-f20b9351dd41" ], "accept-language": [ "en-US" @@ -371,7 +371,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetcrptestps4427\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4427\",\r\n \"etag\": \"W/\\\"8bd310aa-b1c8-4577-b928-85273da279a1\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c5b3dc49-8466-4db4-a03f-865d891dc651\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps4427\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4427/subnets/subnetcrptestps4427\",\r\n \"etag\": \"W/\\\"8bd310aa-b1c8-4577-b928-85273da279a1\\\"\",\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}", + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps4470\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4470\",\r\n \"etag\": \"W/\\\"d2e08de3-4281-48bc-9e51-1efd9d97fbf8\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5cf47b8f-b419-483e-a048-3f50a032c06b\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps4470\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4470/subnets/subnetcrptestps4470\",\r\n \"etag\": \"W/\\\"d2e08de3-4281-48bc-9e51-1efd9d97fbf8\\\"\",\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}", "ResponseHeaders": { "Content-Length": [ "994" @@ -386,7 +386,7 @@ "no-cache" ], "x-ms-request-id": [ - "bfdf593e-027c-4cf2-a0d0-34e7dd9d5eef" + "6bc37251-346d-40d8-ab36-bfc9b7a66129" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -395,35 +395,35 @@ "no-cache" ], "ETag": [ - "W/\"8bd310aa-b1c8-4577-b928-85273da279a1\"" + "W/\"d2e08de3-4281-48bc-9e51-1efd9d97fbf8\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14987" ], "x-ms-correlation-request-id": [ - "2a541b5c-7e26-4a3e-8ef9-3e62afe4bd46" + "97d90c70-18c2-45c4-b4e3-6cd46a98b5e8" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T133039Z:2a541b5c-7e26-4a3e-8ef9-3e62afe4bd46" + "NORTHCENTRALUS:20160220T140607Z:97d90c70-18c2-45c4-b4e3-6cd46a98b5e8" ], "Date": [ - "Thu, 18 Feb 2016 13:30:39 GMT" + "Sat, 20 Feb 2016 14:06:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/virtualnetworks/vnetcrptestps4427?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNDQyNz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Network/virtualnetworks/vnetcrptestps4470?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0NzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNDQ3MD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "209a1d2e-7ab6-4525-8e0a-29a4654a05f0" + "aac7d8d4-529d-4d46-abfd-66fa2f91de64" ], "accept-language": [ "en-US" @@ -432,7 +432,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetcrptestps4427\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4427\",\r\n \"etag\": \"W/\\\"8bd310aa-b1c8-4577-b928-85273da279a1\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c5b3dc49-8466-4db4-a03f-865d891dc651\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps4427\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4427/subnets/subnetcrptestps4427\",\r\n \"etag\": \"W/\\\"8bd310aa-b1c8-4577-b928-85273da279a1\\\"\",\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}", + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps4470\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4470\",\r\n \"etag\": \"W/\\\"d2e08de3-4281-48bc-9e51-1efd9d97fbf8\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5cf47b8f-b419-483e-a048-3f50a032c06b\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps4470\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4470/subnets/subnetcrptestps4470\",\r\n \"etag\": \"W/\\\"d2e08de3-4281-48bc-9e51-1efd9d97fbf8\\\"\",\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}", "ResponseHeaders": { "Content-Length": [ "994" @@ -447,7 +447,7 @@ "no-cache" ], "x-ms-request-id": [ - "dac175c1-5fa9-4738-9d2d-bd270a3a95e9" + "6ddc2fe8-2e91-47f5-beb1-3e18e06d1ce3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -456,32 +456,32 @@ "no-cache" ], "ETag": [ - "W/\"8bd310aa-b1c8-4577-b928-85273da279a1\"" + "W/\"d2e08de3-4281-48bc-9e51-1efd9d97fbf8\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14986" ], "x-ms-correlation-request-id": [ - "08a29c83-a945-43bc-9425-1e5e90e4d90f" + "d8993fb2-4a9d-406b-9d28-b9ae36737dad" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T133039Z:08a29c83-a945-43bc-9425-1e5e90e4d90f" + "NORTHCENTRALUS:20160220T140608Z:d8993fb2-4a9d-406b-9d28-b9ae36737dad" ], "Date": [ - "Thu, 18 Feb 2016 13:30:39 GMT" + "Sat, 20 Feb 2016 14:06:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/virtualnetworks/vnetcrptestps4427?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNDQyNz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Network/virtualnetworks/vnetcrptestps4470?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0NzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNDQ3MD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps4427\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps4470\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -490,7 +490,7 @@ "341" ], "x-ms-client-request-id": [ - "240cb92f-5bda-4429-a7ad-3d5a91a2425a" + "dc01bc6b-4a8f-415b-9bf6-a74493f2cfde" ], "accept-language": [ "en-US" @@ -499,7 +499,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetcrptestps4427\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4427\",\r\n \"etag\": \"W/\\\"1d8c7fb4-902c-45ef-921e-a0b84b95740c\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"c5b3dc49-8466-4db4-a03f-865d891dc651\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps4427\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4427/subnets/subnetcrptestps4427\",\r\n \"etag\": \"W/\\\"1d8c7fb4-902c-45ef-921e-a0b84b95740c\\\"\",\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}", + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps4470\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4470\",\r\n \"etag\": \"W/\\\"a8b3858a-066d-4e57-b4b2-455a26469404\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"5cf47b8f-b419-483e-a048-3f50a032c06b\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps4470\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4470/subnets/subnetcrptestps4470\",\r\n \"etag\": \"W/\\\"a8b3858a-066d-4e57-b4b2-455a26469404\\\"\",\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}", "ResponseHeaders": { "Content-Length": [ "992" @@ -517,10 +517,10 @@ "10" ], "x-ms-request-id": [ - "03eaa79e-691a-4696-a427-fc7ace424c07" + "8c80f8af-2207-489b-b68e-50f5babe09eb" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Network/locations/eastus/operations/03eaa79e-691a-4696-a427-fc7ace424c07?api-version=2015-06-15" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Network/locations/eastus/operations/8c80f8af-2207-489b-b68e-50f5babe09eb?api-version=2015-06-15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -533,23 +533,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1199" ], "x-ms-correlation-request-id": [ - "d4040b5e-d43f-408d-aab1-7828dd44a97f" + "aa810ee4-a930-4d2b-b235-b9195933e8a9" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T133008Z:d4040b5e-d43f-408d-aab1-7828dd44a97f" + "NORTHCENTRALUS:20160220T140536Z:aa810ee4-a930-4d2b-b235-b9195933e8a9" ], "Date": [ - "Thu, 18 Feb 2016 13:30:08 GMT" + "Sat, 20 Feb 2016 14:05:35 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Network/locations/eastus/operations/03eaa79e-691a-4696-a427-fc7ace424c07?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMDNlYWE3OWUtNjkxYS00Njk2LWE0MjctZmM3YWNlNDI0YzA3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Network/locations/eastus/operations/8c80f8af-2207-489b-b68e-50f5babe09eb?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOGM4MGY4YWYtMjIwNy00ODliLWI2OGUtNTBmNWJhYmUwOWViP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -572,7 +572,7 @@ "no-cache" ], "x-ms-request-id": [ - "040def61-4f37-440f-ade2-8e233b78b307" + "d1ed4293-652d-4a24-ad39-b9d4d39cc015" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -585,28 +585,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14989" ], "x-ms-correlation-request-id": [ - "e95831cf-9f93-4494-aa81-d56bf7199d08" + "6e00ed6a-3675-4e9b-811b-ca0784f189bb" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T133039Z:e95831cf-9f93-4494-aa81-d56bf7199d08" + "NORTHCENTRALUS:20160220T140607Z:6e00ed6a-3675-4e9b-811b-ca0784f189bb" ], "Date": [ - "Thu, 18 Feb 2016 13:30:38 GMT" + "Sat, 20 Feb 2016 14:06:06 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4427?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNDQyNz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4470?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0NzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNDQ3MD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fb8ea09f-5523-4204-8ca2-2ffcf5f4549c" + "63b1e7fe-0d77-4e9c-bc79-e71ac6d8b7f5" ], "accept-language": [ "en-US" @@ -615,7 +615,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/pubipcrptestps4427' under resource group 'crptestps4427' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/pubipcrptestps4470' under resource group 'crptestps4470' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "171" @@ -633,13 +633,13 @@ "gateway" ], "x-ms-request-id": [ - "92d8080f-fe1c-4601-875b-16e76926d40d" + "e71dc2c7-9e27-4286-9e84-533126ad70d4" ], "x-ms-correlation-request-id": [ - "92d8080f-fe1c-4601-875b-16e76926d40d" + "e71dc2c7-9e27-4286-9e84-533126ad70d4" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T133040Z:92d8080f-fe1c-4601-875b-16e76926d40d" + "NORTHCENTRALUS:20160220T140608Z:e71dc2c7-9e27-4286-9e84-533126ad70d4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -648,14 +648,14 @@ "no-cache" ], "Date": [ - "Thu, 18 Feb 2016 13:30:39 GMT" + "Sat, 20 Feb 2016 14:06:07 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4427?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNDQyNz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4470?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0NzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNDQ3MD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -663,7 +663,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pubipcrptestps4427\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4427\",\r\n \"etag\": \"W/\\\"66f9af25-41bf-4307-bfa1-1cb309551918\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0c081d0d-18d1-4748-8a98-cc12e1568105\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps4427\",\r\n \"fqdn\": \"pubipcrptestps4427.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps4470\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4470\",\r\n \"etag\": \"W/\\\"2eb22a52-40ec-46bb-84a8-2bc080818b75\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e71174d1-eab8-46a4-9077-8b7cae7bd61a\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps4470\",\r\n \"fqdn\": \"pubipcrptestps4470.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "666" @@ -678,7 +678,7 @@ "no-cache" ], "x-ms-request-id": [ - "eecaa07d-819b-4c89-b29a-86105b8c597c" + "7eeb9688-95da-46a4-bb54-55fec9f60240" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -687,35 +687,35 @@ "no-cache" ], "ETag": [ - "W/\"66f9af25-41bf-4307-bfa1-1cb309551918\"" + "W/\"2eb22a52-40ec-46bb-84a8-2bc080818b75\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14982" ], "x-ms-correlation-request-id": [ - "a29e0891-9a68-431f-b317-3f086d5e247d" + "738c6009-2741-452e-8683-36b9d25dd566" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T133112Z:a29e0891-9a68-431f-b317-3f086d5e247d" + "NORTHCENTRALUS:20160220T140641Z:738c6009-2741-452e-8683-36b9d25dd566" ], "Date": [ - "Thu, 18 Feb 2016 13:31:12 GMT" + "Sat, 20 Feb 2016 14:06:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4427?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNDQyNz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4470?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0NzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNDQ3MD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "40b404f7-fe2c-41e1-acba-7f1380c63f4d" + "6fd97ce2-2e29-45f6-89f0-4148f60c32da" ], "accept-language": [ "en-US" @@ -724,7 +724,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pubipcrptestps4427\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4427\",\r\n \"etag\": \"W/\\\"66f9af25-41bf-4307-bfa1-1cb309551918\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0c081d0d-18d1-4748-8a98-cc12e1568105\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps4427\",\r\n \"fqdn\": \"pubipcrptestps4427.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps4470\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4470\",\r\n \"etag\": \"W/\\\"2eb22a52-40ec-46bb-84a8-2bc080818b75\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e71174d1-eab8-46a4-9077-8b7cae7bd61a\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps4470\",\r\n \"fqdn\": \"pubipcrptestps4470.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "666" @@ -739,7 +739,7 @@ "no-cache" ], "x-ms-request-id": [ - "f9625586-48f7-464c-b176-c6829d311253" + "f0e14a91-5aeb-4e23-812e-8e0f20cf217b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -748,35 +748,35 @@ "no-cache" ], "ETag": [ - "W/\"66f9af25-41bf-4307-bfa1-1cb309551918\"" + "W/\"2eb22a52-40ec-46bb-84a8-2bc080818b75\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14981" ], "x-ms-correlation-request-id": [ - "5154cd00-fe1a-41e1-b976-d28f16e1e417" + "cc0e0d6d-5107-4497-a66b-c5ed19a995a9" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T133112Z:5154cd00-fe1a-41e1-b976-d28f16e1e417" + "NORTHCENTRALUS:20160220T140641Z:cc0e0d6d-5107-4497-a66b-c5ed19a995a9" ], "Date": [ - "Thu, 18 Feb 2016 13:31:12 GMT" + "Sat, 20 Feb 2016 14:06:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4427?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNDQyNz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4470?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0NzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNDQ3MD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c9a58f86-3da5-406e-a48b-3cd71b861098" + "caa90d51-2917-4d88-9f06-f3be41a4745f" ], "accept-language": [ "en-US" @@ -785,7 +785,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pubipcrptestps4427\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4427\",\r\n \"etag\": \"W/\\\"66f9af25-41bf-4307-bfa1-1cb309551918\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0c081d0d-18d1-4748-8a98-cc12e1568105\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps4427\",\r\n \"fqdn\": \"pubipcrptestps4427.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps4470\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4470\",\r\n \"etag\": \"W/\\\"2eb22a52-40ec-46bb-84a8-2bc080818b75\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e71174d1-eab8-46a4-9077-8b7cae7bd61a\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps4470\",\r\n \"fqdn\": \"pubipcrptestps4470.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "666" @@ -800,7 +800,7 @@ "no-cache" ], "x-ms-request-id": [ - "cce54efe-2e78-479a-b961-cb5145e27f69" + "1649171a-dfea-4e3c-aadf-f599ee0619bd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -809,32 +809,32 @@ "no-cache" ], "ETag": [ - "W/\"66f9af25-41bf-4307-bfa1-1cb309551918\"" + "W/\"2eb22a52-40ec-46bb-84a8-2bc080818b75\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14980" ], "x-ms-correlation-request-id": [ - "90613488-df60-4844-afdf-4b86dc50d04a" + "7df85cc4-bc6f-4818-8d18-8e48e3d903d7" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T133112Z:90613488-df60-4844-afdf-4b86dc50d04a" + "NORTHCENTRALUS:20160220T140642Z:7df85cc4-bc6f-4818-8d18-8e48e3d903d7" ], "Date": [ - "Thu, 18 Feb 2016 13:31:12 GMT" + "Sat, 20 Feb 2016 14:06:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4427?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNDQyNz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4470?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0NzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNDQ3MD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps4427\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps4470\"\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -843,7 +843,7 @@ "174" ], "x-ms-client-request-id": [ - "fd6cadd3-b9e6-49fb-8acf-77c2231d160b" + "1ba09fa8-26ad-40c6-b34b-a88762ab48f8" ], "accept-language": [ "en-US" @@ -852,7 +852,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pubipcrptestps4427\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4427\",\r\n \"etag\": \"W/\\\"ddfddb96-d8fd-44d9-a080-58612e2af24d\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"0c081d0d-18d1-4748-8a98-cc12e1568105\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps4427\",\r\n \"fqdn\": \"pubipcrptestps4427.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps4470\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4470\",\r\n \"etag\": \"W/\\\"dc123968-bada-4dc0-b5ef-896814379ff4\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"e71174d1-eab8-46a4-9077-8b7cae7bd61a\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps4470\",\r\n \"fqdn\": \"pubipcrptestps4470.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "665" @@ -870,10 +870,10 @@ "10" ], "x-ms-request-id": [ - "d84c1d08-dc46-46a1-b170-980e1b8f28dd" + "0957f1a6-e3d7-4519-bb78-32689a89b0c3" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Network/locations/eastus/operations/d84c1d08-dc46-46a1-b170-980e1b8f28dd?api-version=2015-06-15" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Network/locations/eastus/operations/0957f1a6-e3d7-4519-bb78-32689a89b0c3?api-version=2015-06-15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -886,23 +886,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1198" ], "x-ms-correlation-request-id": [ - "a8821c42-3725-4398-92eb-d50858a07ece" + "b4ab3a03-5dbb-4be5-a20a-66553ca8a58a" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T133041Z:a8821c42-3725-4398-92eb-d50858a07ece" + "NORTHCENTRALUS:20160220T140611Z:b4ab3a03-5dbb-4be5-a20a-66553ca8a58a" ], "Date": [ - "Thu, 18 Feb 2016 13:30:41 GMT" + "Sat, 20 Feb 2016 14:06:10 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Network/locations/eastus/operations/d84c1d08-dc46-46a1-b170-980e1b8f28dd?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZDg0YzFkMDgtZGM0Ni00NmExLWIxNzAtOTgwZTFiOGYyOGRkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Network/locations/eastus/operations/0957f1a6-e3d7-4519-bb78-32689a89b0c3?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMDk1N2YxYTYtZTNkNy00NTE5LWJiNzgtMzI2ODlhODliMGMzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -925,7 +925,7 @@ "no-cache" ], "x-ms-request-id": [ - "2dc22fcc-f326-45dc-8d35-c783cedf1e89" + "ef93ea81-2845-44ae-9fc7-7d03ba59cddc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -938,28 +938,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14983" ], "x-ms-correlation-request-id": [ - "9cd83eb1-cea9-43ae-8cb3-da2b1f33ef52" + "8ad1f151-6213-44ec-b72d-189335b703d5" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T133112Z:9cd83eb1-cea9-43ae-8cb3-da2b1f33ef52" + "NORTHCENTRALUS:20160220T140641Z:8ad1f151-6213-44ec-b72d-189335b703d5" ], "Date": [ - "Thu, 18 Feb 2016 13:31:12 GMT" + "Sat, 20 Feb 2016 14:06:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic0crptestps4427?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzBjcnB0ZXN0cHM0NDI3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Network/networkInterfaces/nic0crptestps4470?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0NzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzBjcnB0ZXN0cHM0NDcwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "317b3a0a-ebfc-4555-8036-691808fbe81a" + "7d960035-ca63-4cd5-832a-35a239e6b5a8" ], "accept-language": [ "en-US" @@ -968,7 +968,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/nic0crptestps4427' under resource group 'crptestps4427' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/nic0crptestps4470' under resource group 'crptestps4470' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "170" @@ -986,13 +986,13 @@ "gateway" ], "x-ms-request-id": [ - "26eabd23-7664-4751-97f0-4fddf75f8177" + "499b467c-ef9d-4e17-bb51-cdca001e0f03" ], "x-ms-correlation-request-id": [ - "26eabd23-7664-4751-97f0-4fddf75f8177" + "499b467c-ef9d-4e17-bb51-cdca001e0f03" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T133112Z:26eabd23-7664-4751-97f0-4fddf75f8177" + "NORTHCENTRALUS:20160220T140642Z:499b467c-ef9d-4e17-bb51-cdca001e0f03" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1001,19 +1001,19 @@ "no-cache" ], "Date": [ - "Thu, 18 Feb 2016 13:31:12 GMT" + "Sat, 20 Feb 2016 14:06:42 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic0crptestps4427?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzBjcnB0ZXN0cHM0NDI3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Network/networkInterfaces/nic0crptestps4470?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0NzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzBjcnB0ZXN0cHM0NDcwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9b02f471-716d-40ce-9674-9acd8460e39b" + "66b90c24-82de-45c6-9f0c-0eb821384103" ], "accept-language": [ "en-US" @@ -1022,7 +1022,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"nic0crptestps4427\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic0crptestps4427\",\r\n \"etag\": \"W/\\\"1ffce161-c285-41be-a6f6-469b469c6ed5\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8e6b7c55-c92c-4bb9-9b69-29f0ab2a7e59\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic0crptestps4427/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"1ffce161-c285-41be-a6f6-469b469c6ed5\\\"\",\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/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4427\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4427/subnets/subnetcrptestps4427\"\r\n },\r\n \"primary\": true\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic0crptestps4470\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Network/networkInterfaces/nic0crptestps4470\",\r\n \"etag\": \"W/\\\"b2a7e9f0-ee1d-4aff-9669-4c09605a78b4\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"efaafacd-d8dd-4cf7-be1d-c9e56de1f9c6\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Network/networkInterfaces/nic0crptestps4470/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"b2a7e9f0-ee1d-4aff-9669-4c09605a78b4\\\"\",\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/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4470\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4470/subnets/subnetcrptestps4470\"\r\n },\r\n \"primary\": true\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1548" @@ -1037,7 +1037,7 @@ "no-cache" ], "x-ms-request-id": [ - "18df54f2-03b5-4b38-b715-dbdf16c79b38" + "d5c33f88-1f06-4adc-bc74-5adafc98677c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1046,35 +1046,35 @@ "no-cache" ], "ETag": [ - "W/\"1ffce161-c285-41be-a6f6-469b469c6ed5\"" + "W/\"b2a7e9f0-ee1d-4aff-9669-4c09605a78b4\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" + "14978" ], "x-ms-correlation-request-id": [ - "bf501a28-a39b-4c0c-8a94-b12d031e8118" + "175d9d1e-3d23-48e8-ae12-e9f5c30b3957" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T133114Z:bf501a28-a39b-4c0c-8a94-b12d031e8118" + "NORTHCENTRALUS:20160220T140644Z:175d9d1e-3d23-48e8-ae12-e9f5c30b3957" ], "Date": [ - "Thu, 18 Feb 2016 13:31:14 GMT" + "Sat, 20 Feb 2016 14:06:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic0crptestps4427?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzBjcnB0ZXN0cHM0NDI3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Network/networkInterfaces/nic0crptestps4470?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0NzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzBjcnB0ZXN0cHM0NDcwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "174bed11-62b7-48ac-9d21-42b632e7b0be" + "90fbf800-6310-438d-93fe-dfba8143da6d" ], "accept-language": [ "en-US" @@ -1083,7 +1083,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"nic0crptestps4427\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic0crptestps4427\",\r\n \"etag\": \"W/\\\"1ffce161-c285-41be-a6f6-469b469c6ed5\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8e6b7c55-c92c-4bb9-9b69-29f0ab2a7e59\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic0crptestps4427/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"1ffce161-c285-41be-a6f6-469b469c6ed5\\\"\",\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/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4427\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4427/subnets/subnetcrptestps4427\"\r\n },\r\n \"primary\": true\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic0crptestps4470\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Network/networkInterfaces/nic0crptestps4470\",\r\n \"etag\": \"W/\\\"b2a7e9f0-ee1d-4aff-9669-4c09605a78b4\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"efaafacd-d8dd-4cf7-be1d-c9e56de1f9c6\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Network/networkInterfaces/nic0crptestps4470/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"b2a7e9f0-ee1d-4aff-9669-4c09605a78b4\\\"\",\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/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4470\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4470/subnets/subnetcrptestps4470\"\r\n },\r\n \"primary\": true\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1548" @@ -1098,7 +1098,7 @@ "no-cache" ], "x-ms-request-id": [ - "c57df6e5-aa36-42f4-b8e3-dd0ce0fa629e" + "fc351ea6-ce8f-4e98-96a7-678238335dfb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1107,32 +1107,32 @@ "no-cache" ], "ETag": [ - "W/\"1ffce161-c285-41be-a6f6-469b469c6ed5\"" + "W/\"b2a7e9f0-ee1d-4aff-9669-4c09605a78b4\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" + "14977" ], "x-ms-correlation-request-id": [ - "d825f5b5-6efe-451e-9a6b-2748dc0b4c12" + "6ff9473e-b496-4de6-8c08-2cb61d16f8aa" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T133114Z:d825f5b5-6efe-451e-9a6b-2748dc0b4c12" + "NORTHCENTRALUS:20160220T140644Z:6ff9473e-b496-4de6-8c08-2cb61d16f8aa" ], "Date": [ - "Thu, 18 Feb 2016 13:31:14 GMT" + "Sat, 20 Feb 2016 14:06:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic0crptestps4427?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzBjcnB0ZXN0cHM0NDI3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Network/networkInterfaces/nic0crptestps4470?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0NzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzBjcnB0ZXN0cHM0NDcwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"properties\": {\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": [],\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4427/subnets/subnetcrptestps4427\",\r\n \"properties\": {\r\n \"ipConfigurations\": []\r\n }\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4427\"\r\n }\r\n }\r\n }\r\n ],\r\n \"primary\": false,\r\n \"enableIPForwarding\": false\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"properties\": {\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": [],\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4470/subnets/subnetcrptestps4470\",\r\n \"properties\": {\r\n \"ipConfigurations\": []\r\n }\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4470\"\r\n }\r\n }\r\n }\r\n ],\r\n \"primary\": false,\r\n \"enableIPForwarding\": false\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1141,7 +1141,7 @@ "900" ], "x-ms-client-request-id": [ - "5c8a7938-15d9-44ba-bdcd-e454436d2ebc" + "a44e228a-035e-42a7-b44e-c3da97e2570a" ], "accept-language": [ "en-US" @@ -1150,7 +1150,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"nic0crptestps4427\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic0crptestps4427\",\r\n \"etag\": \"W/\\\"1ffce161-c285-41be-a6f6-469b469c6ed5\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8e6b7c55-c92c-4bb9-9b69-29f0ab2a7e59\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic0crptestps4427/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"1ffce161-c285-41be-a6f6-469b469c6ed5\\\"\",\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/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4427\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4427/subnets/subnetcrptestps4427\"\r\n },\r\n \"primary\": true\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic0crptestps4470\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Network/networkInterfaces/nic0crptestps4470\",\r\n \"etag\": \"W/\\\"b2a7e9f0-ee1d-4aff-9669-4c09605a78b4\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"efaafacd-d8dd-4cf7-be1d-c9e56de1f9c6\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Network/networkInterfaces/nic0crptestps4470/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"b2a7e9f0-ee1d-4aff-9669-4c09605a78b4\\\"\",\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/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4470\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4470/subnets/subnetcrptestps4470\"\r\n },\r\n \"primary\": true\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1548" @@ -1165,10 +1165,10 @@ "no-cache" ], "x-ms-request-id": [ - "44f44c59-009e-40e4-a0c1-9b49559d7585" + "9c7c9da6-afa5-4e40-a6af-e1080cb48905" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Network/locations/eastus/operations/44f44c59-009e-40e4-a0c1-9b49559d7585?api-version=2015-06-15" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Network/locations/eastus/operations/9c7c9da6-afa5-4e40-a6af-e1080cb48905?api-version=2015-06-15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1181,28 +1181,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1197" ], "x-ms-correlation-request-id": [ - "3c72fe23-5948-429d-8b32-5986e983f2a4" + "7816af9f-5c76-420b-995c-72a83b8095bc" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T133114Z:3c72fe23-5948-429d-8b32-5986e983f2a4" + "NORTHCENTRALUS:20160220T140644Z:7816af9f-5c76-420b-995c-72a83b8095bc" ], "Date": [ - "Thu, 18 Feb 2016 13:31:13 GMT" + "Sat, 20 Feb 2016 14:06:44 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic1crptestps4427?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzFjcnB0ZXN0cHM0NDI3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Network/networkInterfaces/nic1crptestps4470?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0NzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzFjcnB0ZXN0cHM0NDcwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eea06f1f-f0d0-489b-bec2-b227a0cb5b99" + "62dccc6c-ba62-489f-93d2-e05842b39223" ], "accept-language": [ "en-US" @@ -1211,7 +1211,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/nic1crptestps4427' under resource group 'crptestps4427' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/nic1crptestps4470' under resource group 'crptestps4470' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "170" @@ -1229,13 +1229,13 @@ "gateway" ], "x-ms-request-id": [ - "fe75c438-65df-45b2-b6d6-4f2fb71b0cf6" + "f1456f80-d187-42c5-87fb-6cdc06669905" ], "x-ms-correlation-request-id": [ - "fe75c438-65df-45b2-b6d6-4f2fb71b0cf6" + "f1456f80-d187-42c5-87fb-6cdc06669905" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T133115Z:fe75c438-65df-45b2-b6d6-4f2fb71b0cf6" + "NORTHCENTRALUS:20160220T140644Z:f1456f80-d187-42c5-87fb-6cdc06669905" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1244,19 +1244,19 @@ "no-cache" ], "Date": [ - "Thu, 18 Feb 2016 13:31:14 GMT" + "Sat, 20 Feb 2016 14:06:44 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic1crptestps4427?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzFjcnB0ZXN0cHM0NDI3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Network/networkInterfaces/nic1crptestps4470?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0NzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzFjcnB0ZXN0cHM0NDcwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "94a0f891-8ed1-415f-adf4-99e2dc7f8603" + "3569a11c-3e58-4415-8bd5-d41fcf0df6b0" ], "accept-language": [ "en-US" @@ -1265,7 +1265,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"nic1crptestps4427\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic1crptestps4427\",\r\n \"etag\": \"W/\\\"286224dc-8e79-4aa8-a2fa-34b4bceca707\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"30deaaab-e8a7-4255-948d-6e4aa89ec013\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic1crptestps4427/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"286224dc-8e79-4aa8-a2fa-34b4bceca707\\\"\",\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/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4427/subnets/subnetcrptestps4427\"\r\n },\r\n \"primary\": true\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic1crptestps4470\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Network/networkInterfaces/nic1crptestps4470\",\r\n \"etag\": \"W/\\\"2c362453-5f24-4f74-8f01-9a631cd4aa36\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"65e54852-646f-4692-862a-605b9ddaf0eb\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Network/networkInterfaces/nic1crptestps4470/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"2c362453-5f24-4f74-8f01-9a631cd4aa36\\\"\",\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/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4470/subnets/subnetcrptestps4470\"\r\n },\r\n \"primary\": true\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1335" @@ -1280,7 +1280,7 @@ "no-cache" ], "x-ms-request-id": [ - "6d354e9b-21b8-4b29-aac0-6a5797b3f97f" + "a5090652-3af8-4dee-8195-2139b7107a23" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1289,35 +1289,35 @@ "no-cache" ], "ETag": [ - "W/\"286224dc-8e79-4aa8-a2fa-34b4bceca707\"" + "W/\"2c362453-5f24-4f74-8f01-9a631cd4aa36\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" + "14975" ], "x-ms-correlation-request-id": [ - "5a76d418-3eb4-418a-a7b1-b5293b89a0ce" + "83750b32-676e-4398-836b-f5062648db30" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T133117Z:5a76d418-3eb4-418a-a7b1-b5293b89a0ce" + "NORTHCENTRALUS:20160220T140646Z:83750b32-676e-4398-836b-f5062648db30" ], "Date": [ - "Thu, 18 Feb 2016 13:31:16 GMT" + "Sat, 20 Feb 2016 14:06:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic1crptestps4427?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzFjcnB0ZXN0cHM0NDI3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Network/networkInterfaces/nic1crptestps4470?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0NzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzFjcnB0ZXN0cHM0NDcwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6d41735c-b7e9-4a77-97e3-12ac13d2d377" + "b6a88e0a-4e80-4410-aac8-86363664c8af" ], "accept-language": [ "en-US" @@ -1326,7 +1326,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"nic1crptestps4427\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic1crptestps4427\",\r\n \"etag\": \"W/\\\"286224dc-8e79-4aa8-a2fa-34b4bceca707\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"30deaaab-e8a7-4255-948d-6e4aa89ec013\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic1crptestps4427/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"286224dc-8e79-4aa8-a2fa-34b4bceca707\\\"\",\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/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4427/subnets/subnetcrptestps4427\"\r\n },\r\n \"primary\": true\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic1crptestps4470\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Network/networkInterfaces/nic1crptestps4470\",\r\n \"etag\": \"W/\\\"2c362453-5f24-4f74-8f01-9a631cd4aa36\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"65e54852-646f-4692-862a-605b9ddaf0eb\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Network/networkInterfaces/nic1crptestps4470/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"2c362453-5f24-4f74-8f01-9a631cd4aa36\\\"\",\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/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4470/subnets/subnetcrptestps4470\"\r\n },\r\n \"primary\": true\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1335" @@ -1341,7 +1341,7 @@ "no-cache" ], "x-ms-request-id": [ - "9562cb7e-e304-4b19-9e0c-548f15fc0222" + "f8542c4d-e23d-4267-97c5-4c51e16fc19b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1350,32 +1350,32 @@ "no-cache" ], "ETag": [ - "W/\"286224dc-8e79-4aa8-a2fa-34b4bceca707\"" + "W/\"2c362453-5f24-4f74-8f01-9a631cd4aa36\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" + "14974" ], "x-ms-correlation-request-id": [ - "5301259c-585a-493e-a64a-ee44e6baa4d1" + "c836fb60-4e25-42d6-857f-d3a8531a36ad" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T133117Z:5301259c-585a-493e-a64a-ee44e6baa4d1" + "NORTHCENTRALUS:20160220T140646Z:c836fb60-4e25-42d6-857f-d3a8531a36ad" ], "Date": [ - "Thu, 18 Feb 2016 13:31:16 GMT" + "Sat, 20 Feb 2016 14:06:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic1crptestps4427?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzFjcnB0ZXN0cHM0NDI3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Network/networkInterfaces/nic1crptestps4470?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0NzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzFjcnB0ZXN0cHM0NDcwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"properties\": {\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": [],\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4427/subnets/subnetcrptestps4427\",\r\n \"properties\": {\r\n \"ipConfigurations\": []\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"primary\": false,\r\n \"enableIPForwarding\": false\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"properties\": {\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": [],\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4470/subnets/subnetcrptestps4470\",\r\n \"properties\": {\r\n \"ipConfigurations\": []\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"primary\": false,\r\n \"enableIPForwarding\": false\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1384,7 +1384,7 @@ "687" ], "x-ms-client-request-id": [ - "9716b95c-6b65-4f0a-b4fc-659fe90fd459" + "58bc29f3-fa5f-4244-af75-35c0c979e3a4" ], "accept-language": [ "en-US" @@ -1393,7 +1393,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"nic1crptestps4427\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic1crptestps4427\",\r\n \"etag\": \"W/\\\"286224dc-8e79-4aa8-a2fa-34b4bceca707\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"30deaaab-e8a7-4255-948d-6e4aa89ec013\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic1crptestps4427/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"286224dc-8e79-4aa8-a2fa-34b4bceca707\\\"\",\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/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4427/subnets/subnetcrptestps4427\"\r\n },\r\n \"primary\": true\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic1crptestps4470\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Network/networkInterfaces/nic1crptestps4470\",\r\n \"etag\": \"W/\\\"2c362453-5f24-4f74-8f01-9a631cd4aa36\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"65e54852-646f-4692-862a-605b9ddaf0eb\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Network/networkInterfaces/nic1crptestps4470/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"2c362453-5f24-4f74-8f01-9a631cd4aa36\\\"\",\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/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4470/subnets/subnetcrptestps4470\"\r\n },\r\n \"primary\": true\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1335" @@ -1408,10 +1408,10 @@ "no-cache" ], "x-ms-request-id": [ - "03522ca9-69a0-468f-a492-2508e49b00aa" + "646147da-f85d-4368-a9ef-cdf9fc05bf0d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Network/locations/eastus/operations/03522ca9-69a0-468f-a492-2508e49b00aa?api-version=2015-06-15" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Network/locations/eastus/operations/646147da-f85d-4368-a9ef-cdf9fc05bf0d?api-version=2015-06-15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1424,23 +1424,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1196" ], "x-ms-correlation-request-id": [ - "18e6dce9-9bdf-4a0b-8b1f-8f47d77db123" + "c59b9b8d-c2dc-46ea-8896-1e64b83b10e9" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T133116Z:18e6dce9-9bdf-4a0b-8b1f-8f47d77db123" + "NORTHCENTRALUS:20160220T140646Z:c59b9b8d-c2dc-46ea-8896-1e64b83b10e9" ], "Date": [ - "Thu, 18 Feb 2016 13:31:16 GMT" + "Sat, 20 Feb 2016 14:06:46 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Storage/storageAccounts/stocrptestps4427?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM0NDI3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Storage/storageAccounts/stocrptestps4470?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0NzAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM0NDcwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\"\r\n }\r\n}", "RequestHeaders": { @@ -1451,7 +1451,7 @@ "88" ], "x-ms-client-request-id": [ - "47f28f2f-8c69-49eb-bbc3-0a1f90665024" + "e5d92a6e-c38f-49a3-9149-13e52039ac20" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" @@ -1472,44 +1472,44 @@ "25" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-request-id": [ - "ea1ba43c-3da3-450d-a919-0d085d3635da" + "f3e9c082-56a9-43e1-b7bd-845e68df0b3b" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Storage/operations/12ee61fb-b59d-4712-9308-c02ad06f923f?monitor=true&api-version=2015-06-15" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Storage/operations/cd92e8de-1449-4fb4-985c-d5742dd2529a?monitor=true&api-version=2015-06-15" ], "Server": [ "Microsoft-Azure-Storage-Resource-Provider/1.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "ea1ba43c-3da3-450d-a919-0d085d3635da" + "f3e9c082-56a9-43e1-b7bd-845e68df0b3b" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T133119Z:ea1ba43c-3da3-450d-a919-0d085d3635da" + "NORTHCENTRALUS:20160220T140649Z:f3e9c082-56a9-43e1-b7bd-845e68df0b3b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Thu, 18 Feb 2016 13:31:19 GMT" + "Sat, 20 Feb 2016 14:06:49 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Storage/operations/12ee61fb-b59d-4712-9308-c02ad06f923f?monitor=true&api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzEyZWU2MWZiLWI1OWQtNDcxMi05MzA4LWMwMmFkMDZmOTIzZj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Storage/operations/cd92e8de-1449-4fb4-985c-d5742dd2529a?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2NkOTJlOGRlLTE0NDktNGZiNC05ODVjLWQ1NzQyZGQyNTI5YT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6872fd6e-0a5f-4cd7-89d4-40796ab12633" + "27311163-142f-4b5d-86d6-f84b09c69658" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" @@ -1530,44 +1530,44 @@ "25" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14973" ], "x-ms-request-id": [ - "6a32b9dc-34cb-4953-9964-0d2e344d643e" + "61e056f9-13fe-4909-902d-a6e519e2bfde" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Storage/operations/12ee61fb-b59d-4712-9308-c02ad06f923f?monitor=true&api-version=2015-06-15" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Storage/operations/cd92e8de-1449-4fb4-985c-d5742dd2529a?monitor=true&api-version=2015-06-15" ], "Server": [ "Microsoft-Azure-Storage-Resource-Provider/1.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "6a32b9dc-34cb-4953-9964-0d2e344d643e" + "61e056f9-13fe-4909-902d-a6e519e2bfde" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T133119Z:6a32b9dc-34cb-4953-9964-0d2e344d643e" + "NORTHCENTRALUS:20160220T140649Z:61e056f9-13fe-4909-902d-a6e519e2bfde" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Thu, 18 Feb 2016 13:31:19 GMT" + "Sat, 20 Feb 2016 14:06:49 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Storage/operations/12ee61fb-b59d-4712-9308-c02ad06f923f?monitor=true&api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzEyZWU2MWZiLWI1OWQtNDcxMi05MzA4LWMwMmFkMDZmOTIzZj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Storage/operations/cd92e8de-1449-4fb4-985c-d5742dd2529a?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2NkOTJlOGRlLTE0NDktNGZiNC05ODVjLWQ1NzQyZGQyNTI5YT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b57c0609-c4cb-41a5-8014-c701fdcbb978" + "797dccfe-c39f-44bb-8471-97a40567bd7f" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" @@ -1588,7 +1588,7 @@ "no-cache" ], "x-ms-request-id": [ - "d17b4f0f-3a46-4ecd-8cd7-a44c4d456fd5" + "0f339d0e-9b78-4836-8845-48dad297c929" ], "Cache-Control": [ "no-cache" @@ -1598,37 +1598,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14969" ], "x-ms-correlation-request-id": [ - "d17b4f0f-3a46-4ecd-8cd7-a44c4d456fd5" + "0f339d0e-9b78-4836-8845-48dad297c929" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T133144Z:d17b4f0f-3a46-4ecd-8cd7-a44c4d456fd5" + "NORTHCENTRALUS:20160220T140714Z:0f339d0e-9b78-4836-8845-48dad297c929" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Thu, 18 Feb 2016 13:31:43 GMT" + "Sat, 20 Feb 2016 14:07:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Storage/storageAccounts/stocrptestps4427?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM0NDI3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Storage/storageAccounts/stocrptestps4470?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0NzAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM0NDcwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "49ade74f-c383-40af-8b40-4385196deb7e" + "33a10b0d-66b7-4ab4-8743-b799573472f7" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Storage/storageAccounts/stocrptestps4427\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps4427\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-18T13:31:18.2831047Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps4427.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Storage/storageAccounts/stocrptestps4470\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps4470\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-20T14:06:48.5948155Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps4470.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "506" @@ -1643,7 +1643,7 @@ "no-cache" ], "x-ms-request-id": [ - "1d792612-4ba3-4410-83ea-7905028db3a9" + "c3ece4b1-bc8e-4555-b700-3431fbf86105" ], "Cache-Control": [ "no-cache" @@ -1653,37 +1653,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14968" ], "x-ms-correlation-request-id": [ - "1d792612-4ba3-4410-83ea-7905028db3a9" + "c3ece4b1-bc8e-4555-b700-3431fbf86105" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T133145Z:1d792612-4ba3-4410-83ea-7905028db3a9" + "NORTHCENTRALUS:20160220T140715Z:c3ece4b1-bc8e-4555-b700-3431fbf86105" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Thu, 18 Feb 2016 13:31:44 GMT" + "Sat, 20 Feb 2016 14:07:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Storage/storageAccounts/stocrptestps4427?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM0NDI3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Storage/storageAccounts/stocrptestps4470?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0NzAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM0NDcwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "65bad783-93d2-46aa-bab5-77a0d3e8984c" + "238fa16a-2ff6-4b02-9874-b16671b5a072" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Storage/storageAccounts/stocrptestps4427\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps4427\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-18T13:31:18.2831047Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps4427.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Storage/storageAccounts/stocrptestps4470\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps4470\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-20T14:06:48.5948155Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps4470.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "506" @@ -1698,7 +1698,7 @@ "no-cache" ], "x-ms-request-id": [ - "1d6c0ef0-fee9-43b9-ad64-b691e9729188" + "26f56a9e-c709-4551-b463-c05ae161b8ef" ], "Cache-Control": [ "no-cache" @@ -1708,37 +1708,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14967" ], "x-ms-correlation-request-id": [ - "1d6c0ef0-fee9-43b9-ad64-b691e9729188" + "26f56a9e-c709-4551-b463-c05ae161b8ef" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T133145Z:1d6c0ef0-fee9-43b9-ad64-b691e9729188" + "NORTHCENTRALUS:20160220T140715Z:26f56a9e-c709-4551-b463-c05ae161b8ef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Thu, 18 Feb 2016 13:31:44 GMT" + "Sat, 20 Feb 2016 14:07:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Storage/storageAccounts/stocrptestps4427/listKeys?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM0NDI3L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Storage/storageAccounts/stocrptestps4470/listKeys?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0NzAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM0NDcwL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0997a780-8b41-425f-a6c0-b0d406499a9b" + "bbe0b7ac-8e26-452a-a72d-e9ba3fb9eeda" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"key1\": \"FTeFSrODn9K5e44hllQZgnl2KuRVnHWccLRyhxUWkQdxZVMphrVToUneB0DV2PDlWNijoLh+GmrdVX72faS2zw==\",\r\n \"key2\": \"AJBYNimTLF8uFW2hvmfJ2POopF5Npnz6nVbuEpx3sZoshBXXpnbW1+PfBRNI0TEsBkh2aBWopO2RhoIUQk7dpg==\"\r\n}", + "ResponseBody": "{\r\n \"key1\": \"JMGz6Qp4mGGPcym/BvYnhTXQu6hX4v6llcgg1tT2hxBRVmm+/VIIOo5F2XV4Ye2iwh4ek5QYIUgRBueb6zy+GA==\",\r\n \"key2\": \"TtaBQn7l+D0UdWl/yx905eUDL966KH6kW1lXbdz3xIFtH1j1aQ/u3BYbxUx0RcFRu1+ckyXB0aCT3dRoU9l+oQ==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "198" @@ -1753,7 +1753,7 @@ "no-cache" ], "x-ms-request-id": [ - "3b6623ad-e654-4a4c-a3d2-291bea79949b" + "b3720a83-9b68-4e68-87ca-0069718aebe7" ], "Cache-Control": [ "no-cache" @@ -1763,37 +1763,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1198" ], "x-ms-correlation-request-id": [ - "3b6623ad-e654-4a4c-a3d2-291bea79949b" + "b3720a83-9b68-4e68-87ca-0069718aebe7" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T133145Z:3b6623ad-e654-4a4c-a3d2-291bea79949b" + "NORTHCENTRALUS:20160220T140715Z:b3720a83-9b68-4e68-87ca-0069718aebe7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Thu, 18 Feb 2016 13:31:44 GMT" + "Sat, 20 Feb 2016 14:07:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Storage/storageAccounts/stocrptestps4427/listKeys?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM0NDI3L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Storage/storageAccounts/stocrptestps4470/listKeys?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0NzAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM0NDcwL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "856cc264-ea45-4422-ac56-4d7ed7b279bb" + "ea2974dd-4ac2-4393-a76d-152fd692addb" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"key1\": \"FTeFSrODn9K5e44hllQZgnl2KuRVnHWccLRyhxUWkQdxZVMphrVToUneB0DV2PDlWNijoLh+GmrdVX72faS2zw==\",\r\n \"key2\": \"AJBYNimTLF8uFW2hvmfJ2POopF5Npnz6nVbuEpx3sZoshBXXpnbW1+PfBRNI0TEsBkh2aBWopO2RhoIUQk7dpg==\"\r\n}", + "ResponseBody": "{\r\n \"key1\": \"JMGz6Qp4mGGPcym/BvYnhTXQu6hX4v6llcgg1tT2hxBRVmm+/VIIOo5F2XV4Ye2iwh4ek5QYIUgRBueb6zy+GA==\",\r\n \"key2\": \"TtaBQn7l+D0UdWl/yx905eUDL966KH6kW1lXbdz3xIFtH1j1aQ/u3BYbxUx0RcFRu1+ckyXB0aCT3dRoU9l+oQ==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "198" @@ -1808,7 +1808,7 @@ "no-cache" ], "x-ms-request-id": [ - "c81e2307-c9a4-4090-b15c-e4bc89f75df6" + "55369862-18ff-4818-add2-b1aaee50e74c" ], "Cache-Control": [ "no-cache" @@ -1821,34 +1821,34 @@ "1198" ], "x-ms-correlation-request-id": [ - "c81e2307-c9a4-4090-b15c-e4bc89f75df6" + "55369862-18ff-4818-add2-b1aaee50e74c" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T133520Z:c81e2307-c9a4-4090-b15c-e4bc89f75df6" + "NORTHCENTRALUS:20160220T141120Z:55369862-18ff-4818-add2-b1aaee50e74c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Thu, 18 Feb 2016 13:35:20 GMT" + "Sat, 20 Feb 2016 14:11:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Storage/storageAccounts/stocrptestps4427/listKeys?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM0NDI3L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Storage/storageAccounts/stocrptestps4470/listKeys?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0NzAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM0NDcwL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "efe57d1e-2000-4e69-8fe2-1b905bf8db71" + "e927f7fc-601c-44e0-a1de-9075f73dabf0" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"key1\": \"FTeFSrODn9K5e44hllQZgnl2KuRVnHWccLRyhxUWkQdxZVMphrVToUneB0DV2PDlWNijoLh+GmrdVX72faS2zw==\",\r\n \"key2\": \"AJBYNimTLF8uFW2hvmfJ2POopF5Npnz6nVbuEpx3sZoshBXXpnbW1+PfBRNI0TEsBkh2aBWopO2RhoIUQk7dpg==\"\r\n}", + "ResponseBody": "{\r\n \"key1\": \"JMGz6Qp4mGGPcym/BvYnhTXQu6hX4v6llcgg1tT2hxBRVmm+/VIIOo5F2XV4Ye2iwh4ek5QYIUgRBueb6zy+GA==\",\r\n \"key2\": \"TtaBQn7l+D0UdWl/yx905eUDL966KH6kW1lXbdz3xIFtH1j1aQ/u3BYbxUx0RcFRu1+ckyXB0aCT3dRoU9l+oQ==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "198" @@ -1863,7 +1863,7 @@ "no-cache" ], "x-ms-request-id": [ - "729dc0b8-7325-4fc8-89a3-7b56609c837a" + "952cedd7-10b9-4e0b-bae2-2a893253ca4a" ], "Cache-Control": [ "no-cache" @@ -1876,34 +1876,34 @@ "1197" ], "x-ms-correlation-request-id": [ - "729dc0b8-7325-4fc8-89a3-7b56609c837a" + "952cedd7-10b9-4e0b-bae2-2a893253ca4a" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T133524Z:729dc0b8-7325-4fc8-89a3-7b56609c837a" + "NORTHCENTRALUS:20160220T141121Z:952cedd7-10b9-4e0b-bae2-2a893253ca4a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Thu, 18 Feb 2016 13:35:24 GMT" + "Sat, 20 Feb 2016 14:11:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Storage/storageAccounts/stocrptestps4427/listKeys?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM0NDI3L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Storage/storageAccounts/stocrptestps4470/listKeys?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0NzAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM0NDcwL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7d684b39-bef5-4a5f-abb4-2bec2fa089e3" + "59409014-6dc7-45d7-b6c1-edf4da06b63f" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"key1\": \"FTeFSrODn9K5e44hllQZgnl2KuRVnHWccLRyhxUWkQdxZVMphrVToUneB0DV2PDlWNijoLh+GmrdVX72faS2zw==\",\r\n \"key2\": \"AJBYNimTLF8uFW2hvmfJ2POopF5Npnz6nVbuEpx3sZoshBXXpnbW1+PfBRNI0TEsBkh2aBWopO2RhoIUQk7dpg==\"\r\n}", + "ResponseBody": "{\r\n \"key1\": \"JMGz6Qp4mGGPcym/BvYnhTXQu6hX4v6llcgg1tT2hxBRVmm+/VIIOo5F2XV4Ye2iwh4ek5QYIUgRBueb6zy+GA==\",\r\n \"key2\": \"TtaBQn7l+D0UdWl/yx905eUDL966KH6kW1lXbdz3xIFtH1j1aQ/u3BYbxUx0RcFRu1+ckyXB0aCT3dRoU9l+oQ==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "198" @@ -1918,7 +1918,7 @@ "no-cache" ], "x-ms-request-id": [ - "8ffb0895-82f9-4cdb-875c-3809aba679c3" + "3f2c3382-922a-4b61-bb44-27367ac87758" ], "Cache-Control": [ "no-cache" @@ -1928,28 +1928,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1199" ], "x-ms-correlation-request-id": [ - "8ffb0895-82f9-4cdb-875c-3809aba679c3" + "3f2c3382-922a-4b61-bb44-27367ac87758" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T133856Z:8ffb0895-82f9-4cdb-875c-3809aba679c3" + "NORTHCENTRALUS:20160220T141508Z:3f2c3382-922a-4b61-bb44-27367ac87758" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Thu, 18 Feb 2016 13:38:56 GMT" + "Sat, 20 Feb 2016 14:15:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQ0Mjc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Compute/virtualMachines/vmcrptestps4470?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0NzAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQ0NzA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4427.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 \"name\": \"testDataDisk1\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4427.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"Empty\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4427.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"Empty\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123crptestps4427\",\r\n \"linuxConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic0crptestps4427\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic1crptestps4427\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4470.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 \"name\": \"testDataDisk1\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4470.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"Empty\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4470.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"Empty\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123crptestps4470\",\r\n \"linuxConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Network/networkInterfaces/nic0crptestps4470\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Network/networkInterfaces/nic1crptestps4470\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1958,7 +1958,7 @@ "2011" ], "x-ms-client-request-id": [ - "328e3d93-976c-4cd6-a5fd-92b8c2d6e1ab" + "b5e97939-f230-4cea-a842-1ae8d4fbee82" ], "accept-language": [ "en-US" @@ -1967,7 +1967,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"c534340b-594e-48fe-bc39-b7915f78bee8\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4427.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4427.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4427.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic0crptestps4427\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic1crptestps4427\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427\",\r\n \"name\": \"vmcrptestps4427\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"0147ffcd-2c89-4a78-b326-8f04f2dc9926\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4470.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4470.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4470.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Network/networkInterfaces/nic0crptestps4470\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Network/networkInterfaces/nic1crptestps4470\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Compute/virtualMachines/vmcrptestps4470\",\r\n \"name\": \"vmcrptestps4470\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "2221" @@ -1982,16 +1982,16 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/6dd6de71-2250-44b9-af4b-b20277109779?api-version=2015-06-15" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/9dc23b6e-5f6e-46bf-930c-f072245216c5?api-version=2015-06-15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130995838280309262" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "6dd6de71-2250-44b9-af4b-b20277109779" + "9dc23b6e-5f6e-46bf-930c-f072245216c5" ], "Cache-Control": [ "no-cache" @@ -2004,20 +2004,20 @@ "1199" ], "x-ms-correlation-request-id": [ - "2dd1f1a7-55a1-44c6-a22b-8c1efb7c5731" + "381b3062-5d9e-4d25-9865-c42ea71ef75c" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T133148Z:2dd1f1a7-55a1-44c6-a22b-8c1efb7c5731" + "NORTHCENTRALUS:20160220T140718Z:381b3062-5d9e-4d25-9865-c42ea71ef75c" ], "Date": [ - "Thu, 18 Feb 2016 13:31:47 GMT" + "Sat, 20 Feb 2016 14:07:17 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/6dd6de71-2250-44b9-af4b-b20277109779?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNmRkNmRlNzEtMjI1MC00NGI5LWFmNGItYjIwMjc3MTA5Nzc5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/9dc23b6e-5f6e-46bf-930c-f072245216c5?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOWRjMjNiNmUtNWY2ZS00NmJmLTkzMGMtZjA3MjI0NTIxNmM1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2025,7 +2025,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"6dd6de71-2250-44b9-af4b-b20277109779\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-18T14:31:47.5081423+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"9dc23b6e-5f6e-46bf-930c-f072245216c5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-20T15:07:17.4325452+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2043,10 +2043,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130995838280309262" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "ff486c4d-fd8f-4862-878e-273cd0348682" + "78e3ffa9-135c-488e-a946-cb16b7e8ce8a" ], "Cache-Control": [ "no-cache" @@ -2056,23 +2056,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14959" + "14992" ], "x-ms-correlation-request-id": [ - "ec2da574-4881-4c70-b822-7b005071aaae" + "2ff99586-a610-40fc-85b6-a58b95118fa7" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T133218Z:ec2da574-4881-4c70-b822-7b005071aaae" + "NORTHCENTRALUS:20160220T140748Z:2ff99586-a610-40fc-85b6-a58b95118fa7" ], "Date": [ - "Thu, 18 Feb 2016 13:32:17 GMT" + "Sat, 20 Feb 2016 14:07:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/6dd6de71-2250-44b9-af4b-b20277109779?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNmRkNmRlNzEtMjI1MC00NGI5LWFmNGItYjIwMjc3MTA5Nzc5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/9dc23b6e-5f6e-46bf-930c-f072245216c5?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOWRjMjNiNmUtNWY2ZS00NmJmLTkzMGMtZjA3MjI0NTIxNmM1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2080,7 +2080,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"6dd6de71-2250-44b9-af4b-b20277109779\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-18T14:31:47.5081423+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"9dc23b6e-5f6e-46bf-930c-f072245216c5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-20T15:07:17.4325452+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2098,10 +2098,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130995838280309262" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "49b1c1fd-c166-4756-9f9e-17528d0a07de" + "1ea3ccaa-cd8a-4ceb-9b3b-08bb2a8b7592" ], "Cache-Control": [ "no-cache" @@ -2111,23 +2111,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14958" + "14991" ], "x-ms-correlation-request-id": [ - "5a80e026-4114-4f75-acef-b54c759fe739" + "d27d535f-1775-4e54-ad74-3334559f279b" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T133248Z:5a80e026-4114-4f75-acef-b54c759fe739" + "NORTHCENTRALUS:20160220T140819Z:d27d535f-1775-4e54-ad74-3334559f279b" ], "Date": [ - "Thu, 18 Feb 2016 13:32:48 GMT" + "Sat, 20 Feb 2016 14:08:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/6dd6de71-2250-44b9-af4b-b20277109779?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNmRkNmRlNzEtMjI1MC00NGI5LWFmNGItYjIwMjc3MTA5Nzc5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/9dc23b6e-5f6e-46bf-930c-f072245216c5?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOWRjMjNiNmUtNWY2ZS00NmJmLTkzMGMtZjA3MjI0NTIxNmM1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2135,7 +2135,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"6dd6de71-2250-44b9-af4b-b20277109779\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-18T14:31:47.5081423+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"9dc23b6e-5f6e-46bf-930c-f072245216c5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-20T15:07:17.4325452+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2153,10 +2153,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130995838280309262" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "f18c48e0-5dea-4ff8-9ed3-802051a22b61" + "7f505c6c-787d-463c-9e6c-bc4ecf89146a" ], "Cache-Control": [ "no-cache" @@ -2166,23 +2166,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14957" + "14990" ], "x-ms-correlation-request-id": [ - "26c40059-b3f6-4362-b106-3170baad2d48" + "61b4d2f7-3fe8-40fc-9321-c1ee0de46e53" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T133318Z:26c40059-b3f6-4362-b106-3170baad2d48" + "NORTHCENTRALUS:20160220T140849Z:61b4d2f7-3fe8-40fc-9321-c1ee0de46e53" ], "Date": [ - "Thu, 18 Feb 2016 13:33:18 GMT" + "Sat, 20 Feb 2016 14:08:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/6dd6de71-2250-44b9-af4b-b20277109779?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNmRkNmRlNzEtMjI1MC00NGI5LWFmNGItYjIwMjc3MTA5Nzc5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/9dc23b6e-5f6e-46bf-930c-f072245216c5?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOWRjMjNiNmUtNWY2ZS00NmJmLTkzMGMtZjA3MjI0NTIxNmM1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2190,7 +2190,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"6dd6de71-2250-44b9-af4b-b20277109779\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-18T14:31:47.5081423+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"9dc23b6e-5f6e-46bf-930c-f072245216c5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-20T15:07:17.4325452+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2208,10 +2208,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130995838280309262" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "fe01decb-6d1e-4cd5-acf1-b99fb627f876" + "e62e1c43-9832-4d34-bbe8-a1e7b840d11c" ], "Cache-Control": [ "no-cache" @@ -2221,23 +2221,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14956" + "14989" ], "x-ms-correlation-request-id": [ - "7a08fbd0-480f-4c03-9711-2eded457bda9" + "01ee38a8-adbe-4b7e-bfdb-d010a4f1bea0" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T133349Z:7a08fbd0-480f-4c03-9711-2eded457bda9" + "NORTHCENTRALUS:20160220T140919Z:01ee38a8-adbe-4b7e-bfdb-d010a4f1bea0" ], "Date": [ - "Thu, 18 Feb 2016 13:33:48 GMT" + "Sat, 20 Feb 2016 14:09:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/6dd6de71-2250-44b9-af4b-b20277109779?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNmRkNmRlNzEtMjI1MC00NGI5LWFmNGItYjIwMjc3MTA5Nzc5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/9dc23b6e-5f6e-46bf-930c-f072245216c5?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOWRjMjNiNmUtNWY2ZS00NmJmLTkzMGMtZjA3MjI0NTIxNmM1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2245,7 +2245,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"6dd6de71-2250-44b9-af4b-b20277109779\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-18T14:31:47.5081423+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"9dc23b6e-5f6e-46bf-930c-f072245216c5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-20T15:07:17.4325452+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2263,10 +2263,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130995838280309262" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "a1e2e900-6db0-4e4f-9661-899b51a13ff6" + "4d2e43e2-05f1-41fc-9d21-72f3106ec0a4" ], "Cache-Control": [ "no-cache" @@ -2276,23 +2276,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14955" + "14988" ], "x-ms-correlation-request-id": [ - "1c707a3b-bb4b-47a3-ae64-8e38b9289614" + "5161c70e-6444-4846-bdd9-c33e91d93cc5" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T133419Z:1c707a3b-bb4b-47a3-ae64-8e38b9289614" + "NORTHCENTRALUS:20160220T140949Z:5161c70e-6444-4846-bdd9-c33e91d93cc5" ], "Date": [ - "Thu, 18 Feb 2016 13:34:18 GMT" + "Sat, 20 Feb 2016 14:09:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/6dd6de71-2250-44b9-af4b-b20277109779?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNmRkNmRlNzEtMjI1MC00NGI5LWFmNGItYjIwMjc3MTA5Nzc5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/9dc23b6e-5f6e-46bf-930c-f072245216c5?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOWRjMjNiNmUtNWY2ZS00NmJmLTkzMGMtZjA3MjI0NTIxNmM1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2300,10 +2300,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"6dd6de71-2250-44b9-af4b-b20277109779\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-02-18T14:31:47.5081423+01:00\",\r\n \"endTime\": \"2016-02-18T14:34:40.3809506+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"9dc23b6e-5f6e-46bf-930c-f072245216c5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-20T15:07:17.4325452+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "191" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2318,10 +2318,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130995838280309262" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "88cb00d3-0753-4763-a551-9a9185bab11a" + "8941238b-a476-4c0d-9585-2038d39fae51" ], "Cache-Control": [ "no-cache" @@ -2331,23 +2331,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14954" + "14987" ], "x-ms-correlation-request-id": [ - "c587deb4-b838-4f77-8ef5-508be98148ff" + "31d72295-9f0d-4404-90fd-0e8166b2b199" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T133449Z:c587deb4-b838-4f77-8ef5-508be98148ff" + "NORTHCENTRALUS:20160220T141019Z:31d72295-9f0d-4404-90fd-0e8166b2b199" ], "Date": [ - "Thu, 18 Feb 2016 13:34:48 GMT" + "Sat, 20 Feb 2016 14:10:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQ0Mjc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/9dc23b6e-5f6e-46bf-930c-f072245216c5?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOWRjMjNiNmUtNWY2ZS00NmJmLTkzMGMtZjA3MjI0NTIxNmM1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2355,10 +2355,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"c534340b-594e-48fe-bc39-b7915f78bee8\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4427.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4427.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4427.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic0crptestps4427\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic1crptestps4427\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427\",\r\n \"name\": \"vmcrptestps4427\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"9dc23b6e-5f6e-46bf-930c-f072245216c5\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-02-20T15:07:17.4325452+01:00\",\r\n \"endTime\": \"2016-02-20T15:10:44.2619396+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "2222" + "191" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2373,10 +2373,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130995838280309262" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "203995d9-f8c2-4290-aff8-ccd5e705b016" + "38e5419c-e4ca-4694-a25d-826a2c39fee2" ], "Cache-Control": [ "no-cache" @@ -2386,37 +2386,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14953" + "14986" ], "x-ms-correlation-request-id": [ - "8a5177ab-274d-4833-8318-3c05f75f652b" + "4fafa35d-3a8a-4123-86f2-a2705601198e" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T133449Z:8a5177ab-274d-4833-8318-3c05f75f652b" + "NORTHCENTRALUS:20160220T141049Z:4fafa35d-3a8a-4123-86f2-a2705601198e" ], "Date": [ - "Thu, 18 Feb 2016 13:34:49 GMT" + "Sat, 20 Feb 2016 14:10:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQ0Mjc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Compute/virtualMachines/vmcrptestps4470?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0NzAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQ0NzA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "c4cfc1f9-2493-4e99-b25d-ec0884b77337" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"c534340b-594e-48fe-bc39-b7915f78bee8\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4427.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4427.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4427.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic0crptestps4427\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic1crptestps4427\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427\",\r\n \"name\": \"vmcrptestps4427\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"0147ffcd-2c89-4a78-b326-8f04f2dc9926\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4470.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4470.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4470.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Network/networkInterfaces/nic0crptestps4470\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Network/networkInterfaces/nic1crptestps4470\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Compute/virtualMachines/vmcrptestps4470\",\r\n \"name\": \"vmcrptestps4470\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "2222" @@ -2434,10 +2428,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130995838280309262" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "d04efa8f-74e9-448f-9f4b-3e090a150995" + "d571ebd8-50a5-4588-9be1-eb54b5f71050" ], "Cache-Control": [ "no-cache" @@ -2447,28 +2441,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14952" + "14985" ], "x-ms-correlation-request-id": [ - "85b1a94f-762e-481f-ad86-0c327d3496da" + "b4fe7425-2a2b-4476-add6-eae0ee30b832" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T133449Z:85b1a94f-762e-481f-ad86-0c327d3496da" + "NORTHCENTRALUS:20160220T141050Z:b4fe7425-2a2b-4476-add6-eae0ee30b832" ], "Date": [ - "Thu, 18 Feb 2016 13:34:49 GMT" + "Sat, 20 Feb 2016 14:10:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQ0Mjc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Compute/virtualMachines/vmcrptestps4470?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0NzAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQ0NzA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cb8c4dbf-212e-4397-8af0-9f6b8be4add3" + "e3b67699-9f6f-4167-990b-56d74613a7ba" ], "accept-language": [ "en-US" @@ -2477,7 +2471,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"c534340b-594e-48fe-bc39-b7915f78bee8\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4427.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4427.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4427.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic0crptestps4427\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic1crptestps4427\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427\",\r\n \"name\": \"vmcrptestps4427\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"0147ffcd-2c89-4a78-b326-8f04f2dc9926\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4470.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4470.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4470.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Network/networkInterfaces/nic0crptestps4470\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Network/networkInterfaces/nic1crptestps4470\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Compute/virtualMachines/vmcrptestps4470\",\r\n \"name\": \"vmcrptestps4470\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "2222" @@ -2495,10 +2489,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130995838280309262" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "c87dd271-f616-46af-98c4-c6efd6760839" + "09bfcaed-0e83-4ea5-933e-2aebb19c8a5e" ], "Cache-Control": [ "no-cache" @@ -2508,28 +2502,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14951" + "14984" ], "x-ms-correlation-request-id": [ - "037e719c-85e5-46cc-a0b6-3bec71806662" + "acdbdd2c-4ee1-4e9a-b0f3-233b41e13e8e" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T133450Z:037e719c-85e5-46cc-a0b6-3bec71806662" + "NORTHCENTRALUS:20160220T141050Z:acdbdd2c-4ee1-4e9a-b0f3-233b41e13e8e" ], "Date": [ - "Thu, 18 Feb 2016 13:34:49 GMT" + "Sat, 20 Feb 2016 14:10:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQ0Mjc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Compute/virtualMachines/vmcrptestps4470?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0NzAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQ0NzA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "85a31173-fbf6-4628-bb77-57b15cce367a" + "5fa766ea-fdcd-4581-84a7-b04cf584ffa8" ], "accept-language": [ "en-US" @@ -2538,7 +2532,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"c534340b-594e-48fe-bc39-b7915f78bee8\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4427.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4427.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4427.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic0crptestps4427\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic1crptestps4427\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427\",\r\n \"name\": \"vmcrptestps4427\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"0147ffcd-2c89-4a78-b326-8f04f2dc9926\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4470.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4470.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4470.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Network/networkInterfaces/nic0crptestps4470\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Network/networkInterfaces/nic1crptestps4470\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Compute/virtualMachines/vmcrptestps4470\",\r\n \"name\": \"vmcrptestps4470\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "2222" @@ -2556,10 +2550,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130995838280309262" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "0d381ad4-64d4-49af-85c8-6c23d81d5b65" + "0e3fc626-8ff3-4b20-a4a9-092aa102b195" ], "Cache-Control": [ "no-cache" @@ -2569,28 +2563,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14950" + "14983" ], "x-ms-correlation-request-id": [ - "a5ef1e4d-ce9c-424f-9f46-2749bd342665" + "13778727-ee79-45fd-8d99-b6c253dd92fc" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T133450Z:a5ef1e4d-ce9c-424f-9f46-2749bd342665" + "NORTHCENTRALUS:20160220T141050Z:13778727-ee79-45fd-8d99-b6c253dd92fc" ], "Date": [ - "Thu, 18 Feb 2016 13:34:49 GMT" + "Sat, 20 Feb 2016 14:10:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQ0Mjc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Compute/virtualMachines/vmcrptestps4470?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0NzAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQ0NzA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fdba0694-7092-4e83-8744-234b0d48d8d3" + "fb45f3c0-b8da-40df-8229-dd6b8ab80547" ], "accept-language": [ "en-US" @@ -2599,7 +2593,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"c534340b-594e-48fe-bc39-b7915f78bee8\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4427.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4427.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4427.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic0crptestps4427\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic1crptestps4427\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427\",\r\n \"name\": \"vmcrptestps4427\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"0147ffcd-2c89-4a78-b326-8f04f2dc9926\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4470.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4470.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4470.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Network/networkInterfaces/nic0crptestps4470\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Network/networkInterfaces/nic1crptestps4470\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Compute/virtualMachines/vmcrptestps4470\",\r\n \"name\": \"vmcrptestps4470\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "2222" @@ -2617,10 +2611,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130995838280309262" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "e18692b3-2089-4824-9f52-cb82dacb5338" + "f83f19af-c6b1-4e5b-93f1-f59e4ae22e9c" ], "Cache-Control": [ "no-cache" @@ -2630,28 +2624,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14965" + "14982" ], "x-ms-correlation-request-id": [ - "7e678acc-aec1-4193-ba8d-5fe58100360d" + "0b8f02de-5bb1-4a4d-ac13-475a78c53fd0" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T133520Z:7e678acc-aec1-4193-ba8d-5fe58100360d" + "NORTHCENTRALUS:20160220T141050Z:0b8f02de-5bb1-4a4d-ac13-475a78c53fd0" ], "Date": [ - "Thu, 18 Feb 2016 13:35:19 GMT" + "Sat, 20 Feb 2016 14:10:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQ0Mjc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Compute/virtualMachines/vmcrptestps4470?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0NzAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQ0NzA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b3ccb1aa-c7de-452f-a092-0aa99017a9f9" + "1f9e161c-5436-40c9-8e86-aad8bb8323f4" ], "accept-language": [ "en-US" @@ -2660,10 +2654,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"c534340b-594e-48fe-bc39-b7915f78bee8\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4427.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4427.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4427.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic0crptestps4427\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic1crptestps4427\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRQcm9jZXNzb3JUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRJZGxlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50UHJpdmlsZWdlZFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudEludGVycnVwdFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudERQQ1RpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudFVzZXJUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnROaWNlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50SU9XYWl0VGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZE1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxVc2VkTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRBdmFpbGFibGVNZW1vcnkiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRVc2VkQnlDYWNoZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcVXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1BlclNlYyIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1JlYWRQZXJTZWMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcUGFnZXNXcml0dGVuUGVyU2VjIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VUcmFuc2ZlclRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQXZlcmFnZVJlYWRUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VXcml0ZVRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcVHJhbnNmZXJzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFJlYWRzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFdyaXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xCeXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xXcml0ZUJ5dGVzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VEaXNrUXVldWVMZW5ndGgiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVG90YWwiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVHJhbnNtaXR0ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzUmVjZWl2ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXFBhY2tldHNUcmFuc21pdHRlZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcUGFja2V0c1JlY2VpdmVkIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFJ4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFR4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbENvbGxpc2lvbnMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427/extensions/LinuxDiagnostic\",\r\n \"name\": \"LinuxDiagnostic\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427\",\r\n \"name\": \"vmcrptestps4427\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"0147ffcd-2c89-4a78-b326-8f04f2dc9926\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4470.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4470.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4470.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Network/networkInterfaces/nic0crptestps4470\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Network/networkInterfaces/nic1crptestps4470\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Compute/virtualMachines/vmcrptestps4470\",\r\n \"name\": \"vmcrptestps4470\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "7987" + "2222" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2678,10 +2672,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130995838280309262" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "34da0d18-6c66-4115-8567-d8239ee95091" + "e0470981-c77f-445f-b298-26bbbb559892" ], "Cache-Control": [ "no-cache" @@ -2691,28 +2685,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14959" + "14980" ], "x-ms-correlation-request-id": [ - "ac3f2b9e-b828-4b0d-b069-78fb811f0c18" + "da734983-b162-4d94-93ef-aef1a599d15f" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T133710Z:ac3f2b9e-b828-4b0d-b069-78fb811f0c18" + "NORTHCENTRALUS:20160220T141119Z:da734983-b162-4d94-93ef-aef1a599d15f" ], "Date": [ - "Thu, 18 Feb 2016 13:37:10 GMT" + "Sat, 20 Feb 2016 14:11:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQ0Mjc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Compute/virtualMachines/vmcrptestps4470?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0NzAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQ0NzA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9c0cc2a7-075e-4b09-a395-03df0e522c86" + "1c02af4f-36cf-4850-99e1-bd50cad7cc19" ], "accept-language": [ "en-US" @@ -2721,10 +2715,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"c534340b-594e-48fe-bc39-b7915f78bee8\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4427.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4427.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4427.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic0crptestps4427\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic1crptestps4427\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_DS2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.2\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.2\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"stocrptestps4427.hour.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"stocrptestps4427.minute.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps44272\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps44272.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427/extensions/AzureEnhancedMonitorForLinux\",\r\n \"name\": \"AzureEnhancedMonitorForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRQcm9jZXNzb3JUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRJZGxlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50UHJpdmlsZWdlZFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudEludGVycnVwdFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudERQQ1RpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudFVzZXJUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnROaWNlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50SU9XYWl0VGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZE1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxVc2VkTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRBdmFpbGFibGVNZW1vcnkiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRVc2VkQnlDYWNoZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcVXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1BlclNlYyIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1JlYWRQZXJTZWMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcUGFnZXNXcml0dGVuUGVyU2VjIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VUcmFuc2ZlclRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQXZlcmFnZVJlYWRUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VXcml0ZVRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcVHJhbnNmZXJzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFJlYWRzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFdyaXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xCeXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xXcml0ZUJ5dGVzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VEaXNrUXVldWVMZW5ndGgiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVG90YWwiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVHJhbnNtaXR0ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzUmVjZWl2ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXFBhY2tldHNUcmFuc21pdHRlZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcUGFja2V0c1JlY2VpdmVkIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFJ4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFR4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbENvbGxpc2lvbnMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427/extensions/LinuxDiagnostic\",\r\n \"name\": \"LinuxDiagnostic\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427\",\r\n \"name\": \"vmcrptestps4427\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"0147ffcd-2c89-4a78-b326-8f04f2dc9926\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4470.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4470.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4470.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Network/networkInterfaces/nic0crptestps4470\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Network/networkInterfaces/nic1crptestps4470\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRQcm9jZXNzb3JUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRJZGxlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50UHJpdmlsZWdlZFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudEludGVycnVwdFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudERQQ1RpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudFVzZXJUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnROaWNlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50SU9XYWl0VGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZE1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxVc2VkTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRBdmFpbGFibGVNZW1vcnkiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRVc2VkQnlDYWNoZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcVXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1BlclNlYyIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1JlYWRQZXJTZWMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcUGFnZXNXcml0dGVuUGVyU2VjIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VUcmFuc2ZlclRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQXZlcmFnZVJlYWRUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VXcml0ZVRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcVHJhbnNmZXJzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFJlYWRzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFdyaXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xCeXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xXcml0ZUJ5dGVzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VEaXNrUXVldWVMZW5ndGgiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVG90YWwiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVHJhbnNtaXR0ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzUmVjZWl2ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXFBhY2tldHNUcmFuc21pdHRlZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcUGFja2V0c1JlY2VpdmVkIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFJ4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFR4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbENvbGxpc2lvbnMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Compute/virtualMachines/vmcrptestps4470/extensions/LinuxDiagnostic\",\r\n \"name\": \"LinuxDiagnostic\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Compute/virtualMachines/vmcrptestps4470\",\r\n \"name\": \"vmcrptestps4470\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "9959" + "7987" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2739,10 +2733,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130995838280309262" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "f4f9e91c-c922-4c8a-96c2-0d908cf3e471" + "daeee7eb-7d37-4df6-a514-b0efda817aef" ], "Cache-Control": [ "no-cache" @@ -2752,28 +2746,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14952" + "14973" ], "x-ms-correlation-request-id": [ - "a7e1c004-aadc-428b-8249-778b5b305499" + "df247923-007e-44ca-b3ad-b882baa559f8" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T133842Z:a7e1c004-aadc-428b-8249-778b5b305499" + "NORTHCENTRALUS:20160220T141325Z:df247923-007e-44ca-b3ad-b882baa559f8" ], "Date": [ - "Thu, 18 Feb 2016 13:38:42 GMT" + "Sat, 20 Feb 2016 14:13:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQ0Mjc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Compute/virtualMachines/vmcrptestps4470?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0NzAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQ0NzA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e50c66b1-3637-4913-a3a4-b1eb4f9df300" + "60c35f7b-ded7-4bae-b561-63ace129d121" ], "accept-language": [ "en-US" @@ -2782,7 +2776,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"c534340b-594e-48fe-bc39-b7915f78bee8\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4427.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4427.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4427.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic0crptestps4427\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic1crptestps4427\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_DS2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.2\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.2\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"stocrptestps4427.hour.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"stocrptestps4427.minute.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps44272\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps44272.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427/extensions/AzureEnhancedMonitorForLinux\",\r\n \"name\": \"AzureEnhancedMonitorForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRQcm9jZXNzb3JUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRJZGxlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50UHJpdmlsZWdlZFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudEludGVycnVwdFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudERQQ1RpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudFVzZXJUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnROaWNlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50SU9XYWl0VGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZE1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxVc2VkTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRBdmFpbGFibGVNZW1vcnkiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRVc2VkQnlDYWNoZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcVXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1BlclNlYyIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1JlYWRQZXJTZWMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcUGFnZXNXcml0dGVuUGVyU2VjIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VUcmFuc2ZlclRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQXZlcmFnZVJlYWRUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VXcml0ZVRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcVHJhbnNmZXJzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFJlYWRzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFdyaXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xCeXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xXcml0ZUJ5dGVzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VEaXNrUXVldWVMZW5ndGgiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVG90YWwiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVHJhbnNtaXR0ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzUmVjZWl2ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXFBhY2tldHNUcmFuc21pdHRlZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcUGFja2V0c1JlY2VpdmVkIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFJ4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFR4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbENvbGxpc2lvbnMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427/extensions/LinuxDiagnostic\",\r\n \"name\": \"LinuxDiagnostic\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427\",\r\n \"name\": \"vmcrptestps4427\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"0147ffcd-2c89-4a78-b326-8f04f2dc9926\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4470.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4470.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4470.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Network/networkInterfaces/nic0crptestps4470\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Network/networkInterfaces/nic1crptestps4470\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_DS2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.2\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.2\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"stocrptestps4470.hour.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"stocrptestps4470.minute.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps44702\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps44702.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Compute/virtualMachines/vmcrptestps4470/extensions/AzureEnhancedMonitorForLinux\",\r\n \"name\": \"AzureEnhancedMonitorForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRQcm9jZXNzb3JUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRJZGxlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50UHJpdmlsZWdlZFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudEludGVycnVwdFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudERQQ1RpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudFVzZXJUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnROaWNlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50SU9XYWl0VGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZE1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxVc2VkTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRBdmFpbGFibGVNZW1vcnkiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRVc2VkQnlDYWNoZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcVXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1BlclNlYyIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1JlYWRQZXJTZWMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcUGFnZXNXcml0dGVuUGVyU2VjIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VUcmFuc2ZlclRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQXZlcmFnZVJlYWRUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VXcml0ZVRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcVHJhbnNmZXJzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFJlYWRzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFdyaXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xCeXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xXcml0ZUJ5dGVzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VEaXNrUXVldWVMZW5ndGgiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVG90YWwiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVHJhbnNtaXR0ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzUmVjZWl2ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXFBhY2tldHNUcmFuc21pdHRlZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcUGFja2V0c1JlY2VpdmVkIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFJ4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFR4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbENvbGxpc2lvbnMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Compute/virtualMachines/vmcrptestps4470/extensions/LinuxDiagnostic\",\r\n \"name\": \"LinuxDiagnostic\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Compute/virtualMachines/vmcrptestps4470\",\r\n \"name\": \"vmcrptestps4470\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "9959" @@ -2800,10 +2794,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130995838280309262" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "2bae024b-0bb0-4dbb-b8f2-08d0145fac24" + "3f274052-37b6-473c-9ba4-33be68e28b7d" ], "Cache-Control": [ "no-cache" @@ -2813,28 +2807,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14950" + "14968" ], "x-ms-correlation-request-id": [ - "b861a7f3-e3e1-419a-bbf0-a9fc7ae874e3" + "8039f812-c562-4ef5-b384-42ab46b34880" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T133843Z:b861a7f3-e3e1-419a-bbf0-a9fc7ae874e3" + "NORTHCENTRALUS:20160220T141504Z:8039f812-c562-4ef5-b384-42ab46b34880" ], "Date": [ - "Thu, 18 Feb 2016 13:38:42 GMT" + "Sat, 20 Feb 2016 14:15:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQ0Mjc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Compute/virtualMachines/vmcrptestps4470?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0NzAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQ0NzA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8530fac0-995b-4834-af97-158ded5bcf61" + "877cd07b-558d-46c0-9ca5-c5526d21073a" ], "accept-language": [ "en-US" @@ -2843,7 +2837,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"c534340b-594e-48fe-bc39-b7915f78bee8\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4427.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4427.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4427.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic0crptestps4427\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic1crptestps4427\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_DS2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.2\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.2\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"stocrptestps4427.hour.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"stocrptestps4427.minute.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps44272\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps44272.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427/extensions/AzureEnhancedMonitorForLinux\",\r\n \"name\": \"AzureEnhancedMonitorForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRQcm9jZXNzb3JUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRJZGxlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50UHJpdmlsZWdlZFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudEludGVycnVwdFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudERQQ1RpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudFVzZXJUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnROaWNlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50SU9XYWl0VGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZE1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxVc2VkTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRBdmFpbGFibGVNZW1vcnkiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRVc2VkQnlDYWNoZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcVXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1BlclNlYyIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1JlYWRQZXJTZWMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcUGFnZXNXcml0dGVuUGVyU2VjIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VUcmFuc2ZlclRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQXZlcmFnZVJlYWRUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VXcml0ZVRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcVHJhbnNmZXJzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFJlYWRzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFdyaXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xCeXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xXcml0ZUJ5dGVzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VEaXNrUXVldWVMZW5ndGgiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVG90YWwiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVHJhbnNtaXR0ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzUmVjZWl2ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXFBhY2tldHNUcmFuc21pdHRlZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcUGFja2V0c1JlY2VpdmVkIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFJ4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFR4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbENvbGxpc2lvbnMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427/extensions/LinuxDiagnostic\",\r\n \"name\": \"LinuxDiagnostic\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427\",\r\n \"name\": \"vmcrptestps4427\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"0147ffcd-2c89-4a78-b326-8f04f2dc9926\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4470.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4470.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4470.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Network/networkInterfaces/nic0crptestps4470\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Network/networkInterfaces/nic1crptestps4470\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_DS2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.2\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.2\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"stocrptestps4470.hour.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"stocrptestps4470.minute.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps44702\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps44702.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Compute/virtualMachines/vmcrptestps4470/extensions/AzureEnhancedMonitorForLinux\",\r\n \"name\": \"AzureEnhancedMonitorForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRQcm9jZXNzb3JUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRJZGxlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50UHJpdmlsZWdlZFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudEludGVycnVwdFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudERQQ1RpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudFVzZXJUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnROaWNlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50SU9XYWl0VGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZE1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxVc2VkTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRBdmFpbGFibGVNZW1vcnkiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRVc2VkQnlDYWNoZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcVXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1BlclNlYyIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1JlYWRQZXJTZWMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcUGFnZXNXcml0dGVuUGVyU2VjIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VUcmFuc2ZlclRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQXZlcmFnZVJlYWRUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VXcml0ZVRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcVHJhbnNmZXJzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFJlYWRzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFdyaXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xCeXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xXcml0ZUJ5dGVzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VEaXNrUXVldWVMZW5ndGgiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVG90YWwiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVHJhbnNtaXR0ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzUmVjZWl2ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXFBhY2tldHNUcmFuc21pdHRlZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcUGFja2V0c1JlY2VpdmVkIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFJ4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFR4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbENvbGxpc2lvbnMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Compute/virtualMachines/vmcrptestps4470/extensions/LinuxDiagnostic\",\r\n \"name\": \"LinuxDiagnostic\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Compute/virtualMachines/vmcrptestps4470\",\r\n \"name\": \"vmcrptestps4470\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "9959" @@ -2861,10 +2855,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130995838280309262" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "00568e30-c937-48f4-acb6-6f1e9c98f4fe" + "8e7c48aa-1f53-46dc-a890-0f0704459886" ], "Cache-Control": [ "no-cache" @@ -2874,28 +2868,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14948" + "14966" ], "x-ms-correlation-request-id": [ - "61b246b1-d7b8-473e-994e-f9da877299ea" + "f6c509b4-46f0-4a30-9cc2-6560f9f185a8" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T133900Z:61b246b1-d7b8-473e-994e-f9da877299ea" + "NORTHCENTRALUS:20160220T141504Z:f6c509b4-46f0-4a30-9cc2-6560f9f185a8" ], "Date": [ - "Thu, 18 Feb 2016 13:38:59 GMT" + "Sat, 20 Feb 2016 14:15:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQ0Mjc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Compute/virtualMachines/vmcrptestps4470?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0NzAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQ0NzA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e0ab1f9f-c9b8-4e69-a980-7bfbd96ceee9" + "9dad0adc-05f3-429e-b33b-0442a76d7ccc" ], "accept-language": [ "en-US" @@ -2904,10 +2898,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"c534340b-594e-48fe-bc39-b7915f78bee8\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4427.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4427.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4427.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic0crptestps4427\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic1crptestps4427\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRQcm9jZXNzb3JUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRJZGxlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50UHJpdmlsZWdlZFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudEludGVycnVwdFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudERQQ1RpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudFVzZXJUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnROaWNlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50SU9XYWl0VGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZE1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxVc2VkTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRBdmFpbGFibGVNZW1vcnkiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRVc2VkQnlDYWNoZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcVXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1BlclNlYyIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1JlYWRQZXJTZWMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcUGFnZXNXcml0dGVuUGVyU2VjIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VUcmFuc2ZlclRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQXZlcmFnZVJlYWRUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VXcml0ZVRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcVHJhbnNmZXJzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFJlYWRzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFdyaXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xCeXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xXcml0ZUJ5dGVzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VEaXNrUXVldWVMZW5ndGgiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVG90YWwiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVHJhbnNtaXR0ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzUmVjZWl2ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXFBhY2tldHNUcmFuc21pdHRlZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcUGFja2V0c1JlY2VpdmVkIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFJ4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFR4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbENvbGxpc2lvbnMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427/extensions/LinuxDiagnostic\",\r\n \"name\": \"LinuxDiagnostic\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427\",\r\n \"name\": \"vmcrptestps4427\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"0147ffcd-2c89-4a78-b326-8f04f2dc9926\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4470.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4470.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4470.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Network/networkInterfaces/nic0crptestps4470\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Network/networkInterfaces/nic1crptestps4470\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_DS2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.2\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.2\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"stocrptestps4470.hour.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"stocrptestps4470.minute.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps44702\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps44702.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Compute/virtualMachines/vmcrptestps4470/extensions/AzureEnhancedMonitorForLinux\",\r\n \"name\": \"AzureEnhancedMonitorForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRQcm9jZXNzb3JUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRJZGxlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50UHJpdmlsZWdlZFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudEludGVycnVwdFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudERQQ1RpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudFVzZXJUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnROaWNlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50SU9XYWl0VGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZE1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxVc2VkTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRBdmFpbGFibGVNZW1vcnkiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRVc2VkQnlDYWNoZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcVXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1BlclNlYyIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1JlYWRQZXJTZWMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcUGFnZXNXcml0dGVuUGVyU2VjIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VUcmFuc2ZlclRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQXZlcmFnZVJlYWRUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VXcml0ZVRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcVHJhbnNmZXJzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFJlYWRzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFdyaXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xCeXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xXcml0ZUJ5dGVzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VEaXNrUXVldWVMZW5ndGgiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVG90YWwiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVHJhbnNtaXR0ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzUmVjZWl2ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXFBhY2tldHNUcmFuc21pdHRlZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcUGFja2V0c1JlY2VpdmVkIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFJ4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFR4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbENvbGxpc2lvbnMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Compute/virtualMachines/vmcrptestps4470/extensions/LinuxDiagnostic\",\r\n \"name\": \"LinuxDiagnostic\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Compute/virtualMachines/vmcrptestps4470\",\r\n \"name\": \"vmcrptestps4470\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "7987" + "9959" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2922,10 +2916,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130995838280309262" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "9628b235-14b3-41bb-aef9-3128cfa8b8ce" + "47f36694-63f5-4745-8a00-07ad86cf3a7a" ], "Cache-Control": [ "no-cache" @@ -2938,25 +2932,25 @@ "14964" ], "x-ms-correlation-request-id": [ - "6149834e-a0f9-4c8a-b94b-1506d95d7317" + "022bbcc6-6f6e-488c-a92e-21e3bb1944e4" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T134032Z:6149834e-a0f9-4c8a-b94b-1506d95d7317" + "NORTHCENTRALUS:20160220T141509Z:022bbcc6-6f6e-488c-a92e-21e3bb1944e4" ], "Date": [ - "Thu, 18 Feb 2016 13:40:31 GMT" + "Sat, 20 Feb 2016 14:15:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427?$expand=instanceView&api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQ0Mjc/JGV4cGFuZD1pbnN0YW5jZVZpZXcmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Compute/virtualMachines/vmcrptestps4470?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0NzAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQ0NzA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a15b3bff-3ba1-44f4-8e6e-d93020a9ac05" + "fd87d1b3-05d1-4219-beb8-9293a62a756d" ], "accept-language": [ "en-US" @@ -2965,10 +2959,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"c534340b-594e-48fe-bc39-b7915f78bee8\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4427.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4427.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4427.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic0crptestps4427\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic1crptestps4427\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"WALinuxAgent-2.0.14\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"GuestAgent is running and accepting new configurations.\",\r\n \"time\": \"2016-02-18T14:34:40+01:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"osDisk\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-18T14:31:48.5238222+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-18T14:31:48.4612102+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-18T14:31:48.3987142+01:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-18T14:34:40.3184382+01:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n }\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427\",\r\n \"name\": \"vmcrptestps4427\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"0147ffcd-2c89-4a78-b326-8f04f2dc9926\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4470.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4470.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4470.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Network/networkInterfaces/nic0crptestps4470\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Network/networkInterfaces/nic1crptestps4470\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRQcm9jZXNzb3JUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRJZGxlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50UHJpdmlsZWdlZFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudEludGVycnVwdFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudERQQ1RpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudFVzZXJUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnROaWNlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50SU9XYWl0VGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZE1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxVc2VkTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRBdmFpbGFibGVNZW1vcnkiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRVc2VkQnlDYWNoZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcVXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1BlclNlYyIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1JlYWRQZXJTZWMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcUGFnZXNXcml0dGVuUGVyU2VjIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VUcmFuc2ZlclRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQXZlcmFnZVJlYWRUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VXcml0ZVRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcVHJhbnNmZXJzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFJlYWRzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFdyaXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xCeXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xXcml0ZUJ5dGVzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VEaXNrUXVldWVMZW5ndGgiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVG90YWwiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVHJhbnNtaXR0ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzUmVjZWl2ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXFBhY2tldHNUcmFuc21pdHRlZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcUGFja2V0c1JlY2VpdmVkIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFJ4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFR4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbENvbGxpc2lvbnMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Compute/virtualMachines/vmcrptestps4470/extensions/LinuxDiagnostic\",\r\n \"name\": \"LinuxDiagnostic\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Compute/virtualMachines/vmcrptestps4470\",\r\n \"name\": \"vmcrptestps4470\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "4062" + "7987" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2983,10 +2977,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130995838280309262" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "1e9e2cdc-cc5c-464f-bf33-ec06c87ba9a7" + "e28251d4-3e13-4202-8e07-234130377583" ], "Cache-Control": [ "no-cache" @@ -2996,28 +2990,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14949" + "14960" ], "x-ms-correlation-request-id": [ - "25347d00-df66-45e3-b02e-b273c7d0d66e" + "374bc876-7a0a-4f94-b5b0-1d131fc950a7" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T133450Z:25347d00-df66-45e3-b02e-b273c7d0d66e" + "NORTHCENTRALUS:20160220T141642Z:374bc876-7a0a-4f94-b5b0-1d131fc950a7" ], "Date": [ - "Thu, 18 Feb 2016 13:34:50 GMT" + "Sat, 20 Feb 2016 14:16:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427?$expand=instanceView&api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQ0Mjc/JGV4cGFuZD1pbnN0YW5jZVZpZXcmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Compute/virtualMachines/vmcrptestps4470?$expand=instanceView&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0NzAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQ0NzA/JGV4cGFuZD1pbnN0YW5jZVZpZXcmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b1572b79-63d6-4b54-8f4d-41eb1bed9be1" + "db931147-9794-4959-bd1c-345f3a3574b8" ], "accept-language": [ "en-US" @@ -3026,10 +3020,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"c534340b-594e-48fe-bc39-b7915f78bee8\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4427.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4427.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4427.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic0crptestps4427\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic1crptestps4427\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"WALinuxAgent-2.0.14\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"GuestAgent is running and accepting new configurations.\",\r\n \"time\": \"2016-02-18T14:35:05+01:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"osDisk\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-18T14:31:48.5238222+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-18T14:31:48.4612102+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-18T14:31:48.3987142+01:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-18T14:34:40.3184382+01:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n }\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427\",\r\n \"name\": \"vmcrptestps4427\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"0147ffcd-2c89-4a78-b326-8f04f2dc9926\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4470.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4470.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4470.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Network/networkInterfaces/nic0crptestps4470\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Network/networkInterfaces/nic1crptestps4470\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"WALinuxAgent-2.0.14\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"GuestAgent is running and accepting new configurations.\",\r\n \"time\": \"2016-02-20T15:10:43+01:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"osDisk\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-20T15:07:19.9481114+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-20T15:07:19.6824966+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-20T15:07:19.4168568+01:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-20T15:10:43.980742+01:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n }\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Compute/virtualMachines/vmcrptestps4470\",\r\n \"name\": \"vmcrptestps4470\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "4062" + "4061" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3044,10 +3038,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130995838280309262" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "88c9f275-286f-4d57-9b6e-19ca8aed490f" + "631aad8b-dd6f-493a-844c-ea26352641d7" ], "Cache-Control": [ "no-cache" @@ -3057,28 +3051,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14964" + "14981" ], "x-ms-correlation-request-id": [ - "d20eecfc-ee77-4b77-8610-125866ee46f7" + "8de924d4-85ba-4f73-9188-9b0c929933c1" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T133520Z:d20eecfc-ee77-4b77-8610-125866ee46f7" + "NORTHCENTRALUS:20160220T141050Z:8de924d4-85ba-4f73-9188-9b0c929933c1" ], "Date": [ - "Thu, 18 Feb 2016 13:35:19 GMT" + "Sat, 20 Feb 2016 14:10:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427?$expand=instanceView&api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQ0Mjc/JGV4cGFuZD1pbnN0YW5jZVZpZXcmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Compute/virtualMachines/vmcrptestps4470?$expand=instanceView&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0NzAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQ0NzA/JGV4cGFuZD1pbnN0YW5jZVZpZXcmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0e94044e-9808-4e57-8d8d-e217342466f8" + "a06420a8-7071-44c1-a052-18394b5ecb91" ], "accept-language": [ "en-US" @@ -3087,10 +3081,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"c534340b-594e-48fe-bc39-b7915f78bee8\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4427.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4427.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4427.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic0crptestps4427\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Network/networkInterfaces/nic1crptestps4427\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"WALinuxAgent-2.0.14\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"GuestAgent is running and accepting new configurations.\",\r\n \"time\": \"2016-02-18T14:38:40+01:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": [\r\n {\r\n \"type\": \"Microsoft.OSTCExtensions.AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0.0.5\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.OSTCExtensions.LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.2.0\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\"\r\n }\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"osDisk\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-18T14:37:11.3165201+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-18T14:37:11.3165201+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-18T14:37:11.3165201+01:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"extensions\": [\r\n {\r\n \"name\": \"AzureEnhancedMonitorForLinux\",\r\n \"type\": \"Microsoft.OSTCExtensions.AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0.0.5\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"deploymentId=e8169e5b-6a9d-42d2-b937-e398a93a3b30 roleInstance=_vmcrptestps4427 OK\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"LinuxDiagnostic\",\r\n \"type\": \"Microsoft.OSTCExtensions.LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.2.0\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"Enable succeeded\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-18T14:38:14.6125743+01:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_DS2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.2\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.2\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"stocrptestps4427.hour.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"stocrptestps4427.minute.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps44272\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps44272.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427/extensions/AzureEnhancedMonitorForLinux\",\r\n \"name\": \"AzureEnhancedMonitorForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRQcm9jZXNzb3JUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRJZGxlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50UHJpdmlsZWdlZFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudEludGVycnVwdFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudERQQ1RpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudFVzZXJUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnROaWNlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50SU9XYWl0VGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZE1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxVc2VkTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRBdmFpbGFibGVNZW1vcnkiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRVc2VkQnlDYWNoZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcVXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1BlclNlYyIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1JlYWRQZXJTZWMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcUGFnZXNXcml0dGVuUGVyU2VjIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VUcmFuc2ZlclRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQXZlcmFnZVJlYWRUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VXcml0ZVRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcVHJhbnNmZXJzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFJlYWRzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFdyaXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xCeXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xXcml0ZUJ5dGVzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VEaXNrUXVldWVMZW5ndGgiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVG90YWwiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVHJhbnNtaXR0ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzUmVjZWl2ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXFBhY2tldHNUcmFuc21pdHRlZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcUGFja2V0c1JlY2VpdmVkIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFJ4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFR4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbENvbGxpc2lvbnMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427/extensions/LinuxDiagnostic\",\r\n \"name\": \"LinuxDiagnostic\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427\",\r\n \"name\": \"vmcrptestps4427\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"0147ffcd-2c89-4a78-b326-8f04f2dc9926\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4470.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4470.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4470.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Network/networkInterfaces/nic0crptestps4470\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Network/networkInterfaces/nic1crptestps4470\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"WALinuxAgent-2.0.14\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"GuestAgent is running and accepting new configurations.\",\r\n \"time\": \"2016-02-20T15:11:08+01:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"osDisk\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-20T15:07:19.9481114+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-20T15:07:19.6824966+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-20T15:07:19.4168568+01:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-20T15:10:43.980742+01:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n }\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Compute/virtualMachines/vmcrptestps4470\",\r\n \"name\": \"vmcrptestps4470\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "13399" + "4061" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3105,10 +3099,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130995838280309262" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "4b980b1e-fac7-47b0-8545-eb46c5e6c078" + "29636a6a-ffb1-45b2-9607-fbbaed5aae45" ], "Cache-Control": [ "no-cache" @@ -3118,40 +3112,43 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14949" + "14979" ], "x-ms-correlation-request-id": [ - "1da8bce7-27f0-4a05-9712-f5b3cf1f7eeb" + "fcc526ea-9de5-4e74-9bea-2af5374bd7a3" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T133843Z:1da8bce7-27f0-4a05-9712-f5b3cf1f7eeb" + "NORTHCENTRALUS:20160220T141119Z:fcc526ea-9de5-4e74-9bea-2af5374bd7a3" ], "Date": [ - "Thu, 18 Feb 2016 13:38:42 GMT" + "Sat, 20 Feb 2016 14:11:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Compute/virtualMachines/vmcrptestps4470?$expand=instanceView&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0NzAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQ0NzA/JGV4cGFuZD1pbnN0YW5jZVZpZXcmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e4df94ee-10ae-410d-b6df-e1bdb311e939" + "028fbbcd-729b-4d87-b7e6-9b0c2789f672" + ], + "accept-language": [ + "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/ase/providers/Microsoft.Storage/storageAccounts/ase7745\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"ase7745\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-08-22T12:09:54.6487474Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ase7745.blob.core.windows.net/\",\r\n \"file\": \"https://ase7745.file.core.windows.net/\",\r\n \"queue\": \"https://ase7745.queue.core.windows.net/\",\r\n \"table\": \"https://ase7745.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/benolwtlz6gcrtv2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"benolwtlz6gcrtv2\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-02T15:37:42.4160913Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://benolwtlz6gcrtv2.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/sapresourcegroup/providers/Microsoft.Storage/storageAccounts/de8da241d96f400ba8791029\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"de8da241d96f400ba8791029\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-09-18T13:22:47.5628749Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://de8da241d96f400ba8791029.blob.core.windows.net/\",\r\n \"file\": \"https://de8da241d96f400ba8791029.file.core.windows.net/\",\r\n \"queue\": \"https://de8da241d96f400ba8791029.queue.core.windows.net/\",\r\n \"table\": \"https://de8da241d96f400ba8791029.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/group-4/providers/Microsoft.Storage/storageAccounts/dsdevstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"dsdevstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-22T21:10:41.790448Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://dsdevstorage.blob.core.windows.net/\",\r\n \"file\": \"https://dsdevstorage.file.core.windows.net/\",\r\n \"queue\": \"https://dsdevstorage.queue.core.windows.net/\",\r\n \"table\": \"https://dsdevstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/seduscherp/providers/Microsoft.Storage/storageAccounts/erpio6r4un3ewfnm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"erpio6r4un3ewfnm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-08T12:41:16.6105852Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://erpio6r4un3ewfnm.blob.core.windows.net/\",\r\n \"file\": \"https://erpio6r4un3ewfnm.file.core.windows.net/\",\r\n \"queue\": \"https://erpio6r4un3ewfnm.queue.core.windows.net/\",\r\n \"table\": \"https://erpio6r4un3ewfnm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/fdfdfdf/providers/Microsoft.Storage/storageAccounts/fdfdfdf2537\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"fdfdfdf2537\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-17T10:07:55.1390685Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://fdfdfdf2537.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/fdfdfdf/providers/Microsoft.Storage/storageAccounts/fdfdfdf2925\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"fdfdfdf2925\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-17T10:07:55.715138Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://fdfdfdf2925.blob.core.windows.net/\",\r\n \"file\": \"https://fdfdfdf2925.file.core.windows.net/\",\r\n \"queue\": \"https://fdfdfdf2925.queue.core.windows.net/\",\r\n \"table\": \"https://fdfdfdf2925.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/glsresgroup1/providers/Microsoft.Storage/storageAccounts/glsstoraccount1\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"glsstoraccount1\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T12:37:47.5420067Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://glsstoraccount1.blob.core.windows.net/\",\r\n \"file\": \"https://glsstoraccount1.file.core.windows.net/\",\r\n \"queue\": \"https://glsstoraccount1.queue.core.windows.net/\",\r\n \"table\": \"https://glsstoraccount1.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmpremstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmpremstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:21.7378841Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmpremstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmpremstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmpremstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmpremstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmstdstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmstdstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:22.2160008Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmstdstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmstdstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmstdstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmstdstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-clust-arm/providers/Microsoft.Storage/storageAccounts/gorclustarmstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorclustarmstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-17T14:59:23.8666219Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorclustarmstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorclustarmstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorclustarmstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorclustarmstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {\r\n \"displayName\": \"StorageAccount\"\r\n },\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-test2/providers/Microsoft.Storage/storageAccounts/gortestacc2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gortestacc2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-08T21:18:17.9028388Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gortestacc2.blob.core.windows.net/\",\r\n \"file\": \"https://gortestacc2.file.core.windows.net/\",\r\n \"queue\": \"https://gortestacc2.queue.core.windows.net/\",\r\n \"table\": \"https://gortestacc2.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-04-16T13:50:52.0015725Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspacepremium\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspacepremium\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-10-23T10:22:10.7216809Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspacepremium.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/lvmtest/providers/Microsoft.Storage/storageAccounts/lvmtestspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmtestspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T16:56:41.5005505Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmtestspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmtestspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmtestspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmtestspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-eml2/providers/Microsoft.Storage/storageAccounts/rgeml2stacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"rgeml2stacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T08:00:29.8670815Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://rgeml2stacc.blob.core.windows.net/\",\r\n \"file\": \"https://rgeml2stacc.file.core.windows.net/\",\r\n \"queue\": \"https://rgeml2stacc.queue.core.windows.net/\",\r\n \"table\": \"https://rgeml2stacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/sapcalrg/providers/Microsoft.Storage/storageAccounts/sapcalrg8522\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"sapcalrg8522\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-28T06:54:16.0456896Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sapcalrg8522.blob.core.windows.net/\",\r\n \"file\": \"https://sapcalrg8522.file.core.windows.net/\",\r\n \"queue\": \"https://sapcalrg8522.queue.core.windows.net/\",\r\n \"table\": \"https://sapcalrg8522.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/saperpdemo859644\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"saperpdemo859644\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-01-26T11:02:43.8634331Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saperpdemo859644.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1prstacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1prstacc\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-12-10T17:35:29.0415914Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1prstacc.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1ststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1ststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-10T17:36:26.4810072Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1ststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saphana1ststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saphana1ststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saphana1ststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-sap-linux-docu-tests/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saplinuxdocuststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-24T09:25:04.4473982Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-sap-linux-docu-tests-we/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststaccwe\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saplinuxdocuststaccwe\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-25T13:11:50.5477032Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststaccwe.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststaccwe.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststaccwe.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststaccwe.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/sappseduscsape012612030\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"sappseduscsape012612030\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2016-01-26T11:03:56.0307387Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sappseduscsape012612030.blob.core.windows.net/\",\r\n \"file\": \"https://sappseduscsape012612030.file.core.windows.net/\",\r\n \"queue\": \"https://sappseduscsape012612030.queue.core.windows.net/\",\r\n \"table\": \"https://sappseduscsape012612030.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"westeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/saptesiarm/providers/Microsoft.Storage/storageAccounts/saptesiarm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saptesiarm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-08-27T12:13:00.4049179Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptesiarm.blob.core.windows.net/\",\r\n \"file\": \"https://saptesiarm.file.core.windows.net/\",\r\n \"queue\": \"https://saptesiarm.queue.core.windows.net/\",\r\n \"table\": \"https://saptesiarm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/saptestrajrg/providers/Microsoft.Storage/storageAccounts/saptestrajrg4518\",\r\n \"location\": \"westus\",\r\n \"name\": \"saptestrajrg4518\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-07-22T19:24:21.1065762Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptestrajrg4518.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Storage/storageAccounts/stocrptestps4427\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps4427\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-18T13:31:18.2831047Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps4427.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/temptestsap\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"temptestsap\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-10T14:03:58.3799849Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://temptestsap.blob.core.windows.net/\",\r\n \"file\": \"https://temptestsap.file.core.windows.net/\",\r\n \"queue\": \"https://temptestsap.queue.core.windows.net/\",\r\n \"table\": \"https://temptestsap.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-ts2-test/providers/Microsoft.Storage/storageAccounts/ts2cdlko5xtxpo3k\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"ts2cdlko5xtxpo3k\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-17T14:39:15.5207487Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ts2cdlko5xtxpo3k.blob.core.windows.net/\",\r\n \"file\": \"https://ts2cdlko5xtxpo3k.file.core.windows.net/\",\r\n \"queue\": \"https://ts2cdlko5xtxpo3k.queue.core.windows.net/\",\r\n \"table\": \"https://ts2cdlko5xtxpo3k.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"0147ffcd-2c89-4a78-b326-8f04f2dc9926\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4470.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4470.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4470.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Network/networkInterfaces/nic0crptestps4470\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Network/networkInterfaces/nic1crptestps4470\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"WALinuxAgent-2.0.14\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"GuestAgent is running and accepting new configurations.\",\r\n \"time\": \"2016-02-20T15:14:44+01:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": [\r\n {\r\n \"type\": \"Microsoft.OSTCExtensions.AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0.0.5\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.OSTCExtensions.LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.2.0\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\"\r\n }\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"osDisk\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-20T15:13:31.2317361+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-20T15:13:31.2317361+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-20T15:13:31.2317361+01:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"extensions\": [\r\n {\r\n \"name\": \"AzureEnhancedMonitorForLinux\",\r\n \"type\": \"Microsoft.OSTCExtensions.AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0.0.5\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"deploymentId=c9936a1e-97f4-40d1-8fa7-aa54d8b8d6c3 roleInstance=_vmcrptestps4470 OK\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"LinuxDiagnostic\",\r\n \"type\": \"Microsoft.OSTCExtensions.LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.2.0\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"Enable succeeded\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-20T15:14:45.1228954+01:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_DS2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.2\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.2\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"stocrptestps4470.hour.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"stocrptestps4470.minute.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps44702\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps44702.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Compute/virtualMachines/vmcrptestps4470/extensions/AzureEnhancedMonitorForLinux\",\r\n \"name\": \"AzureEnhancedMonitorForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRQcm9jZXNzb3JUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRJZGxlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50UHJpdmlsZWdlZFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudEludGVycnVwdFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudERQQ1RpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudFVzZXJUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnROaWNlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50SU9XYWl0VGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZE1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxVc2VkTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRBdmFpbGFibGVNZW1vcnkiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRVc2VkQnlDYWNoZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcVXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1BlclNlYyIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1JlYWRQZXJTZWMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcUGFnZXNXcml0dGVuUGVyU2VjIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VUcmFuc2ZlclRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQXZlcmFnZVJlYWRUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VXcml0ZVRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcVHJhbnNmZXJzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFJlYWRzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFdyaXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xCeXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xXcml0ZUJ5dGVzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VEaXNrUXVldWVMZW5ndGgiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVG90YWwiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVHJhbnNtaXR0ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzUmVjZWl2ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXFBhY2tldHNUcmFuc21pdHRlZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcUGFja2V0c1JlY2VpdmVkIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFJ4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFR4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbENvbGxpc2lvbnMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Compute/virtualMachines/vmcrptestps4470/extensions/LinuxDiagnostic\",\r\n \"name\": \"LinuxDiagnostic\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Compute/virtualMachines/vmcrptestps4470\",\r\n \"name\": \"vmcrptestps4470\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "18109" + "13399" ], "Content-Type": [ - "application/json" + "application/json; charset=utf-8" ], "Expires": [ "-1" @@ -3159,30 +3156,33 @@ "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" + ], "x-ms-request-id": [ - "19438d72-e885-4992-af3c-64fa0514c7d9" + "b4041c1b-609f-4bd6-addf-2049fc502b06" ], "Cache-Control": [ "no-cache" ], "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14965" ], "x-ms-correlation-request-id": [ - "19438d72-e885-4992-af3c-64fa0514c7d9" + "fd1bc1d2-43d7-41b5-a3d0-1c74f396f359" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T133451Z:19438d72-e885-4992-af3c-64fa0514c7d9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "NORTHCENTRALUS:20160220T141504Z:fd1bc1d2-43d7-41b5-a3d0-1c74f396f359" ], "Date": [ - "Thu, 18 Feb 2016 13:34:51 GMT" + "Sat, 20 Feb 2016 14:15:04 GMT" ] }, "StatusCode": 200 @@ -3194,16 +3194,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dd04284a-d9e8-4a85-a6cc-eaaf24dadfc3" + "096e2b57-5016-4fed-972e-537a8c67533a" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/ase/providers/Microsoft.Storage/storageAccounts/ase7745\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"ase7745\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-08-22T12:09:54.6487474Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ase7745.blob.core.windows.net/\",\r\n \"file\": \"https://ase7745.file.core.windows.net/\",\r\n \"queue\": \"https://ase7745.queue.core.windows.net/\",\r\n \"table\": \"https://ase7745.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/benolwtlz6gcrtv2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"benolwtlz6gcrtv2\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-02T15:37:42.4160913Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://benolwtlz6gcrtv2.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/sapresourcegroup/providers/Microsoft.Storage/storageAccounts/de8da241d96f400ba8791029\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"de8da241d96f400ba8791029\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-09-18T13:22:47.5628749Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://de8da241d96f400ba8791029.blob.core.windows.net/\",\r\n \"file\": \"https://de8da241d96f400ba8791029.file.core.windows.net/\",\r\n \"queue\": \"https://de8da241d96f400ba8791029.queue.core.windows.net/\",\r\n \"table\": \"https://de8da241d96f400ba8791029.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/group-4/providers/Microsoft.Storage/storageAccounts/dsdevstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"dsdevstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-22T21:10:41.790448Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://dsdevstorage.blob.core.windows.net/\",\r\n \"file\": \"https://dsdevstorage.file.core.windows.net/\",\r\n \"queue\": \"https://dsdevstorage.queue.core.windows.net/\",\r\n \"table\": \"https://dsdevstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/seduscherp/providers/Microsoft.Storage/storageAccounts/erpio6r4un3ewfnm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"erpio6r4un3ewfnm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-08T12:41:16.6105852Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://erpio6r4un3ewfnm.blob.core.windows.net/\",\r\n \"file\": \"https://erpio6r4un3ewfnm.file.core.windows.net/\",\r\n \"queue\": \"https://erpio6r4un3ewfnm.queue.core.windows.net/\",\r\n \"table\": \"https://erpio6r4un3ewfnm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/fdfdfdf/providers/Microsoft.Storage/storageAccounts/fdfdfdf2537\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"fdfdfdf2537\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-17T10:07:55.1390685Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://fdfdfdf2537.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/fdfdfdf/providers/Microsoft.Storage/storageAccounts/fdfdfdf2925\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"fdfdfdf2925\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-17T10:07:55.715138Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://fdfdfdf2925.blob.core.windows.net/\",\r\n \"file\": \"https://fdfdfdf2925.file.core.windows.net/\",\r\n \"queue\": \"https://fdfdfdf2925.queue.core.windows.net/\",\r\n \"table\": \"https://fdfdfdf2925.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/glsresgroup1/providers/Microsoft.Storage/storageAccounts/glsstoraccount1\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"glsstoraccount1\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T12:37:47.5420067Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://glsstoraccount1.blob.core.windows.net/\",\r\n \"file\": \"https://glsstoraccount1.file.core.windows.net/\",\r\n \"queue\": \"https://glsstoraccount1.queue.core.windows.net/\",\r\n \"table\": \"https://glsstoraccount1.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmpremstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmpremstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:21.7378841Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmpremstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmpremstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmpremstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmpremstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmstdstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmstdstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:22.2160008Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmstdstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmstdstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmstdstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmstdstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-clust-arm/providers/Microsoft.Storage/storageAccounts/gorclustarmstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorclustarmstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-17T14:59:23.8666219Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorclustarmstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorclustarmstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorclustarmstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorclustarmstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {\r\n \"displayName\": \"StorageAccount\"\r\n },\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-test2/providers/Microsoft.Storage/storageAccounts/gortestacc2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gortestacc2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-08T21:18:17.9028388Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gortestacc2.blob.core.windows.net/\",\r\n \"file\": \"https://gortestacc2.file.core.windows.net/\",\r\n \"queue\": \"https://gortestacc2.queue.core.windows.net/\",\r\n \"table\": \"https://gortestacc2.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-04-16T13:50:52.0015725Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspacepremium\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspacepremium\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-10-23T10:22:10.7216809Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspacepremium.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/lvmtest/providers/Microsoft.Storage/storageAccounts/lvmtestspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmtestspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T16:56:41.5005505Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmtestspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmtestspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmtestspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmtestspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-eml2/providers/Microsoft.Storage/storageAccounts/rgeml2stacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"rgeml2stacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T08:00:29.8670815Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://rgeml2stacc.blob.core.windows.net/\",\r\n \"file\": \"https://rgeml2stacc.file.core.windows.net/\",\r\n \"queue\": \"https://rgeml2stacc.queue.core.windows.net/\",\r\n \"table\": \"https://rgeml2stacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/sapcalrg/providers/Microsoft.Storage/storageAccounts/sapcalrg8522\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"sapcalrg8522\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-28T06:54:16.0456896Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sapcalrg8522.blob.core.windows.net/\",\r\n \"file\": \"https://sapcalrg8522.file.core.windows.net/\",\r\n \"queue\": \"https://sapcalrg8522.queue.core.windows.net/\",\r\n \"table\": \"https://sapcalrg8522.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/saperpdemo859644\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"saperpdemo859644\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-01-26T11:02:43.8634331Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saperpdemo859644.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1prstacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1prstacc\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-12-10T17:35:29.0415914Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1prstacc.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1ststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1ststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-10T17:36:26.4810072Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1ststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saphana1ststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saphana1ststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saphana1ststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-sap-linux-docu-tests/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saplinuxdocuststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-24T09:25:04.4473982Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-sap-linux-docu-tests-we/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststaccwe\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saplinuxdocuststaccwe\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-25T13:11:50.5477032Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststaccwe.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststaccwe.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststaccwe.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststaccwe.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/sappseduscsape012612030\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"sappseduscsape012612030\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2016-01-26T11:03:56.0307387Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sappseduscsape012612030.blob.core.windows.net/\",\r\n \"file\": \"https://sappseduscsape012612030.file.core.windows.net/\",\r\n \"queue\": \"https://sappseduscsape012612030.queue.core.windows.net/\",\r\n \"table\": \"https://sappseduscsape012612030.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"westeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/saptesiarm/providers/Microsoft.Storage/storageAccounts/saptesiarm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saptesiarm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-08-27T12:13:00.4049179Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptesiarm.blob.core.windows.net/\",\r\n \"file\": \"https://saptesiarm.file.core.windows.net/\",\r\n \"queue\": \"https://saptesiarm.queue.core.windows.net/\",\r\n \"table\": \"https://saptesiarm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/saptestrajrg/providers/Microsoft.Storage/storageAccounts/saptestrajrg4518\",\r\n \"location\": \"westus\",\r\n \"name\": \"saptestrajrg4518\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-07-22T19:24:21.1065762Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptestrajrg4518.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Storage/storageAccounts/stocrptestps4427\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps4427\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-18T13:31:18.2831047Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps4427.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Storage/storageAccounts/stocrptestps44272\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps44272\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-18T13:34:52.8607821Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps44272.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps44272.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps44272.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps44272.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/temptestsap\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"temptestsap\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-10T14:03:58.3799849Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://temptestsap.blob.core.windows.net/\",\r\n \"file\": \"https://temptestsap.file.core.windows.net/\",\r\n \"queue\": \"https://temptestsap.queue.core.windows.net/\",\r\n \"table\": \"https://temptestsap.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-ts2-test/providers/Microsoft.Storage/storageAccounts/ts2cdlko5xtxpo3k\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"ts2cdlko5xtxpo3k\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-17T14:39:15.5207487Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ts2cdlko5xtxpo3k.blob.core.windows.net/\",\r\n \"file\": \"https://ts2cdlko5xtxpo3k.file.core.windows.net/\",\r\n \"queue\": \"https://ts2cdlko5xtxpo3k.queue.core.windows.net/\",\r\n \"table\": \"https://ts2cdlko5xtxpo3k.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/benolwtlz6gcrtv2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"benolwtlz6gcrtv2\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-02T15:37:42.4160913Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://benolwtlz6gcrtv2.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/sapresourcegroup/providers/Microsoft.Storage/storageAccounts/de8da241d96f400ba8791029\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"de8da241d96f400ba8791029\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-09-18T13:22:47.5628749Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://de8da241d96f400ba8791029.blob.core.windows.net/\",\r\n \"file\": \"https://de8da241d96f400ba8791029.file.core.windows.net/\",\r\n \"queue\": \"https://de8da241d96f400ba8791029.queue.core.windows.net/\",\r\n \"table\": \"https://de8da241d96f400ba8791029.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/group-4/providers/Microsoft.Storage/storageAccounts/dsdevstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"dsdevstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-22T21:10:41.790448Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://dsdevstorage.blob.core.windows.net/\",\r\n \"file\": \"https://dsdevstorage.file.core.windows.net/\",\r\n \"queue\": \"https://dsdevstorage.queue.core.windows.net/\",\r\n \"table\": \"https://dsdevstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/seduscherp/providers/Microsoft.Storage/storageAccounts/erpio6r4un3ewfnm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"erpio6r4un3ewfnm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-08T12:41:16.6105852Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://erpio6r4un3ewfnm.blob.core.windows.net/\",\r\n \"file\": \"https://erpio6r4un3ewfnm.file.core.windows.net/\",\r\n \"queue\": \"https://erpio6r4un3ewfnm.queue.core.windows.net/\",\r\n \"table\": \"https://erpio6r4un3ewfnm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/fdfdfdf/providers/Microsoft.Storage/storageAccounts/fdfdfdf2537\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"fdfdfdf2537\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-17T10:07:55.1390685Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://fdfdfdf2537.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/fdfdfdf/providers/Microsoft.Storage/storageAccounts/fdfdfdf2925\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"fdfdfdf2925\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-17T10:07:55.715138Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://fdfdfdf2925.blob.core.windows.net/\",\r\n \"file\": \"https://fdfdfdf2925.file.core.windows.net/\",\r\n \"queue\": \"https://fdfdfdf2925.queue.core.windows.net/\",\r\n \"table\": \"https://fdfdfdf2925.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/glsresgroup1/providers/Microsoft.Storage/storageAccounts/glsstoraccount1\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"glsstoraccount1\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T12:37:47.5420067Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://glsstoraccount1.blob.core.windows.net/\",\r\n \"file\": \"https://glsstoraccount1.file.core.windows.net/\",\r\n \"queue\": \"https://glsstoraccount1.queue.core.windows.net/\",\r\n \"table\": \"https://glsstoraccount1.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmpremstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmpremstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:21.7378841Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmpremstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmpremstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmpremstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmpremstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmstdstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmstdstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:22.2160008Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmstdstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmstdstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmstdstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmstdstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-clust-arm/providers/Microsoft.Storage/storageAccounts/gorclustarmstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorclustarmstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-17T14:59:23.8666219Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorclustarmstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorclustarmstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorclustarmstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorclustarmstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {\r\n \"displayName\": \"StorageAccount\"\r\n },\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-test2/providers/Microsoft.Storage/storageAccounts/gortestacc2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gortestacc2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-08T21:18:17.9028388Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gortestacc2.blob.core.windows.net/\",\r\n \"file\": \"https://gortestacc2.file.core.windows.net/\",\r\n \"queue\": \"https://gortestacc2.queue.core.windows.net/\",\r\n \"table\": \"https://gortestacc2.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-04-16T13:50:52.0015725Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspacepremium\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspacepremium\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-10-23T10:22:10.7216809Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspacepremium.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/lvmtest/providers/Microsoft.Storage/storageAccounts/lvmtestspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmtestspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T16:56:41.5005505Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmtestspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmtestspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmtestspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmtestspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-eml2/providers/Microsoft.Storage/storageAccounts/rgeml2stacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"rgeml2stacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T08:00:29.8670815Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://rgeml2stacc.blob.core.windows.net/\",\r\n \"file\": \"https://rgeml2stacc.file.core.windows.net/\",\r\n \"queue\": \"https://rgeml2stacc.queue.core.windows.net/\",\r\n \"table\": \"https://rgeml2stacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/sapcalrg/providers/Microsoft.Storage/storageAccounts/sapcalrg8522\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"sapcalrg8522\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-28T06:54:16.0456896Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sapcalrg8522.blob.core.windows.net/\",\r\n \"file\": \"https://sapcalrg8522.file.core.windows.net/\",\r\n \"queue\": \"https://sapcalrg8522.queue.core.windows.net/\",\r\n \"table\": \"https://sapcalrg8522.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/saperpdemo859644\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"saperpdemo859644\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-01-26T11:02:43.8634331Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saperpdemo859644.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1prstacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1prstacc\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-12-10T17:35:29.0415914Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1prstacc.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1ststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1ststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-10T17:36:26.4810072Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1ststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saphana1ststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saphana1ststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saphana1ststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-sap-linux-docu-tests/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saplinuxdocuststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-24T09:25:04.4473982Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-sap-linux-docu-tests-we/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststaccwe\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saplinuxdocuststaccwe\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-25T13:11:50.5477032Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststaccwe.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststaccwe.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststaccwe.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststaccwe.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/sappseduscsape012612030\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"sappseduscsape012612030\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2016-01-26T11:03:56.0307387Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sappseduscsape012612030.blob.core.windows.net/\",\r\n \"file\": \"https://sappseduscsape012612030.file.core.windows.net/\",\r\n \"queue\": \"https://sappseduscsape012612030.queue.core.windows.net/\",\r\n \"table\": \"https://sappseduscsape012612030.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"westeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/saptesiarm/providers/Microsoft.Storage/storageAccounts/saptesiarm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saptesiarm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-08-27T12:13:00.4049179Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptesiarm.blob.core.windows.net/\",\r\n \"file\": \"https://saptesiarm.file.core.windows.net/\",\r\n \"queue\": \"https://saptesiarm.queue.core.windows.net/\",\r\n \"table\": \"https://saptesiarm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/saptestrajrg/providers/Microsoft.Storage/storageAccounts/saptestrajrg4518\",\r\n \"location\": \"westus\",\r\n \"name\": \"saptestrajrg4518\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-07-22T19:24:21.1065762Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptestrajrg4518.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Storage/storageAccounts/stocrptestps4470\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps4470\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-20T14:06:48.5948155Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps4470.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/temptestsap\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"temptestsap\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-10T14:03:58.3799849Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://temptestsap.blob.core.windows.net/\",\r\n \"file\": \"https://temptestsap.file.core.windows.net/\",\r\n \"queue\": \"https://temptestsap.queue.core.windows.net/\",\r\n \"table\": \"https://temptestsap.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-ts2-test/providers/Microsoft.Storage/storageAccounts/ts2cdlko5xtxpo3k\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"ts2cdlko5xtxpo3k\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-17T14:39:15.5207487Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ts2cdlko5xtxpo3k.blob.core.windows.net/\",\r\n \"file\": \"https://ts2cdlko5xtxpo3k.file.core.windows.net/\",\r\n \"queue\": \"https://ts2cdlko5xtxpo3k.queue.core.windows.net/\",\r\n \"table\": \"https://ts2cdlko5xtxpo3k.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "18797" + "17417" ], "Content-Type": [ "application/json" @@ -3215,7 +3215,7 @@ "no-cache" ], "x-ms-request-id": [ - "b9e8448e-2271-42bc-bfb2-87e77cb725a5" + "63dbd177-9744-4853-867d-84aee69bc869" ], "Cache-Control": [ "no-cache" @@ -3225,19 +3225,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14994" ], "x-ms-correlation-request-id": [ - "b9e8448e-2271-42bc-bfb2-87e77cb725a5" + "63dbd177-9744-4853-867d-84aee69bc869" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T133520Z:b9e8448e-2271-42bc-bfb2-87e77cb725a5" + "NORTHCENTRALUS:20160220T141051Z:63dbd177-9744-4853-867d-84aee69bc869" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Thu, 18 Feb 2016 13:35:19 GMT" + "Sat, 20 Feb 2016 14:10:51 GMT" ] }, "StatusCode": 200 @@ -3249,16 +3249,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "204577bb-31f0-4ebe-97ca-3933b25aabb5" + "97eb78a8-9b70-4640-a565-a18f7d2ed5cf" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/ase/providers/Microsoft.Storage/storageAccounts/ase7745\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"ase7745\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-08-22T12:09:54.6487474Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ase7745.blob.core.windows.net/\",\r\n \"file\": \"https://ase7745.file.core.windows.net/\",\r\n \"queue\": \"https://ase7745.queue.core.windows.net/\",\r\n \"table\": \"https://ase7745.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/benolwtlz6gcrtv2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"benolwtlz6gcrtv2\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-02T15:37:42.4160913Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://benolwtlz6gcrtv2.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/sapresourcegroup/providers/Microsoft.Storage/storageAccounts/de8da241d96f400ba8791029\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"de8da241d96f400ba8791029\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-09-18T13:22:47.5628749Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://de8da241d96f400ba8791029.blob.core.windows.net/\",\r\n \"file\": \"https://de8da241d96f400ba8791029.file.core.windows.net/\",\r\n \"queue\": \"https://de8da241d96f400ba8791029.queue.core.windows.net/\",\r\n \"table\": \"https://de8da241d96f400ba8791029.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/group-4/providers/Microsoft.Storage/storageAccounts/dsdevstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"dsdevstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-22T21:10:41.790448Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://dsdevstorage.blob.core.windows.net/\",\r\n \"file\": \"https://dsdevstorage.file.core.windows.net/\",\r\n \"queue\": \"https://dsdevstorage.queue.core.windows.net/\",\r\n \"table\": \"https://dsdevstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/seduscherp/providers/Microsoft.Storage/storageAccounts/erpio6r4un3ewfnm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"erpio6r4un3ewfnm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-08T12:41:16.6105852Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://erpio6r4un3ewfnm.blob.core.windows.net/\",\r\n \"file\": \"https://erpio6r4un3ewfnm.file.core.windows.net/\",\r\n \"queue\": \"https://erpio6r4un3ewfnm.queue.core.windows.net/\",\r\n \"table\": \"https://erpio6r4un3ewfnm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/fdfdfdf/providers/Microsoft.Storage/storageAccounts/fdfdfdf2537\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"fdfdfdf2537\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-17T10:07:55.1390685Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://fdfdfdf2537.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/fdfdfdf/providers/Microsoft.Storage/storageAccounts/fdfdfdf2925\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"fdfdfdf2925\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-17T10:07:55.715138Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://fdfdfdf2925.blob.core.windows.net/\",\r\n \"file\": \"https://fdfdfdf2925.file.core.windows.net/\",\r\n \"queue\": \"https://fdfdfdf2925.queue.core.windows.net/\",\r\n \"table\": \"https://fdfdfdf2925.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/glsresgroup1/providers/Microsoft.Storage/storageAccounts/glsstoraccount1\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"glsstoraccount1\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T12:37:47.5420067Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://glsstoraccount1.blob.core.windows.net/\",\r\n \"file\": \"https://glsstoraccount1.file.core.windows.net/\",\r\n \"queue\": \"https://glsstoraccount1.queue.core.windows.net/\",\r\n \"table\": \"https://glsstoraccount1.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmpremstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmpremstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:21.7378841Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmpremstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmpremstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmpremstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmpremstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmstdstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmstdstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:22.2160008Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmstdstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmstdstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmstdstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmstdstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-clust-arm/providers/Microsoft.Storage/storageAccounts/gorclustarmstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorclustarmstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-17T14:59:23.8666219Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorclustarmstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorclustarmstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorclustarmstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorclustarmstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {\r\n \"displayName\": \"StorageAccount\"\r\n },\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-test2/providers/Microsoft.Storage/storageAccounts/gortestacc2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gortestacc2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-08T21:18:17.9028388Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gortestacc2.blob.core.windows.net/\",\r\n \"file\": \"https://gortestacc2.file.core.windows.net/\",\r\n \"queue\": \"https://gortestacc2.queue.core.windows.net/\",\r\n \"table\": \"https://gortestacc2.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-04-16T13:50:52.0015725Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspacepremium\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspacepremium\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-10-23T10:22:10.7216809Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspacepremium.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/lvmtest/providers/Microsoft.Storage/storageAccounts/lvmtestspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmtestspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T16:56:41.5005505Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmtestspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmtestspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmtestspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmtestspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-eml2/providers/Microsoft.Storage/storageAccounts/rgeml2stacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"rgeml2stacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T08:00:29.8670815Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://rgeml2stacc.blob.core.windows.net/\",\r\n \"file\": \"https://rgeml2stacc.file.core.windows.net/\",\r\n \"queue\": \"https://rgeml2stacc.queue.core.windows.net/\",\r\n \"table\": \"https://rgeml2stacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/sapcalrg/providers/Microsoft.Storage/storageAccounts/sapcalrg8522\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"sapcalrg8522\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-28T06:54:16.0456896Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sapcalrg8522.blob.core.windows.net/\",\r\n \"file\": \"https://sapcalrg8522.file.core.windows.net/\",\r\n \"queue\": \"https://sapcalrg8522.queue.core.windows.net/\",\r\n \"table\": \"https://sapcalrg8522.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/saperpdemo859644\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"saperpdemo859644\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-01-26T11:02:43.8634331Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saperpdemo859644.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1prstacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1prstacc\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-12-10T17:35:29.0415914Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1prstacc.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1ststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1ststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-10T17:36:26.4810072Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1ststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saphana1ststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saphana1ststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saphana1ststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-sap-linux-docu-tests/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saplinuxdocuststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-24T09:25:04.4473982Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-sap-linux-docu-tests-we/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststaccwe\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saplinuxdocuststaccwe\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-25T13:11:50.5477032Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststaccwe.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststaccwe.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststaccwe.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststaccwe.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/sappseduscsape012612030\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"sappseduscsape012612030\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2016-01-26T11:03:56.0307387Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sappseduscsape012612030.blob.core.windows.net/\",\r\n \"file\": \"https://sappseduscsape012612030.file.core.windows.net/\",\r\n \"queue\": \"https://sappseduscsape012612030.queue.core.windows.net/\",\r\n \"table\": \"https://sappseduscsape012612030.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"westeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/saptesiarm/providers/Microsoft.Storage/storageAccounts/saptesiarm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saptesiarm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-08-27T12:13:00.4049179Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptesiarm.blob.core.windows.net/\",\r\n \"file\": \"https://saptesiarm.file.core.windows.net/\",\r\n \"queue\": \"https://saptesiarm.queue.core.windows.net/\",\r\n \"table\": \"https://saptesiarm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/saptestrajrg/providers/Microsoft.Storage/storageAccounts/saptestrajrg4518\",\r\n \"location\": \"westus\",\r\n \"name\": \"saptestrajrg4518\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-07-22T19:24:21.1065762Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptestrajrg4518.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Storage/storageAccounts/stocrptestps4427\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps4427\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-18T13:31:18.2831047Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps4427.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Storage/storageAccounts/stocrptestps44272\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps44272\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-18T13:34:52.8607821Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps44272.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps44272.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps44272.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps44272.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/temptestsap\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"temptestsap\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-10T14:03:58.3799849Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://temptestsap.blob.core.windows.net/\",\r\n \"file\": \"https://temptestsap.file.core.windows.net/\",\r\n \"queue\": \"https://temptestsap.queue.core.windows.net/\",\r\n \"table\": \"https://temptestsap.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-ts2-test/providers/Microsoft.Storage/storageAccounts/ts2cdlko5xtxpo3k\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"ts2cdlko5xtxpo3k\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-17T14:39:15.5207487Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ts2cdlko5xtxpo3k.blob.core.windows.net/\",\r\n \"file\": \"https://ts2cdlko5xtxpo3k.file.core.windows.net/\",\r\n \"queue\": \"https://ts2cdlko5xtxpo3k.queue.core.windows.net/\",\r\n \"table\": \"https://ts2cdlko5xtxpo3k.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/benolwtlz6gcrtv2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"benolwtlz6gcrtv2\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-02T15:37:42.4160913Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://benolwtlz6gcrtv2.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/sapresourcegroup/providers/Microsoft.Storage/storageAccounts/de8da241d96f400ba8791029\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"de8da241d96f400ba8791029\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-09-18T13:22:47.5628749Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://de8da241d96f400ba8791029.blob.core.windows.net/\",\r\n \"file\": \"https://de8da241d96f400ba8791029.file.core.windows.net/\",\r\n \"queue\": \"https://de8da241d96f400ba8791029.queue.core.windows.net/\",\r\n \"table\": \"https://de8da241d96f400ba8791029.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/group-4/providers/Microsoft.Storage/storageAccounts/dsdevstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"dsdevstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-22T21:10:41.790448Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://dsdevstorage.blob.core.windows.net/\",\r\n \"file\": \"https://dsdevstorage.file.core.windows.net/\",\r\n \"queue\": \"https://dsdevstorage.queue.core.windows.net/\",\r\n \"table\": \"https://dsdevstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/seduscherp/providers/Microsoft.Storage/storageAccounts/erpio6r4un3ewfnm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"erpio6r4un3ewfnm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-08T12:41:16.6105852Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://erpio6r4un3ewfnm.blob.core.windows.net/\",\r\n \"file\": \"https://erpio6r4un3ewfnm.file.core.windows.net/\",\r\n \"queue\": \"https://erpio6r4un3ewfnm.queue.core.windows.net/\",\r\n \"table\": \"https://erpio6r4un3ewfnm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/fdfdfdf/providers/Microsoft.Storage/storageAccounts/fdfdfdf2537\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"fdfdfdf2537\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-17T10:07:55.1390685Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://fdfdfdf2537.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/fdfdfdf/providers/Microsoft.Storage/storageAccounts/fdfdfdf2925\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"fdfdfdf2925\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-17T10:07:55.715138Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://fdfdfdf2925.blob.core.windows.net/\",\r\n \"file\": \"https://fdfdfdf2925.file.core.windows.net/\",\r\n \"queue\": \"https://fdfdfdf2925.queue.core.windows.net/\",\r\n \"table\": \"https://fdfdfdf2925.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/glsresgroup1/providers/Microsoft.Storage/storageAccounts/glsstoraccount1\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"glsstoraccount1\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T12:37:47.5420067Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://glsstoraccount1.blob.core.windows.net/\",\r\n \"file\": \"https://glsstoraccount1.file.core.windows.net/\",\r\n \"queue\": \"https://glsstoraccount1.queue.core.windows.net/\",\r\n \"table\": \"https://glsstoraccount1.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmpremstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmpremstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:21.7378841Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmpremstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmpremstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmpremstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmpremstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmstdstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmstdstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:22.2160008Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmstdstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmstdstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmstdstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmstdstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-clust-arm/providers/Microsoft.Storage/storageAccounts/gorclustarmstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorclustarmstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-17T14:59:23.8666219Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorclustarmstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorclustarmstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorclustarmstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorclustarmstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {\r\n \"displayName\": \"StorageAccount\"\r\n },\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-test2/providers/Microsoft.Storage/storageAccounts/gortestacc2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gortestacc2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-08T21:18:17.9028388Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gortestacc2.blob.core.windows.net/\",\r\n \"file\": \"https://gortestacc2.file.core.windows.net/\",\r\n \"queue\": \"https://gortestacc2.queue.core.windows.net/\",\r\n \"table\": \"https://gortestacc2.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-04-16T13:50:52.0015725Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspacepremium\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspacepremium\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-10-23T10:22:10.7216809Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspacepremium.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/lvmtest/providers/Microsoft.Storage/storageAccounts/lvmtestspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmtestspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T16:56:41.5005505Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmtestspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmtestspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmtestspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmtestspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-eml2/providers/Microsoft.Storage/storageAccounts/rgeml2stacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"rgeml2stacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T08:00:29.8670815Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://rgeml2stacc.blob.core.windows.net/\",\r\n \"file\": \"https://rgeml2stacc.file.core.windows.net/\",\r\n \"queue\": \"https://rgeml2stacc.queue.core.windows.net/\",\r\n \"table\": \"https://rgeml2stacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/sapcalrg/providers/Microsoft.Storage/storageAccounts/sapcalrg8522\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"sapcalrg8522\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-28T06:54:16.0456896Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sapcalrg8522.blob.core.windows.net/\",\r\n \"file\": \"https://sapcalrg8522.file.core.windows.net/\",\r\n \"queue\": \"https://sapcalrg8522.queue.core.windows.net/\",\r\n \"table\": \"https://sapcalrg8522.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/saperpdemo859644\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"saperpdemo859644\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-01-26T11:02:43.8634331Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saperpdemo859644.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1prstacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1prstacc\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-12-10T17:35:29.0415914Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1prstacc.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1ststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1ststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-10T17:36:26.4810072Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1ststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saphana1ststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saphana1ststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saphana1ststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-sap-linux-docu-tests/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saplinuxdocuststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-24T09:25:04.4473982Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-sap-linux-docu-tests-we/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststaccwe\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saplinuxdocuststaccwe\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-25T13:11:50.5477032Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststaccwe.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststaccwe.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststaccwe.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststaccwe.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/sappseduscsape012612030\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"sappseduscsape012612030\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2016-01-26T11:03:56.0307387Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sappseduscsape012612030.blob.core.windows.net/\",\r\n \"file\": \"https://sappseduscsape012612030.file.core.windows.net/\",\r\n \"queue\": \"https://sappseduscsape012612030.queue.core.windows.net/\",\r\n \"table\": \"https://sappseduscsape012612030.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"westeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/saptesiarm/providers/Microsoft.Storage/storageAccounts/saptesiarm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saptesiarm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-08-27T12:13:00.4049179Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptesiarm.blob.core.windows.net/\",\r\n \"file\": \"https://saptesiarm.file.core.windows.net/\",\r\n \"queue\": \"https://saptesiarm.queue.core.windows.net/\",\r\n \"table\": \"https://saptesiarm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/saptestrajrg/providers/Microsoft.Storage/storageAccounts/saptestrajrg4518\",\r\n \"location\": \"westus\",\r\n \"name\": \"saptestrajrg4518\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-07-22T19:24:21.1065762Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptestrajrg4518.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Storage/storageAccounts/stocrptestps4470\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps4470\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-20T14:06:48.5948155Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps4470.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Storage/storageAccounts/stocrptestps44702\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps44702\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-20T14:10:52.4792283Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps44702.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps44702.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps44702.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps44702.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/temptestsap\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"temptestsap\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-10T14:03:58.3799849Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://temptestsap.blob.core.windows.net/\",\r\n \"file\": \"https://temptestsap.file.core.windows.net/\",\r\n \"queue\": \"https://temptestsap.queue.core.windows.net/\",\r\n \"table\": \"https://temptestsap.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-ts2-test/providers/Microsoft.Storage/storageAccounts/ts2cdlko5xtxpo3k\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"ts2cdlko5xtxpo3k\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-17T14:39:15.5207487Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ts2cdlko5xtxpo3k.blob.core.windows.net/\",\r\n \"file\": \"https://ts2cdlko5xtxpo3k.file.core.windows.net/\",\r\n \"queue\": \"https://ts2cdlko5xtxpo3k.queue.core.windows.net/\",\r\n \"table\": \"https://ts2cdlko5xtxpo3k.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "18797" + "18105" ], "Content-Type": [ "application/json" @@ -3270,7 +3270,7 @@ "no-cache" ], "x-ms-request-id": [ - "30204c3a-4f82-4e20-8558-7f9adf5794c3" + "c6a7c42a-d2d0-4482-a701-246e7b7e74af" ], "Cache-Control": [ "no-cache" @@ -3280,19 +3280,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14990" ], "x-ms-correlation-request-id": [ - "30204c3a-4f82-4e20-8558-7f9adf5794c3" + "c6a7c42a-d2d0-4482-a701-246e7b7e74af" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T133536Z:30204c3a-4f82-4e20-8558-7f9adf5794c3" + "NORTHCENTRALUS:20160220T141119Z:c6a7c42a-d2d0-4482-a701-246e7b7e74af" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Thu, 18 Feb 2016 13:35:36 GMT" + "Sat, 20 Feb 2016 14:11:18 GMT" ] }, "StatusCode": 200 @@ -3304,16 +3304,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2e1738d2-4b58-4727-bc45-65898fd7d384" + "4a1e8ac7-3004-419a-8f80-3b391d713be4" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/ase/providers/Microsoft.Storage/storageAccounts/ase7745\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"ase7745\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-08-22T12:09:54.6487474Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ase7745.blob.core.windows.net/\",\r\n \"file\": \"https://ase7745.file.core.windows.net/\",\r\n \"queue\": \"https://ase7745.queue.core.windows.net/\",\r\n \"table\": \"https://ase7745.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/benolwtlz6gcrtv2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"benolwtlz6gcrtv2\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-02T15:37:42.4160913Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://benolwtlz6gcrtv2.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/sapresourcegroup/providers/Microsoft.Storage/storageAccounts/de8da241d96f400ba8791029\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"de8da241d96f400ba8791029\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-09-18T13:22:47.5628749Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://de8da241d96f400ba8791029.blob.core.windows.net/\",\r\n \"file\": \"https://de8da241d96f400ba8791029.file.core.windows.net/\",\r\n \"queue\": \"https://de8da241d96f400ba8791029.queue.core.windows.net/\",\r\n \"table\": \"https://de8da241d96f400ba8791029.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/group-4/providers/Microsoft.Storage/storageAccounts/dsdevstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"dsdevstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-22T21:10:41.790448Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://dsdevstorage.blob.core.windows.net/\",\r\n \"file\": \"https://dsdevstorage.file.core.windows.net/\",\r\n \"queue\": \"https://dsdevstorage.queue.core.windows.net/\",\r\n \"table\": \"https://dsdevstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/seduscherp/providers/Microsoft.Storage/storageAccounts/erpio6r4un3ewfnm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"erpio6r4un3ewfnm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-08T12:41:16.6105852Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://erpio6r4un3ewfnm.blob.core.windows.net/\",\r\n \"file\": \"https://erpio6r4un3ewfnm.file.core.windows.net/\",\r\n \"queue\": \"https://erpio6r4un3ewfnm.queue.core.windows.net/\",\r\n \"table\": \"https://erpio6r4un3ewfnm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/fdfdfdf/providers/Microsoft.Storage/storageAccounts/fdfdfdf2537\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"fdfdfdf2537\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-17T10:07:55.1390685Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://fdfdfdf2537.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/fdfdfdf/providers/Microsoft.Storage/storageAccounts/fdfdfdf2925\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"fdfdfdf2925\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-17T10:07:55.715138Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://fdfdfdf2925.blob.core.windows.net/\",\r\n \"file\": \"https://fdfdfdf2925.file.core.windows.net/\",\r\n \"queue\": \"https://fdfdfdf2925.queue.core.windows.net/\",\r\n \"table\": \"https://fdfdfdf2925.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/glsresgroup1/providers/Microsoft.Storage/storageAccounts/glsstoraccount1\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"glsstoraccount1\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T12:37:47.5420067Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://glsstoraccount1.blob.core.windows.net/\",\r\n \"file\": \"https://glsstoraccount1.file.core.windows.net/\",\r\n \"queue\": \"https://glsstoraccount1.queue.core.windows.net/\",\r\n \"table\": \"https://glsstoraccount1.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmpremstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmpremstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:21.7378841Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmpremstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmpremstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmpremstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmpremstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmstdstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmstdstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:22.2160008Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmstdstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmstdstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmstdstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmstdstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-clust-arm/providers/Microsoft.Storage/storageAccounts/gorclustarmstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorclustarmstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-17T14:59:23.8666219Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorclustarmstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorclustarmstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorclustarmstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorclustarmstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {\r\n \"displayName\": \"StorageAccount\"\r\n },\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-test2/providers/Microsoft.Storage/storageAccounts/gortestacc2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gortestacc2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-08T21:18:17.9028388Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gortestacc2.blob.core.windows.net/\",\r\n \"file\": \"https://gortestacc2.file.core.windows.net/\",\r\n \"queue\": \"https://gortestacc2.queue.core.windows.net/\",\r\n \"table\": \"https://gortestacc2.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-04-16T13:50:52.0015725Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspacepremium\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspacepremium\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-10-23T10:22:10.7216809Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspacepremium.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/lvmtest/providers/Microsoft.Storage/storageAccounts/lvmtestspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmtestspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T16:56:41.5005505Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmtestspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmtestspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmtestspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmtestspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-eml2/providers/Microsoft.Storage/storageAccounts/rgeml2stacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"rgeml2stacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T08:00:29.8670815Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://rgeml2stacc.blob.core.windows.net/\",\r\n \"file\": \"https://rgeml2stacc.file.core.windows.net/\",\r\n \"queue\": \"https://rgeml2stacc.queue.core.windows.net/\",\r\n \"table\": \"https://rgeml2stacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/sapcalrg/providers/Microsoft.Storage/storageAccounts/sapcalrg8522\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"sapcalrg8522\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-28T06:54:16.0456896Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sapcalrg8522.blob.core.windows.net/\",\r\n \"file\": \"https://sapcalrg8522.file.core.windows.net/\",\r\n \"queue\": \"https://sapcalrg8522.queue.core.windows.net/\",\r\n \"table\": \"https://sapcalrg8522.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/saperpdemo859644\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"saperpdemo859644\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-01-26T11:02:43.8634331Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saperpdemo859644.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1prstacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1prstacc\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-12-10T17:35:29.0415914Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1prstacc.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1ststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1ststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-10T17:36:26.4810072Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1ststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saphana1ststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saphana1ststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saphana1ststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-sap-linux-docu-tests/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saplinuxdocuststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-24T09:25:04.4473982Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-sap-linux-docu-tests-we/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststaccwe\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saplinuxdocuststaccwe\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-25T13:11:50.5477032Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststaccwe.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststaccwe.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststaccwe.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststaccwe.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/sappseduscsape012612030\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"sappseduscsape012612030\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2016-01-26T11:03:56.0307387Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sappseduscsape012612030.blob.core.windows.net/\",\r\n \"file\": \"https://sappseduscsape012612030.file.core.windows.net/\",\r\n \"queue\": \"https://sappseduscsape012612030.queue.core.windows.net/\",\r\n \"table\": \"https://sappseduscsape012612030.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"westeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/saptesiarm/providers/Microsoft.Storage/storageAccounts/saptesiarm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saptesiarm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-08-27T12:13:00.4049179Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptesiarm.blob.core.windows.net/\",\r\n \"file\": \"https://saptesiarm.file.core.windows.net/\",\r\n \"queue\": \"https://saptesiarm.queue.core.windows.net/\",\r\n \"table\": \"https://saptesiarm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/saptestrajrg/providers/Microsoft.Storage/storageAccounts/saptestrajrg4518\",\r\n \"location\": \"westus\",\r\n \"name\": \"saptestrajrg4518\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-07-22T19:24:21.1065762Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptestrajrg4518.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Storage/storageAccounts/stocrptestps4427\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps4427\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-18T13:31:18.2831047Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps4427.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Storage/storageAccounts/stocrptestps44272\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps44272\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-18T13:34:52.8607821Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps44272.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps44272.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps44272.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps44272.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/temptestsap\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"temptestsap\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-10T14:03:58.3799849Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://temptestsap.blob.core.windows.net/\",\r\n \"file\": \"https://temptestsap.file.core.windows.net/\",\r\n \"queue\": \"https://temptestsap.queue.core.windows.net/\",\r\n \"table\": \"https://temptestsap.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-ts2-test/providers/Microsoft.Storage/storageAccounts/ts2cdlko5xtxpo3k\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"ts2cdlko5xtxpo3k\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-17T14:39:15.5207487Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ts2cdlko5xtxpo3k.blob.core.windows.net/\",\r\n \"file\": \"https://ts2cdlko5xtxpo3k.file.core.windows.net/\",\r\n \"queue\": \"https://ts2cdlko5xtxpo3k.queue.core.windows.net/\",\r\n \"table\": \"https://ts2cdlko5xtxpo3k.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/benolwtlz6gcrtv2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"benolwtlz6gcrtv2\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-02T15:37:42.4160913Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://benolwtlz6gcrtv2.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/sapresourcegroup/providers/Microsoft.Storage/storageAccounts/de8da241d96f400ba8791029\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"de8da241d96f400ba8791029\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-09-18T13:22:47.5628749Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://de8da241d96f400ba8791029.blob.core.windows.net/\",\r\n \"file\": \"https://de8da241d96f400ba8791029.file.core.windows.net/\",\r\n \"queue\": \"https://de8da241d96f400ba8791029.queue.core.windows.net/\",\r\n \"table\": \"https://de8da241d96f400ba8791029.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/group-4/providers/Microsoft.Storage/storageAccounts/dsdevstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"dsdevstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-22T21:10:41.790448Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://dsdevstorage.blob.core.windows.net/\",\r\n \"file\": \"https://dsdevstorage.file.core.windows.net/\",\r\n \"queue\": \"https://dsdevstorage.queue.core.windows.net/\",\r\n \"table\": \"https://dsdevstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/seduscherp/providers/Microsoft.Storage/storageAccounts/erpio6r4un3ewfnm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"erpio6r4un3ewfnm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-08T12:41:16.6105852Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://erpio6r4un3ewfnm.blob.core.windows.net/\",\r\n \"file\": \"https://erpio6r4un3ewfnm.file.core.windows.net/\",\r\n \"queue\": \"https://erpio6r4un3ewfnm.queue.core.windows.net/\",\r\n \"table\": \"https://erpio6r4un3ewfnm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/fdfdfdf/providers/Microsoft.Storage/storageAccounts/fdfdfdf2537\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"fdfdfdf2537\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-17T10:07:55.1390685Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://fdfdfdf2537.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/fdfdfdf/providers/Microsoft.Storage/storageAccounts/fdfdfdf2925\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"fdfdfdf2925\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-17T10:07:55.715138Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://fdfdfdf2925.blob.core.windows.net/\",\r\n \"file\": \"https://fdfdfdf2925.file.core.windows.net/\",\r\n \"queue\": \"https://fdfdfdf2925.queue.core.windows.net/\",\r\n \"table\": \"https://fdfdfdf2925.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/glsresgroup1/providers/Microsoft.Storage/storageAccounts/glsstoraccount1\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"glsstoraccount1\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T12:37:47.5420067Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://glsstoraccount1.blob.core.windows.net/\",\r\n \"file\": \"https://glsstoraccount1.file.core.windows.net/\",\r\n \"queue\": \"https://glsstoraccount1.queue.core.windows.net/\",\r\n \"table\": \"https://glsstoraccount1.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmpremstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmpremstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:21.7378841Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmpremstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmpremstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmpremstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmpremstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmstdstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmstdstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:22.2160008Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmstdstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmstdstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmstdstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmstdstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-clust-arm/providers/Microsoft.Storage/storageAccounts/gorclustarmstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorclustarmstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-17T14:59:23.8666219Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorclustarmstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorclustarmstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorclustarmstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorclustarmstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {\r\n \"displayName\": \"StorageAccount\"\r\n },\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-test2/providers/Microsoft.Storage/storageAccounts/gortestacc2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gortestacc2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-08T21:18:17.9028388Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gortestacc2.blob.core.windows.net/\",\r\n \"file\": \"https://gortestacc2.file.core.windows.net/\",\r\n \"queue\": \"https://gortestacc2.queue.core.windows.net/\",\r\n \"table\": \"https://gortestacc2.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-04-16T13:50:52.0015725Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspacepremium\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspacepremium\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-10-23T10:22:10.7216809Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspacepremium.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/lvmtest/providers/Microsoft.Storage/storageAccounts/lvmtestspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmtestspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T16:56:41.5005505Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmtestspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmtestspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmtestspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmtestspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-eml2/providers/Microsoft.Storage/storageAccounts/rgeml2stacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"rgeml2stacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T08:00:29.8670815Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://rgeml2stacc.blob.core.windows.net/\",\r\n \"file\": \"https://rgeml2stacc.file.core.windows.net/\",\r\n \"queue\": \"https://rgeml2stacc.queue.core.windows.net/\",\r\n \"table\": \"https://rgeml2stacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/sapcalrg/providers/Microsoft.Storage/storageAccounts/sapcalrg8522\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"sapcalrg8522\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-28T06:54:16.0456896Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sapcalrg8522.blob.core.windows.net/\",\r\n \"file\": \"https://sapcalrg8522.file.core.windows.net/\",\r\n \"queue\": \"https://sapcalrg8522.queue.core.windows.net/\",\r\n \"table\": \"https://sapcalrg8522.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/saperpdemo859644\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"saperpdemo859644\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-01-26T11:02:43.8634331Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saperpdemo859644.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1prstacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1prstacc\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-12-10T17:35:29.0415914Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1prstacc.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1ststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1ststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-10T17:36:26.4810072Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1ststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saphana1ststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saphana1ststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saphana1ststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-sap-linux-docu-tests/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saplinuxdocuststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-24T09:25:04.4473982Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-sap-linux-docu-tests-we/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststaccwe\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saplinuxdocuststaccwe\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-25T13:11:50.5477032Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststaccwe.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststaccwe.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststaccwe.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststaccwe.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/sappseduscsape012612030\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"sappseduscsape012612030\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2016-01-26T11:03:56.0307387Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sappseduscsape012612030.blob.core.windows.net/\",\r\n \"file\": \"https://sappseduscsape012612030.file.core.windows.net/\",\r\n \"queue\": \"https://sappseduscsape012612030.queue.core.windows.net/\",\r\n \"table\": \"https://sappseduscsape012612030.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"westeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/saptesiarm/providers/Microsoft.Storage/storageAccounts/saptesiarm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saptesiarm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-08-27T12:13:00.4049179Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptesiarm.blob.core.windows.net/\",\r\n \"file\": \"https://saptesiarm.file.core.windows.net/\",\r\n \"queue\": \"https://saptesiarm.queue.core.windows.net/\",\r\n \"table\": \"https://saptesiarm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/saptestrajrg/providers/Microsoft.Storage/storageAccounts/saptestrajrg4518\",\r\n \"location\": \"westus\",\r\n \"name\": \"saptestrajrg4518\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-07-22T19:24:21.1065762Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptestrajrg4518.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Storage/storageAccounts/stocrptestps4470\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps4470\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-20T14:06:48.5948155Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps4470.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Storage/storageAccounts/stocrptestps44702\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps44702\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-20T14:10:52.4792283Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps44702.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps44702.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps44702.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps44702.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/temptestsap\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"temptestsap\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-10T14:03:58.3799849Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://temptestsap.blob.core.windows.net/\",\r\n \"file\": \"https://temptestsap.file.core.windows.net/\",\r\n \"queue\": \"https://temptestsap.queue.core.windows.net/\",\r\n \"table\": \"https://temptestsap.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-ts2-test/providers/Microsoft.Storage/storageAccounts/ts2cdlko5xtxpo3k\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"ts2cdlko5xtxpo3k\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-17T14:39:15.5207487Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ts2cdlko5xtxpo3k.blob.core.windows.net/\",\r\n \"file\": \"https://ts2cdlko5xtxpo3k.file.core.windows.net/\",\r\n \"queue\": \"https://ts2cdlko5xtxpo3k.queue.core.windows.net/\",\r\n \"table\": \"https://ts2cdlko5xtxpo3k.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "18797" + "18105" ], "Content-Type": [ "application/json" @@ -3325,7 +3325,7 @@ "no-cache" ], "x-ms-request-id": [ - "44401e46-ce4d-4d11-8204-066db7877b31" + "e9083ab1-2489-42fa-a224-015e9405810c" ], "Cache-Control": [ "no-cache" @@ -3335,19 +3335,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14989" ], "x-ms-correlation-request-id": [ - "44401e46-ce4d-4d11-8204-066db7877b31" + "e9083ab1-2489-42fa-a224-015e9405810c" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T133844Z:44401e46-ce4d-4d11-8204-066db7877b31" + "NORTHCENTRALUS:20160220T141121Z:e9083ab1-2489-42fa-a224-015e9405810c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Thu, 18 Feb 2016 13:38:44 GMT" + "Sat, 20 Feb 2016 14:11:20 GMT" ] }, "StatusCode": 200 @@ -3359,16 +3359,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f670db43-e884-40dc-8431-51b3854478d6" + "6a71f856-0352-4fce-9eca-298e3f4d5320" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/ase/providers/Microsoft.Storage/storageAccounts/ase7745\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"ase7745\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-08-22T12:09:54.6487474Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ase7745.blob.core.windows.net/\",\r\n \"file\": \"https://ase7745.file.core.windows.net/\",\r\n \"queue\": \"https://ase7745.queue.core.windows.net/\",\r\n \"table\": \"https://ase7745.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/benolwtlz6gcrtv2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"benolwtlz6gcrtv2\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-02T15:37:42.4160913Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://benolwtlz6gcrtv2.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/sapresourcegroup/providers/Microsoft.Storage/storageAccounts/de8da241d96f400ba8791029\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"de8da241d96f400ba8791029\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-09-18T13:22:47.5628749Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://de8da241d96f400ba8791029.blob.core.windows.net/\",\r\n \"file\": \"https://de8da241d96f400ba8791029.file.core.windows.net/\",\r\n \"queue\": \"https://de8da241d96f400ba8791029.queue.core.windows.net/\",\r\n \"table\": \"https://de8da241d96f400ba8791029.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/group-4/providers/Microsoft.Storage/storageAccounts/dsdevstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"dsdevstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-22T21:10:41.790448Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://dsdevstorage.blob.core.windows.net/\",\r\n \"file\": \"https://dsdevstorage.file.core.windows.net/\",\r\n \"queue\": \"https://dsdevstorage.queue.core.windows.net/\",\r\n \"table\": \"https://dsdevstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/seduscherp/providers/Microsoft.Storage/storageAccounts/erpio6r4un3ewfnm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"erpio6r4un3ewfnm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-08T12:41:16.6105852Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://erpio6r4un3ewfnm.blob.core.windows.net/\",\r\n \"file\": \"https://erpio6r4un3ewfnm.file.core.windows.net/\",\r\n \"queue\": \"https://erpio6r4un3ewfnm.queue.core.windows.net/\",\r\n \"table\": \"https://erpio6r4un3ewfnm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/fdfdfdf/providers/Microsoft.Storage/storageAccounts/fdfdfdf2537\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"fdfdfdf2537\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-17T10:07:55.1390685Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://fdfdfdf2537.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/fdfdfdf/providers/Microsoft.Storage/storageAccounts/fdfdfdf2925\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"fdfdfdf2925\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-17T10:07:55.715138Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://fdfdfdf2925.blob.core.windows.net/\",\r\n \"file\": \"https://fdfdfdf2925.file.core.windows.net/\",\r\n \"queue\": \"https://fdfdfdf2925.queue.core.windows.net/\",\r\n \"table\": \"https://fdfdfdf2925.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/glsresgroup1/providers/Microsoft.Storage/storageAccounts/glsstoraccount1\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"glsstoraccount1\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T12:37:47.5420067Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://glsstoraccount1.blob.core.windows.net/\",\r\n \"file\": \"https://glsstoraccount1.file.core.windows.net/\",\r\n \"queue\": \"https://glsstoraccount1.queue.core.windows.net/\",\r\n \"table\": \"https://glsstoraccount1.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmpremstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmpremstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:21.7378841Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmpremstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmpremstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmpremstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmpremstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmstdstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmstdstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:22.2160008Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmstdstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmstdstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmstdstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmstdstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-clust-arm/providers/Microsoft.Storage/storageAccounts/gorclustarmstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorclustarmstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-17T14:59:23.8666219Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorclustarmstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorclustarmstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorclustarmstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorclustarmstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {\r\n \"displayName\": \"StorageAccount\"\r\n },\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-test2/providers/Microsoft.Storage/storageAccounts/gortestacc2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gortestacc2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-08T21:18:17.9028388Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gortestacc2.blob.core.windows.net/\",\r\n \"file\": \"https://gortestacc2.file.core.windows.net/\",\r\n \"queue\": \"https://gortestacc2.queue.core.windows.net/\",\r\n \"table\": \"https://gortestacc2.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-04-16T13:50:52.0015725Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspacepremium\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspacepremium\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-10-23T10:22:10.7216809Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspacepremium.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/lvmtest/providers/Microsoft.Storage/storageAccounts/lvmtestspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmtestspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T16:56:41.5005505Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmtestspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmtestspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmtestspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmtestspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-eml2/providers/Microsoft.Storage/storageAccounts/rgeml2stacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"rgeml2stacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T08:00:29.8670815Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://rgeml2stacc.blob.core.windows.net/\",\r\n \"file\": \"https://rgeml2stacc.file.core.windows.net/\",\r\n \"queue\": \"https://rgeml2stacc.queue.core.windows.net/\",\r\n \"table\": \"https://rgeml2stacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/sapcalrg/providers/Microsoft.Storage/storageAccounts/sapcalrg8522\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"sapcalrg8522\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-28T06:54:16.0456896Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sapcalrg8522.blob.core.windows.net/\",\r\n \"file\": \"https://sapcalrg8522.file.core.windows.net/\",\r\n \"queue\": \"https://sapcalrg8522.queue.core.windows.net/\",\r\n \"table\": \"https://sapcalrg8522.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/saperpdemo859644\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"saperpdemo859644\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-01-26T11:02:43.8634331Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saperpdemo859644.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1prstacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1prstacc\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-12-10T17:35:29.0415914Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1prstacc.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1ststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1ststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-10T17:36:26.4810072Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1ststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saphana1ststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saphana1ststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saphana1ststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-sap-linux-docu-tests/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saplinuxdocuststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-24T09:25:04.4473982Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-sap-linux-docu-tests-we/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststaccwe\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saplinuxdocuststaccwe\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-25T13:11:50.5477032Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststaccwe.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststaccwe.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststaccwe.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststaccwe.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/sappseduscsape012612030\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"sappseduscsape012612030\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2016-01-26T11:03:56.0307387Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sappseduscsape012612030.blob.core.windows.net/\",\r\n \"file\": \"https://sappseduscsape012612030.file.core.windows.net/\",\r\n \"queue\": \"https://sappseduscsape012612030.queue.core.windows.net/\",\r\n \"table\": \"https://sappseduscsape012612030.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"westeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/saptesiarm/providers/Microsoft.Storage/storageAccounts/saptesiarm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saptesiarm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-08-27T12:13:00.4049179Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptesiarm.blob.core.windows.net/\",\r\n \"file\": \"https://saptesiarm.file.core.windows.net/\",\r\n \"queue\": \"https://saptesiarm.queue.core.windows.net/\",\r\n \"table\": \"https://saptesiarm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/saptestrajrg/providers/Microsoft.Storage/storageAccounts/saptestrajrg4518\",\r\n \"location\": \"westus\",\r\n \"name\": \"saptestrajrg4518\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-07-22T19:24:21.1065762Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptestrajrg4518.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Storage/storageAccounts/stocrptestps4427\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps4427\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-18T13:31:18.2831047Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps4427.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Storage/storageAccounts/stocrptestps44272\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps44272\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-18T13:34:52.8607821Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps44272.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps44272.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps44272.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps44272.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/temptestsap\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"temptestsap\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-10T14:03:58.3799849Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://temptestsap.blob.core.windows.net/\",\r\n \"file\": \"https://temptestsap.file.core.windows.net/\",\r\n \"queue\": \"https://temptestsap.queue.core.windows.net/\",\r\n \"table\": \"https://temptestsap.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-ts2-test/providers/Microsoft.Storage/storageAccounts/ts2cdlko5xtxpo3k\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"ts2cdlko5xtxpo3k\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-17T14:39:15.5207487Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ts2cdlko5xtxpo3k.blob.core.windows.net/\",\r\n \"file\": \"https://ts2cdlko5xtxpo3k.file.core.windows.net/\",\r\n \"queue\": \"https://ts2cdlko5xtxpo3k.queue.core.windows.net/\",\r\n \"table\": \"https://ts2cdlko5xtxpo3k.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/benolwtlz6gcrtv2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"benolwtlz6gcrtv2\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-02T15:37:42.4160913Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://benolwtlz6gcrtv2.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/sapresourcegroup/providers/Microsoft.Storage/storageAccounts/de8da241d96f400ba8791029\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"de8da241d96f400ba8791029\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-09-18T13:22:47.5628749Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://de8da241d96f400ba8791029.blob.core.windows.net/\",\r\n \"file\": \"https://de8da241d96f400ba8791029.file.core.windows.net/\",\r\n \"queue\": \"https://de8da241d96f400ba8791029.queue.core.windows.net/\",\r\n \"table\": \"https://de8da241d96f400ba8791029.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/group-4/providers/Microsoft.Storage/storageAccounts/dsdevstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"dsdevstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-22T21:10:41.790448Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://dsdevstorage.blob.core.windows.net/\",\r\n \"file\": \"https://dsdevstorage.file.core.windows.net/\",\r\n \"queue\": \"https://dsdevstorage.queue.core.windows.net/\",\r\n \"table\": \"https://dsdevstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/seduscherp/providers/Microsoft.Storage/storageAccounts/erpio6r4un3ewfnm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"erpio6r4un3ewfnm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-08T12:41:16.6105852Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://erpio6r4un3ewfnm.blob.core.windows.net/\",\r\n \"file\": \"https://erpio6r4un3ewfnm.file.core.windows.net/\",\r\n \"queue\": \"https://erpio6r4un3ewfnm.queue.core.windows.net/\",\r\n \"table\": \"https://erpio6r4un3ewfnm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/fdfdfdf/providers/Microsoft.Storage/storageAccounts/fdfdfdf2537\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"fdfdfdf2537\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-17T10:07:55.1390685Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://fdfdfdf2537.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/fdfdfdf/providers/Microsoft.Storage/storageAccounts/fdfdfdf2925\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"fdfdfdf2925\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-17T10:07:55.715138Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://fdfdfdf2925.blob.core.windows.net/\",\r\n \"file\": \"https://fdfdfdf2925.file.core.windows.net/\",\r\n \"queue\": \"https://fdfdfdf2925.queue.core.windows.net/\",\r\n \"table\": \"https://fdfdfdf2925.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/glsresgroup1/providers/Microsoft.Storage/storageAccounts/glsstoraccount1\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"glsstoraccount1\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T12:37:47.5420067Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://glsstoraccount1.blob.core.windows.net/\",\r\n \"file\": \"https://glsstoraccount1.file.core.windows.net/\",\r\n \"queue\": \"https://glsstoraccount1.queue.core.windows.net/\",\r\n \"table\": \"https://glsstoraccount1.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmpremstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmpremstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:21.7378841Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmpremstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmpremstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmpremstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmpremstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmstdstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmstdstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:22.2160008Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmstdstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmstdstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmstdstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmstdstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-clust-arm/providers/Microsoft.Storage/storageAccounts/gorclustarmstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorclustarmstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-17T14:59:23.8666219Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorclustarmstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorclustarmstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorclustarmstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorclustarmstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {\r\n \"displayName\": \"StorageAccount\"\r\n },\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-test2/providers/Microsoft.Storage/storageAccounts/gortestacc2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gortestacc2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-08T21:18:17.9028388Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gortestacc2.blob.core.windows.net/\",\r\n \"file\": \"https://gortestacc2.file.core.windows.net/\",\r\n \"queue\": \"https://gortestacc2.queue.core.windows.net/\",\r\n \"table\": \"https://gortestacc2.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-04-16T13:50:52.0015725Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspacepremium\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspacepremium\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-10-23T10:22:10.7216809Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspacepremium.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/lvmtest/providers/Microsoft.Storage/storageAccounts/lvmtestspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmtestspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T16:56:41.5005505Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmtestspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmtestspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmtestspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmtestspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-eml2/providers/Microsoft.Storage/storageAccounts/rgeml2stacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"rgeml2stacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T08:00:29.8670815Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://rgeml2stacc.blob.core.windows.net/\",\r\n \"file\": \"https://rgeml2stacc.file.core.windows.net/\",\r\n \"queue\": \"https://rgeml2stacc.queue.core.windows.net/\",\r\n \"table\": \"https://rgeml2stacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/sapcalrg/providers/Microsoft.Storage/storageAccounts/sapcalrg8522\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"sapcalrg8522\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-28T06:54:16.0456896Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sapcalrg8522.blob.core.windows.net/\",\r\n \"file\": \"https://sapcalrg8522.file.core.windows.net/\",\r\n \"queue\": \"https://sapcalrg8522.queue.core.windows.net/\",\r\n \"table\": \"https://sapcalrg8522.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/saperpdemo859644\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"saperpdemo859644\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-01-26T11:02:43.8634331Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saperpdemo859644.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1prstacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1prstacc\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-12-10T17:35:29.0415914Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1prstacc.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1ststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1ststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-10T17:36:26.4810072Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1ststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saphana1ststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saphana1ststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saphana1ststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-sap-linux-docu-tests/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saplinuxdocuststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-24T09:25:04.4473982Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-sap-linux-docu-tests-we/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststaccwe\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saplinuxdocuststaccwe\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-25T13:11:50.5477032Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststaccwe.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststaccwe.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststaccwe.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststaccwe.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/sappseduscsape012612030\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"sappseduscsape012612030\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2016-01-26T11:03:56.0307387Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sappseduscsape012612030.blob.core.windows.net/\",\r\n \"file\": \"https://sappseduscsape012612030.file.core.windows.net/\",\r\n \"queue\": \"https://sappseduscsape012612030.queue.core.windows.net/\",\r\n \"table\": \"https://sappseduscsape012612030.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"westeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/saptesiarm/providers/Microsoft.Storage/storageAccounts/saptesiarm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saptesiarm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-08-27T12:13:00.4049179Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptesiarm.blob.core.windows.net/\",\r\n \"file\": \"https://saptesiarm.file.core.windows.net/\",\r\n \"queue\": \"https://saptesiarm.queue.core.windows.net/\",\r\n \"table\": \"https://saptesiarm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/saptestrajrg/providers/Microsoft.Storage/storageAccounts/saptestrajrg4518\",\r\n \"location\": \"westus\",\r\n \"name\": \"saptestrajrg4518\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-07-22T19:24:21.1065762Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptestrajrg4518.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Storage/storageAccounts/stocrptestps4470\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps4470\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-20T14:06:48.5948155Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps4470.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Storage/storageAccounts/stocrptestps44702\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps44702\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-20T14:10:52.4792283Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps44702.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps44702.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps44702.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps44702.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/temptestsap\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"temptestsap\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-10T14:03:58.3799849Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://temptestsap.blob.core.windows.net/\",\r\n \"file\": \"https://temptestsap.file.core.windows.net/\",\r\n \"queue\": \"https://temptestsap.queue.core.windows.net/\",\r\n \"table\": \"https://temptestsap.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-ts2-test/providers/Microsoft.Storage/storageAccounts/ts2cdlko5xtxpo3k\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"ts2cdlko5xtxpo3k\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-17T14:39:15.5207487Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ts2cdlko5xtxpo3k.blob.core.windows.net/\",\r\n \"file\": \"https://ts2cdlko5xtxpo3k.file.core.windows.net/\",\r\n \"queue\": \"https://ts2cdlko5xtxpo3k.queue.core.windows.net/\",\r\n \"table\": \"https://ts2cdlko5xtxpo3k.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "18797" + "18105" ], "Content-Type": [ "application/json" @@ -3380,7 +3380,7 @@ "no-cache" ], "x-ms-request-id": [ - "e4ba8ecb-fec9-4a14-83c8-7974d4a1e500" + "5e03c443-93d6-44ae-a134-144c06be9edd" ], "Cache-Control": [ "no-cache" @@ -3390,26 +3390,26 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14995" ], "x-ms-correlation-request-id": [ - "e4ba8ecb-fec9-4a14-83c8-7974d4a1e500" + "5e03c443-93d6-44ae-a134-144c06be9edd" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T133859Z:e4ba8ecb-fec9-4a14-83c8-7974d4a1e500" + "NORTHCENTRALUS:20160220T141507Z:5e03c443-93d6-44ae-a134-144c06be9edd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Thu, 18 Feb 2016 13:38:58 GMT" + "Sat, 20 Feb 2016 14:15:06 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Storage/storageAccounts/stocrptestps44272?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM0NDI3Mj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Storage/storageAccounts/stocrptestps44702?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0NzAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM0NDcwMj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\"\r\n }\r\n}", "RequestHeaders": { @@ -3420,7 +3420,7 @@ "89" ], "x-ms-client-request-id": [ - "9415c3c3-4d95-414c-a256-1687994612af" + "3eea4b9c-65e9-482b-8d27-770f8e76ce7c" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" @@ -3444,41 +3444,41 @@ "1199" ], "x-ms-request-id": [ - "ee5c6f9d-a903-4b52-81dd-882cac46c5cb" + "60955cfb-e7e5-4fb7-893d-b0c4eea3b34e" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Storage/operations/053efd9a-860c-4c64-afb8-edd07f21824c?monitor=true&api-version=2015-06-15" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Storage/operations/7c9bced2-e10c-4bf9-bd56-9f94be1827c4?monitor=true&api-version=2015-06-15" ], "Server": [ "Microsoft-Azure-Storage-Resource-Provider/1.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "ee5c6f9d-a903-4b52-81dd-882cac46c5cb" + "60955cfb-e7e5-4fb7-893d-b0c4eea3b34e" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T133454Z:ee5c6f9d-a903-4b52-81dd-882cac46c5cb" + "NORTHCENTRALUS:20160220T141053Z:60955cfb-e7e5-4fb7-893d-b0c4eea3b34e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Thu, 18 Feb 2016 13:34:53 GMT" + "Sat, 20 Feb 2016 14:10:53 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Storage/operations/053efd9a-860c-4c64-afb8-edd07f21824c?monitor=true&api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzA1M2VmZDlhLTg2MGMtNGM2NC1hZmI4LWVkZDA3ZjIxODI0Yz9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Storage/operations/7c9bced2-e10c-4bf9-bd56-9f94be1827c4?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzdjOWJjZWQyLWUxMGMtNGJmOS1iZDU2LTlmOTRiZTE4MjdjND9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2b44f36d-483e-486a-9c44-6538cea70a57" + "573f0cf4-add1-4562-b267-8a86cd7c187d" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" @@ -3499,44 +3499,44 @@ "25" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14993" ], "x-ms-request-id": [ - "565d8fdc-eae3-4c2f-9adc-b61080a7b1cd" + "931bc42a-6171-4e81-a4a1-16be18b9fbc3" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Storage/operations/053efd9a-860c-4c64-afb8-edd07f21824c?monitor=true&api-version=2015-06-15" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Storage/operations/7c9bced2-e10c-4bf9-bd56-9f94be1827c4?monitor=true&api-version=2015-06-15" ], "Server": [ "Microsoft-Azure-Storage-Resource-Provider/1.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "565d8fdc-eae3-4c2f-9adc-b61080a7b1cd" + "931bc42a-6171-4e81-a4a1-16be18b9fbc3" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T133454Z:565d8fdc-eae3-4c2f-9adc-b61080a7b1cd" + "NORTHCENTRALUS:20160220T141054Z:931bc42a-6171-4e81-a4a1-16be18b9fbc3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Thu, 18 Feb 2016 13:34:54 GMT" + "Sat, 20 Feb 2016 14:10:54 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Storage/operations/053efd9a-860c-4c64-afb8-edd07f21824c?monitor=true&api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzA1M2VmZDlhLTg2MGMtNGM2NC1hZmI4LWVkZDA3ZjIxODI0Yz9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Storage/operations/7c9bced2-e10c-4bf9-bd56-9f94be1827c4?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzdjOWJjZWQyLWUxMGMtNGJmOS1iZDU2LTlmOTRiZTE4MjdjND9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6e6877a4-9589-4655-b032-fb39c4b2ee6a" + "36a0a7fc-c52d-45c4-a6fa-c28664076b89" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" @@ -3557,7 +3557,7 @@ "no-cache" ], "x-ms-request-id": [ - "82a6dfa5-12c8-4fd4-b8c7-0cdae93bb6c8" + "509b79f5-b40b-48fb-9455-c3a6d8aadf7f" ], "Cache-Control": [ "no-cache" @@ -3567,37 +3567,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14992" ], "x-ms-correlation-request-id": [ - "82a6dfa5-12c8-4fd4-b8c7-0cdae93bb6c8" + "509b79f5-b40b-48fb-9455-c3a6d8aadf7f" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T133519Z:82a6dfa5-12c8-4fd4-b8c7-0cdae93bb6c8" + "NORTHCENTRALUS:20160220T141119Z:509b79f5-b40b-48fb-9455-c3a6d8aadf7f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Thu, 18 Feb 2016 13:35:19 GMT" + "Sat, 20 Feb 2016 14:11:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Storage/storageAccounts/stocrptestps44272?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM0NDI3Mj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Storage/storageAccounts/stocrptestps44702?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0NzAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM0NDcwMj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a860dccb-25c7-4451-b3d1-245962dcdef0" + "6ebd3b2c-1a63-429a-acc3-d119461c6429" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Storage/storageAccounts/stocrptestps44272\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps44272\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-18T13:34:52.8607821Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps44272.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps44272.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps44272.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps44272.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Storage/storageAccounts/stocrptestps44702\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps44702\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-20T14:10:52.4792283Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps44702.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps44702.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps44702.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps44702.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "688" @@ -3612,7 +3612,7 @@ "no-cache" ], "x-ms-request-id": [ - "8739c4ed-04c4-4e71-9aba-e138ae0bee46" + "f426375e-6e0f-4f7e-9ae0-24f4544db3f0" ], "Cache-Control": [ "no-cache" @@ -3622,37 +3622,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14991" ], "x-ms-correlation-request-id": [ - "8739c4ed-04c4-4e71-9aba-e138ae0bee46" + "f426375e-6e0f-4f7e-9ae0-24f4544db3f0" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T133519Z:8739c4ed-04c4-4e71-9aba-e138ae0bee46" + "NORTHCENTRALUS:20160220T141119Z:f426375e-6e0f-4f7e-9ae0-24f4544db3f0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Thu, 18 Feb 2016 13:35:19 GMT" + "Sat, 20 Feb 2016 14:11:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Storage/storageAccounts/stocrptestps44272/listKeys?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM0NDI3Mi9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Storage/storageAccounts/stocrptestps44702/listKeys?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0NzAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM0NDcwMi9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0fd44e58-4e8b-48e5-b431-ec5b943f3e08" + "df9a6202-589a-4694-b5f5-4c02d19eac84" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"key1\": \"gSQQlWUd96Jt7RsvKOROnNdIUNasI858O/RwojTFOFez5SjSogtSXtNHpAcxgge1dpWu+FxqU5vcNUYaqpy8NQ==\",\r\n \"key2\": \"k/zUJO1tRNOixdi48Malbl3FGoAV/Pl/265DEqo69IMxdyou9II06p5IuIG8+mLrtemfwh/jEOFapS+SMeJM+Q==\"\r\n}", + "ResponseBody": "{\r\n \"key1\": \"of9GEVt76bOqaf6Xq5r6QB3QK/uSkS576xD0nv+7wSpn6rTFKRH5mgr3CXSlQQm4Fw+YFcU97VtyeWhMvth+HA==\",\r\n \"key2\": \"W58SkWpuu/p5TLnlSBmaMHgchZlze3Ow/l9KmBZ6EEMQAX8Xav14HUScp9+VnGU3ctiejTxCVtGcYSCZfk1KgA==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "198" @@ -3667,7 +3667,7 @@ "no-cache" ], "x-ms-request-id": [ - "d18447da-325f-4240-a84b-706e5113fb24" + "b42c2e2b-2b25-48ca-a270-a2f23152f573" ], "Cache-Control": [ "no-cache" @@ -3680,40 +3680,49 @@ "1196" ], "x-ms-correlation-request-id": [ - "d18447da-325f-4240-a84b-706e5113fb24" + "b42c2e2b-2b25-48ca-a270-a2f23152f573" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T133536Z:d18447da-325f-4240-a84b-706e5113fb24" + "NORTHCENTRALUS:20160220T141122Z:b42c2e2b-2b25-48ca-a270-a2f23152f573" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Thu, 18 Feb 2016 13:35:36 GMT" + "Sat, 20 Feb 2016 14:11:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Storage/storageAccounts/stocrptestps44272/listKeys?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM0NDI3Mi9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", - "RequestMethod": "POST", - "RequestBody": "", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Compute/virtualMachines/vmcrptestps4470/extensions/LinuxDiagnostic?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0NzAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQ0NzAvZXh0ZW5zaW9ucy9MaW51eERpYWdub3N0aWM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRQcm9jZXNzb3JUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRJZGxlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50UHJpdmlsZWdlZFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudEludGVycnVwdFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudERQQ1RpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudFVzZXJUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnROaWNlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50SU9XYWl0VGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZE1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxVc2VkTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRBdmFpbGFibGVNZW1vcnkiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRVc2VkQnlDYWNoZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcVXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1BlclNlYyIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1JlYWRQZXJTZWMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcUGFnZXNXcml0dGVuUGVyU2VjIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VUcmFuc2ZlclRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQXZlcmFnZVJlYWRUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VXcml0ZVRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcVHJhbnNmZXJzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFJlYWRzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFdyaXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xCeXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xXcml0ZUJ5dGVzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VEaXNrUXVldWVMZW5ndGgiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVG90YWwiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVHJhbnNtaXR0ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzUmVjZWl2ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXFBhY2tldHNUcmFuc21pdHRlZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcUGFja2V0c1JlY2VpdmVkIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFJ4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFR4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbENvbGxpc2lvbnMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"protectedSettings\": {\r\n \"storageAccountName\": \"stocrptestps44702\",\r\n \"storageAccountKey\": \"of9GEVt76bOqaf6Xq5r6QB3QK/uSkS576xD0nv+7wSpn6rTFKRH5mgr3CXSlQQm4Fw+YFcU97VtyeWhMvth+HA==\",\r\n \"storageAccountEndPoint\": \"https://core.windows.net\"\r\n }\r\n }\r\n}", "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "5617" + ], "x-ms-client-request-id": [ - "59bdfecd-2fc0-4e34-8f8a-b18b41024e23" + "76b24d86-a05f-4e11-85f9-a1546a60a644" + ], + "accept-language": [ + "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"key1\": \"gSQQlWUd96Jt7RsvKOROnNdIUNasI858O/RwojTFOFez5SjSogtSXtNHpAcxgge1dpWu+FxqU5vcNUYaqpy8NQ==\",\r\n \"key2\": \"k/zUJO1tRNOixdi48Malbl3FGoAV/Pl/265DEqo69IMxdyou9II06p5IuIG8+mLrtemfwh/jEOFapS+SMeJM+Q==\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRQcm9jZXNzb3JUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRJZGxlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50UHJpdmlsZWdlZFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudEludGVycnVwdFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudERQQ1RpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudFVzZXJUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnROaWNlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50SU9XYWl0VGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZE1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxVc2VkTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRBdmFpbGFibGVNZW1vcnkiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRVc2VkQnlDYWNoZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcVXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1BlclNlYyIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1JlYWRQZXJTZWMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcUGFnZXNXcml0dGVuUGVyU2VjIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VUcmFuc2ZlclRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQXZlcmFnZVJlYWRUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VXcml0ZVRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcVHJhbnNmZXJzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFJlYWRzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFdyaXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xCeXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xXcml0ZUJ5dGVzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VEaXNrUXVldWVMZW5ndGgiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVG90YWwiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVHJhbnNtaXR0ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzUmVjZWl2ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXFBhY2tldHNUcmFuc21pdHRlZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcUGFja2V0c1JlY2VpdmVkIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFJ4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFR4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbENvbGxpc2lvbnMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Compute/virtualMachines/vmcrptestps4470/extensions/LinuxDiagnostic\",\r\n \"name\": \"LinuxDiagnostic\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "198" + "5682" ], "Content-Type": [ - "application/json" + "application/json; charset=utf-8" ], "Expires": [ "-1" @@ -3721,60 +3730,54 @@ "Pragma": [ "no-cache" ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/4fb49869-0c27-43e6-afa2-aa92172582f4?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" + ], "x-ms-request-id": [ - "dc1e6cec-83a4-4459-aedc-9aed90464157" + "4fb49869-0c27-43e6-afa2-aa92172582f4" ], "Cache-Control": [ "no-cache" ], "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1198" ], "x-ms-correlation-request-id": [ - "dc1e6cec-83a4-4459-aedc-9aed90464157" + "a381a31f-5c39-471c-b925-86d0d6693851" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T133859Z:dc1e6cec-83a4-4459-aedc-9aed90464157" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "NORTHCENTRALUS:20160220T141124Z:a381a31f-5c39-471c-b925-86d0d6693851" ], "Date": [ - "Thu, 18 Feb 2016 13:38:59 GMT" + "Sat, 20 Feb 2016 14:11:23 GMT" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427/extensions/LinuxDiagnostic?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQ0MjcvZXh0ZW5zaW9ucy9MaW51eERpYWdub3N0aWM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRQcm9jZXNzb3JUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRJZGxlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50UHJpdmlsZWdlZFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudEludGVycnVwdFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudERQQ1RpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudFVzZXJUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnROaWNlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50SU9XYWl0VGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZE1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxVc2VkTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRBdmFpbGFibGVNZW1vcnkiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRVc2VkQnlDYWNoZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcVXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1BlclNlYyIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1JlYWRQZXJTZWMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcUGFnZXNXcml0dGVuUGVyU2VjIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VUcmFuc2ZlclRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQXZlcmFnZVJlYWRUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VXcml0ZVRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcVHJhbnNmZXJzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFJlYWRzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFdyaXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xCeXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xXcml0ZUJ5dGVzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VEaXNrUXVldWVMZW5ndGgiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVG90YWwiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVHJhbnNtaXR0ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzUmVjZWl2ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXFBhY2tldHNUcmFuc21pdHRlZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcUGFja2V0c1JlY2VpdmVkIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFJ4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFR4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbENvbGxpc2lvbnMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"protectedSettings\": {\r\n \"storageAccountName\": \"stocrptestps44272\",\r\n \"storageAccountKey\": \"gSQQlWUd96Jt7RsvKOROnNdIUNasI858O/RwojTFOFez5SjSogtSXtNHpAcxgge1dpWu+FxqU5vcNUYaqpy8NQ==\",\r\n \"storageAccountEndPoint\": \"https://core.windows.net\"\r\n }\r\n }\r\n}", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/4fb49869-0c27-43e6-afa2-aa92172582f4?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNGZiNDk4NjktMGMyNy00M2U2LWFmYTItYWE5MjE3MjU4MmY0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "5617" - ], - "x-ms-client-request-id": [ - "04057b3d-d79f-4c74-b774-24209e08e8eb" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRQcm9jZXNzb3JUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRJZGxlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50UHJpdmlsZWdlZFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudEludGVycnVwdFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudERQQ1RpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudFVzZXJUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnROaWNlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50SU9XYWl0VGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZE1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxVc2VkTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRBdmFpbGFibGVNZW1vcnkiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRVc2VkQnlDYWNoZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcVXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1BlclNlYyIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1JlYWRQZXJTZWMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcUGFnZXNXcml0dGVuUGVyU2VjIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VUcmFuc2ZlclRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQXZlcmFnZVJlYWRUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VXcml0ZVRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcVHJhbnNmZXJzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFJlYWRzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFdyaXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xCeXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xXcml0ZUJ5dGVzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VEaXNrUXVldWVMZW5ndGgiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVG90YWwiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVHJhbnNtaXR0ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzUmVjZWl2ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXFBhY2tldHNUcmFuc21pdHRlZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcUGFja2V0c1JlY2VpdmVkIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFJ4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFR4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbENvbGxpc2lvbnMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427/extensions/LinuxDiagnostic\",\r\n \"name\": \"LinuxDiagnostic\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"4fb49869-0c27-43e6-afa2-aa92172582f4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-20T15:11:23.6997364+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "5682" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3785,17 +3788,14 @@ "Pragma": [ "no-cache" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/4a14860c-61f4-49d2-a1d4-b83111f7c388?api-version=2015-06-15" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130995838280309262" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "4a14860c-61f4-49d2-a1d4-b83111f7c388" + "8429036a-dc2d-4e34-8d9f-9dc7c1746a78" ], "Cache-Control": [ "no-cache" @@ -3804,24 +3804,24 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14978" ], "x-ms-correlation-request-id": [ - "5eee5f73-9247-46da-8b74-4581213ef6d9" + "e51be2c7-3714-44ad-9901-c3678f92acbf" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T133539Z:5eee5f73-9247-46da-8b74-4581213ef6d9" + "NORTHCENTRALUS:20160220T141154Z:e51be2c7-3714-44ad-9901-c3678f92acbf" ], "Date": [ - "Thu, 18 Feb 2016 13:35:38 GMT" + "Sat, 20 Feb 2016 14:11:54 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/4a14860c-61f4-49d2-a1d4-b83111f7c388?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNGExNDg2MGMtNjFmNC00OWQyLWExZDQtYjgzMTExZjdjMzg4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/4fb49869-0c27-43e6-afa2-aa92172582f4?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNGZiNDk4NjktMGMyNy00M2U2LWFmYTItYWE5MjE3MjU4MmY0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3829,10 +3829,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"4a14860c-61f4-49d2-a1d4-b83111f7c388\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-18T14:35:38.348967+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"4fb49869-0c27-43e6-afa2-aa92172582f4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-20T15:11:23.6997364+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "140" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3847,10 +3847,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130995838280309262" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "9c11d3c0-58ec-479f-ba46-9a2b37c3c271" + "62d11a22-290b-4d6a-8a07-3d01d3487c68" ], "Cache-Control": [ "no-cache" @@ -3860,23 +3860,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14963" + "14977" ], "x-ms-correlation-request-id": [ - "2bad52cb-7ea8-4c59-bb90-277639680926" + "0ea4d7ae-0c3e-409a-a33e-57baae86fd3e" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T133609Z:2bad52cb-7ea8-4c59-bb90-277639680926" + "NORTHCENTRALUS:20160220T141224Z:0ea4d7ae-0c3e-409a-a33e-57baae86fd3e" ], "Date": [ - "Thu, 18 Feb 2016 13:36:08 GMT" + "Sat, 20 Feb 2016 14:12:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/4a14860c-61f4-49d2-a1d4-b83111f7c388?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNGExNDg2MGMtNjFmNC00OWQyLWExZDQtYjgzMTExZjdjMzg4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/4fb49869-0c27-43e6-afa2-aa92172582f4?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNGZiNDk4NjktMGMyNy00M2U2LWFmYTItYWE5MjE3MjU4MmY0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3884,10 +3884,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"4a14860c-61f4-49d2-a1d4-b83111f7c388\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-18T14:35:38.348967+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"4fb49869-0c27-43e6-afa2-aa92172582f4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-20T15:11:23.6997364+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "140" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3902,10 +3902,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130995838280309262" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "665e0d52-255c-4699-b7a3-cfcb5153feeb" + "23ae9c7e-cce7-4944-b3d6-f4d575a0435a" ], "Cache-Control": [ "no-cache" @@ -3915,23 +3915,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14962" + "14976" ], "x-ms-correlation-request-id": [ - "020e62ed-91bf-420d-a02c-8bc59a5d9b9a" + "5d9d3801-7b98-462f-a830-5add3976f868" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T133639Z:020e62ed-91bf-420d-a02c-8bc59a5d9b9a" + "NORTHCENTRALUS:20160220T141255Z:5d9d3801-7b98-462f-a830-5add3976f868" ], "Date": [ - "Thu, 18 Feb 2016 13:36:39 GMT" + "Sat, 20 Feb 2016 14:12:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/4a14860c-61f4-49d2-a1d4-b83111f7c388?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNGExNDg2MGMtNjFmNC00OWQyLWExZDQtYjgzMTExZjdjMzg4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/4fb49869-0c27-43e6-afa2-aa92172582f4?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNGZiNDk4NjktMGMyNy00M2U2LWFmYTItYWE5MjE3MjU4MmY0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3939,10 +3939,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"4a14860c-61f4-49d2-a1d4-b83111f7c388\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-02-18T14:35:38.348967+01:00\",\r\n \"endTime\": \"2016-02-18T14:36:49.67616+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"4fb49869-0c27-43e6-afa2-aa92172582f4\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-02-20T15:11:23.6997364+01:00\",\r\n \"endTime\": \"2016-02-20T15:13:16.0442153+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "188" + "191" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3957,10 +3957,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130995838280309262" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "20847f54-9c9c-4228-9476-cb04ce47bc39" + "b283263c-9b79-45c0-a949-300e48d1fcf8" ], "Cache-Control": [ "no-cache" @@ -3970,23 +3970,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14961" + "14975" ], "x-ms-correlation-request-id": [ - "62650b45-21b5-4a66-8fdb-b7b17d3a517b" + "264badab-3810-4730-b74e-c1a0b1a816d3" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T133709Z:62650b45-21b5-4a66-8fdb-b7b17d3a517b" + "NORTHCENTRALUS:20160220T141325Z:264badab-3810-4730-b74e-c1a0b1a816d3" ], "Date": [ - "Thu, 18 Feb 2016 13:37:09 GMT" + "Sat, 20 Feb 2016 14:13:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427/extensions/LinuxDiagnostic?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQ0MjcvZXh0ZW5zaW9ucy9MaW51eERpYWdub3N0aWM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Compute/virtualMachines/vmcrptestps4470/extensions/LinuxDiagnostic?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0NzAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQ0NzAvZXh0ZW5zaW9ucy9MaW51eERpYWdub3N0aWM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3994,7 +3994,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRQcm9jZXNzb3JUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRJZGxlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50UHJpdmlsZWdlZFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudEludGVycnVwdFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudERQQ1RpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudFVzZXJUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnROaWNlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50SU9XYWl0VGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZE1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxVc2VkTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRBdmFpbGFibGVNZW1vcnkiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRVc2VkQnlDYWNoZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcVXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1BlclNlYyIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1JlYWRQZXJTZWMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcUGFnZXNXcml0dGVuUGVyU2VjIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VUcmFuc2ZlclRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQXZlcmFnZVJlYWRUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VXcml0ZVRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcVHJhbnNmZXJzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFJlYWRzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFdyaXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xCeXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xXcml0ZUJ5dGVzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VEaXNrUXVldWVMZW5ndGgiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVG90YWwiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVHJhbnNtaXR0ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzUmVjZWl2ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXFBhY2tldHNUcmFuc21pdHRlZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcUGFja2V0c1JlY2VpdmVkIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFJ4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFR4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbENvbGxpc2lvbnMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427/extensions/LinuxDiagnostic\",\r\n \"name\": \"LinuxDiagnostic\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRQcm9jZXNzb3JUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRJZGxlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50UHJpdmlsZWdlZFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudEludGVycnVwdFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudERQQ1RpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudFVzZXJUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnROaWNlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50SU9XYWl0VGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZE1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxVc2VkTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRBdmFpbGFibGVNZW1vcnkiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRVc2VkQnlDYWNoZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcVXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1BlclNlYyIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1JlYWRQZXJTZWMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcUGFnZXNXcml0dGVuUGVyU2VjIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VUcmFuc2ZlclRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQXZlcmFnZVJlYWRUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VXcml0ZVRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcVHJhbnNmZXJzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFJlYWRzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFdyaXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xCeXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xXcml0ZUJ5dGVzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VEaXNrUXVldWVMZW5ndGgiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVG90YWwiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVHJhbnNtaXR0ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzUmVjZWl2ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXFBhY2tldHNUcmFuc21pdHRlZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcUGFja2V0c1JlY2VpdmVkIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFJ4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFR4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbENvbGxpc2lvbnMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Compute/virtualMachines/vmcrptestps4470/extensions/LinuxDiagnostic\",\r\n \"name\": \"LinuxDiagnostic\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "5683" @@ -4012,10 +4012,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130995838280309262" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "38ca6ce2-7ddb-4d6f-9476-19e4d162690d" + "a666102e-68cf-40dc-9077-0a633994a498" ], "Cache-Control": [ "no-cache" @@ -4025,25 +4025,25 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14960" + "14974" ], "x-ms-correlation-request-id": [ - "00626384-4929-4e4e-8761-16ce3504c463" + "94f6b347-9524-4fbf-b7b1-eef6e89a3dd7" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T133710Z:00626384-4929-4e4e-8761-16ce3504c463" + "NORTHCENTRALUS:20160220T141325Z:94f6b347-9524-4fbf-b7b1-eef6e89a3dd7" ], "Date": [ - "Thu, 18 Feb 2016 13:37:09 GMT" + "Sat, 20 Feb 2016 14:13:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427/extensions/AzureEnhancedMonitorForLinux?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQ0MjcvZXh0ZW5zaW9ucy9BenVyZUVuaGFuY2VkTW9uaXRvckZvckxpbnV4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Compute/virtualMachines/vmcrptestps4470/extensions/AzureEnhancedMonitorForLinux?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0NzAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQ0NzAvZXh0ZW5zaW9ucy9BenVyZUVuaGFuY2VkTW9uaXRvckZvckxpbnV4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_DS2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.2\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.2\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"stocrptestps4427.hour.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"stocrptestps4427.minute.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps44272\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps44272.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"protectedSettings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"wad.key\",\r\n \"value\": \"gSQQlWUd96Jt7RsvKOROnNdIUNasI858O/RwojTFOFez5SjSogtSXtNHpAcxgge1dpWu+FxqU5vcNUYaqpy8NQ==\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_DS2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.2\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.2\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"stocrptestps4470.hour.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"stocrptestps4470.minute.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps44702\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps44702.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"protectedSettings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"wad.key\",\r\n \"value\": \"of9GEVt76bOqaf6Xq5r6QB3QK/uSkS576xD0nv+7wSpn6rTFKRH5mgr3CXSlQQm4Fw+YFcU97VtyeWhMvth+HA==\"\r\n }\r\n ]\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -4052,7 +4052,7 @@ "3205" ], "x-ms-client-request-id": [ - "22717fe1-0102-4f9e-b649-fc937a2b9c4b" + "45805b6d-680f-4a4f-b54b-d79e81bde864" ], "accept-language": [ "en-US" @@ -4061,7 +4061,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_DS2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.2\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.2\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"stocrptestps4427.hour.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"stocrptestps4427.minute.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps44272\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps44272.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427/extensions/AzureEnhancedMonitorForLinux\",\r\n \"name\": \"AzureEnhancedMonitorForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_DS2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.2\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.2\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"stocrptestps4470.hour.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"stocrptestps4470.minute.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps44702\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps44702.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Compute/virtualMachines/vmcrptestps4470/extensions/AzureEnhancedMonitorForLinux\",\r\n \"name\": \"AzureEnhancedMonitorForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1912" @@ -4076,16 +4076,16 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/b24b3001-8d8f-4e1f-9bf5-4afcf425156d?api-version=2015-06-15" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/7bf594ce-a163-4275-b6e6-81a1bae35dba?api-version=2015-06-15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130995838280309262" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "b24b3001-8d8f-4e1f-9bf5-4afcf425156d" + "7bf594ce-a163-4275-b6e6-81a1bae35dba" ], "Cache-Control": [ "no-cache" @@ -4098,20 +4098,20 @@ "1197" ], "x-ms-correlation-request-id": [ - "c0ffaf69-5a4f-4cb2-8646-89f3ac8f8628" + "f59d3c98-f85e-4af2-b488-9367ea90ddf3" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T133711Z:c0ffaf69-5a4f-4cb2-8646-89f3ac8f8628" + "NORTHCENTRALUS:20160220T141333Z:f59d3c98-f85e-4af2-b488-9367ea90ddf3" ], "Date": [ - "Thu, 18 Feb 2016 13:37:11 GMT" + "Sat, 20 Feb 2016 14:13:33 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/b24b3001-8d8f-4e1f-9bf5-4afcf425156d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjI0YjMwMDEtOGQ4Zi00ZTFmLTliZjUtNGFmY2Y0MjUxNTZkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/7bf594ce-a163-4275-b6e6-81a1bae35dba?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvN2JmNTk0Y2UtYTE2My00Mjc1LWI2ZTYtODFhMWJhZTM1ZGJhP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4119,7 +4119,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"b24b3001-8d8f-4e1f-9bf5-4afcf425156d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-18T14:37:11.0977536+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"7bf594ce-a163-4275-b6e6-81a1bae35dba\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-20T15:13:30.5286074+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -4137,10 +4137,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130995838280309262" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "5dbb708d-f34e-46b5-871d-63479b25d220" + "f29f9d23-8820-4e94-8f9d-d1a819706e8a" ], "Cache-Control": [ "no-cache" @@ -4150,23 +4150,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14957" + "14972" ], "x-ms-correlation-request-id": [ - "7a3bda51-34da-4e79-844d-13468be1855b" + "7cefb1bf-be85-451a-9bda-257b7d9014d5" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T133742Z:7a3bda51-34da-4e79-844d-13468be1855b" + "NORTHCENTRALUS:20160220T141403Z:7cefb1bf-be85-451a-9bda-257b7d9014d5" ], "Date": [ - "Thu, 18 Feb 2016 13:37:41 GMT" + "Sat, 20 Feb 2016 14:14:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/b24b3001-8d8f-4e1f-9bf5-4afcf425156d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjI0YjMwMDEtOGQ4Zi00ZTFmLTliZjUtNGFmY2Y0MjUxNTZkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/7bf594ce-a163-4275-b6e6-81a1bae35dba?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvN2JmNTk0Y2UtYTE2My00Mjc1LWI2ZTYtODFhMWJhZTM1ZGJhP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4174,7 +4174,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"b24b3001-8d8f-4e1f-9bf5-4afcf425156d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-18T14:37:11.0977536+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"7bf594ce-a163-4275-b6e6-81a1bae35dba\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-20T15:13:30.5286074+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -4192,10 +4192,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130995838280309262" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "d2cfb870-71ab-4b9f-896e-b32b13ffc5e8" + "00525499-0413-4b49-94e8-b7ffe0e94737" ], "Cache-Control": [ "no-cache" @@ -4205,23 +4205,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14955" + "14971" ], "x-ms-correlation-request-id": [ - "1037e929-797f-4595-b0a6-be07e3bc4f3b" + "6b6b7ba6-db44-4a6a-960d-6d03ef74cc40" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T133812Z:1037e929-797f-4595-b0a6-be07e3bc4f3b" + "NORTHCENTRALUS:20160220T141433Z:6b6b7ba6-db44-4a6a-960d-6d03ef74cc40" ], "Date": [ - "Thu, 18 Feb 2016 13:38:12 GMT" + "Sat, 20 Feb 2016 14:14:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/b24b3001-8d8f-4e1f-9bf5-4afcf425156d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjI0YjMwMDEtOGQ4Zi00ZTFmLTliZjUtNGFmY2Y0MjUxNTZkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/7bf594ce-a163-4275-b6e6-81a1bae35dba?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvN2JmNTk0Y2UtYTE2My00Mjc1LWI2ZTYtODFhMWJhZTM1ZGJhP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4229,10 +4229,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"b24b3001-8d8f-4e1f-9bf5-4afcf425156d\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-02-18T14:37:11.0977536+01:00\",\r\n \"endTime\": \"2016-02-18T14:38:14.7375694+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"7bf594ce-a163-4275-b6e6-81a1bae35dba\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-02-20T15:13:30.5286074+01:00\",\r\n \"endTime\": \"2016-02-20T15:14:45.388522+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "191" + "190" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4247,10 +4247,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130995838280309262" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "14eff503-caab-4cbe-bd12-d1af27d5342c" + "8fa24836-28e5-4924-8a17-2dd8c9654e8a" ], "Cache-Control": [ "no-cache" @@ -4260,23 +4260,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14954" + "14970" ], "x-ms-correlation-request-id": [ - "fb1fc756-f53d-4cbc-ab18-e84ac4bc5849" + "27d45a16-46e9-43a7-96f1-f90ca28e45c4" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T133842Z:fb1fc756-f53d-4cbc-ab18-e84ac4bc5849" + "NORTHCENTRALUS:20160220T141503Z:27d45a16-46e9-43a7-96f1-f90ca28e45c4" ], "Date": [ - "Thu, 18 Feb 2016 13:38:41 GMT" + "Sat, 20 Feb 2016 14:15:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427/extensions/AzureEnhancedMonitorForLinux?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQ0MjcvZXh0ZW5zaW9ucy9BenVyZUVuaGFuY2VkTW9uaXRvckZvckxpbnV4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Compute/virtualMachines/vmcrptestps4470/extensions/AzureEnhancedMonitorForLinux?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0NzAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQ0NzAvZXh0ZW5zaW9ucy9BenVyZUVuaGFuY2VkTW9uaXRvckZvckxpbnV4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4284,7 +4284,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_DS2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.2\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.2\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"stocrptestps4427.hour.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"stocrptestps4427.minute.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps44272\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps44272.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427/extensions/AzureEnhancedMonitorForLinux\",\r\n \"name\": \"AzureEnhancedMonitorForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_DS2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.2\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.2\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"stocrptestps4470.hour.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"stocrptestps4470.minute.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps44702\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps44702.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Compute/virtualMachines/vmcrptestps4470/extensions/AzureEnhancedMonitorForLinux\",\r\n \"name\": \"AzureEnhancedMonitorForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1913" @@ -4302,10 +4302,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130995838280309262" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "a4366648-cf43-4493-941b-f59165826186" + "f437f280-3ec6-4602-83fb-c37af1fbd11b" ], "Cache-Control": [ "no-cache" @@ -4315,28 +4315,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14953" + "14969" ], "x-ms-correlation-request-id": [ - "19567665-2f43-47c9-b8b4-bb7340b2c331" + "78375c83-a432-4c85-aeb8-dabea686786f" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T133842Z:19567665-2f43-47c9-b8b4-bb7340b2c331" + "NORTHCENTRALUS:20160220T141504Z:78375c83-a432-4c85-aeb8-dabea686786f" ], "Date": [ - "Thu, 18 Feb 2016 13:38:41 GMT" + "Sat, 20 Feb 2016 14:15:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427/extensions/AzureEnhancedMonitorForLinux?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQ0MjcvZXh0ZW5zaW9ucy9BenVyZUVuaGFuY2VkTW9uaXRvckZvckxpbnV4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Compute/virtualMachines/vmcrptestps4470/extensions/AzureEnhancedMonitorForLinux?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0NzAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQ0NzAvZXh0ZW5zaW9ucy9BenVyZUVuaGFuY2VkTW9uaXRvckZvckxpbnV4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5ae91200-2c88-4831-8c80-b48ffba12378" + "b1a979d6-1893-4117-b65b-cfbbb9012ae6" ], "accept-language": [ "en-US" @@ -4345,7 +4345,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_DS2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.2\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.2\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"stocrptestps4427.hour.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"stocrptestps4427.minute.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps44272\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps44272.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427/extensions/AzureEnhancedMonitorForLinux\",\r\n \"name\": \"AzureEnhancedMonitorForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_DS2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.2\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.2\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"stocrptestps4470.hour.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"stocrptestps4470.minute.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps44702\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps44702.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Compute/virtualMachines/vmcrptestps4470/extensions/AzureEnhancedMonitorForLinux\",\r\n \"name\": \"AzureEnhancedMonitorForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1913" @@ -4363,10 +4363,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130995838280309262" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "bcbbdeff-8f47-438a-9375-ada58f83070c" + "3ca35fbb-a85e-4913-8590-579fae73c9ff" ], "Cache-Control": [ "no-cache" @@ -4376,28 +4376,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14951" + "14967" ], "x-ms-correlation-request-id": [ - "27a906b8-a7e3-4283-9e04-29c17900e6e2" + "51bbaf78-89b4-48d9-9597-ecb2c95ee99b" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T133843Z:27a906b8-a7e3-4283-9e04-29c17900e6e2" + "NORTHCENTRALUS:20160220T141504Z:51bbaf78-89b4-48d9-9597-ecb2c95ee99b" ], "Date": [ - "Thu, 18 Feb 2016 13:38:42 GMT" + "Sat, 20 Feb 2016 14:15:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4427/providers/Microsoft.Compute/virtualMachines/vmcrptestps4427/extensions/AzureEnhancedMonitorForLinux?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQ0MjcvZXh0ZW5zaW9ucy9BenVyZUVuaGFuY2VkTW9uaXRvckZvckxpbnV4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps4470/providers/Microsoft.Compute/virtualMachines/vmcrptestps4470/extensions/AzureEnhancedMonitorForLinux?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0NzAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQ0NzAvZXh0ZW5zaW9ucy9BenVyZUVuaGFuY2VkTW9uaXRvckZvckxpbnV4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f6931240-7d66-4283-a34f-b28ec5bd655d" + "f4d648fe-9c41-41ca-8c87-7cb1f900814e" ], "accept-language": [ "en-US" @@ -4418,22 +4418,22 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/4a8ded29-1f55-406f-b0a8-65a9950761a8?api-version=2015-06-15" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/408141e7-7302-4bb8-bdc8-a14348107285?api-version=2015-06-15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130995838280309262" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "4a8ded29-1f55-406f-b0a8-65a9950761a8" + "408141e7-7302-4bb8-bdc8-a14348107285" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/4a8ded29-1f55-406f-b0a8-65a9950761a8?monitor=true&api-version=2015-06-15" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/408141e7-7302-4bb8-bdc8-a14348107285?monitor=true&api-version=2015-06-15" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -4443,20 +4443,20 @@ "1196" ], "x-ms-correlation-request-id": [ - "0be9e049-17e1-4d44-a8d0-0ef3b8350446" + "24979fc0-41ef-465f-a865-1269909831b0" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T133901Z:0be9e049-17e1-4d44-a8d0-0ef3b8350446" + "NORTHCENTRALUS:20160220T141511Z:24979fc0-41ef-465f-a865-1269909831b0" ], "Date": [ - "Thu, 18 Feb 2016 13:39:01 GMT" + "Sat, 20 Feb 2016 14:15:11 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/4a8ded29-1f55-406f-b0a8-65a9950761a8?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNGE4ZGVkMjktMWY1NS00MDZmLWIwYTgtNjVhOTk1MDc2MWE4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/408141e7-7302-4bb8-bdc8-a14348107285?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNDA4MTQxZTctNzMwMi00YmI4LWJkYzgtYTE0MzQ4MTA3Mjg1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4464,7 +4464,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"4a8ded29-1f55-406f-b0a8-65a9950761a8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-18T14:39:01.3619733+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"408141e7-7302-4bb8-bdc8-a14348107285\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-20T15:15:10.2479947+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -4482,10 +4482,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130995838280309262" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "5f11d6fe-8dfb-4b1e-9735-706903619a23" + "2f7366ce-dd48-4d3e-a021-95714f3b16e2" ], "Cache-Control": [ "no-cache" @@ -4495,23 +4495,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14947" + "14963" ], "x-ms-correlation-request-id": [ - "8e398d88-d791-41a0-9e1a-42ccb0b0c18a" + "73424d55-d3b1-476f-80e9-a768b71c6795" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T133931Z:8e398d88-d791-41a0-9e1a-42ccb0b0c18a" + "NORTHCENTRALUS:20160220T141541Z:73424d55-d3b1-476f-80e9-a768b71c6795" ], "Date": [ - "Thu, 18 Feb 2016 13:39:31 GMT" + "Sat, 20 Feb 2016 14:15:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/4a8ded29-1f55-406f-b0a8-65a9950761a8?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNGE4ZGVkMjktMWY1NS00MDZmLWIwYTgtNjVhOTk1MDc2MWE4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/408141e7-7302-4bb8-bdc8-a14348107285?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNDA4MTQxZTctNzMwMi00YmI4LWJkYzgtYTE0MzQ4MTA3Mjg1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4519,7 +4519,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"4a8ded29-1f55-406f-b0a8-65a9950761a8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-18T14:39:01.3619733+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"408141e7-7302-4bb8-bdc8-a14348107285\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-20T15:15:10.2479947+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -4537,10 +4537,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130995838280309262" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "d3752ab3-1052-4af4-bd2c-8fbbed69edb7" + "4298b676-689c-49b2-9ab1-dc961333b774" ], "Cache-Control": [ "no-cache" @@ -4550,23 +4550,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14966" + "14962" ], "x-ms-correlation-request-id": [ - "24dd8dcf-0c62-40b3-869d-aeac77100bb4" + "98b6ed90-b37f-4a8e-a98a-b336eef06fc3" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T134002Z:24dd8dcf-0c62-40b3-869d-aeac77100bb4" + "NORTHCENTRALUS:20160220T141611Z:98b6ed90-b37f-4a8e-a98a-b336eef06fc3" ], "Date": [ - "Thu, 18 Feb 2016 13:40:01 GMT" + "Sat, 20 Feb 2016 14:16:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/4a8ded29-1f55-406f-b0a8-65a9950761a8?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNGE4ZGVkMjktMWY1NS00MDZmLWIwYTgtNjVhOTk1MDc2MWE4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/408141e7-7302-4bb8-bdc8-a14348107285?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNDA4MTQxZTctNzMwMi00YmI4LWJkYzgtYTE0MzQ4MTA3Mjg1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4574,7 +4574,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"4a8ded29-1f55-406f-b0a8-65a9950761a8\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-02-18T14:39:01.3619733+01:00\",\r\n \"endTime\": \"2016-02-18T14:40:15.2672841+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"408141e7-7302-4bb8-bdc8-a14348107285\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-02-20T15:15:10.2479947+01:00\",\r\n \"endTime\": \"2016-02-20T15:16:18.6391161+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "191" @@ -4592,10 +4592,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130995838280309262" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "e6e6d5d2-ff91-40f2-91a5-7ad735bb3c8b" + "035c642c-e287-45fb-b830-9a81dcf3e808" ], "Cache-Control": [ "no-cache" @@ -4605,23 +4605,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14965" + "14961" ], "x-ms-correlation-request-id": [ - "96f62403-196c-4512-8afb-0d596f8b33a4" + "b6968910-cc41-457c-8f4c-97bc5a18a40f" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T134032Z:96f62403-196c-4512-8afb-0d596f8b33a4" + "NORTHCENTRALUS:20160220T141641Z:b6968910-cc41-457c-8f4c-97bc5a18a40f" ], "Date": [ - "Thu, 18 Feb 2016 13:40:31 GMT" + "Sat, 20 Feb 2016 14:16:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourcegroups/crptestps4427?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczQ0Mjc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourcegroups/crptestps4470?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczQ0NzA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -4647,13 +4647,13 @@ "1199" ], "x-ms-request-id": [ - "9e26c167-8b6b-45d1-8ece-3290be5fc90f" + "d9b0fb54-9544-47c8-92e3-e106e3cf9d56" ], "x-ms-correlation-request-id": [ - "9e26c167-8b6b-45d1-8ece-3290be5fc90f" + "d9b0fb54-9544-47c8-92e3-e106e3cf9d56" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T134033Z:9e26c167-8b6b-45d1-8ece-3290be5fc90f" + "NORTHCENTRALUS:20160220T141644Z:d9b0fb54-9544-47c8-92e3-e106e3cf9d56" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4662,17 +4662,17 @@ "no-cache" ], "Date": [ - "Thu, 18 Feb 2016 13:40:33 GMT" + "Sat, 20 Feb 2016 14:16:44 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDcwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRJM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDcwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRjd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4698,16 +4698,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14991" ], "x-ms-request-id": [ - "2e4aac41-4522-4c3c-a86d-89973c7aad5b" + "4f1ac7c9-3fe2-45f4-b823-a18109469f22" ], "x-ms-correlation-request-id": [ - "2e4aac41-4522-4c3c-a86d-89973c7aad5b" + "4f1ac7c9-3fe2-45f4-b823-a18109469f22" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T134034Z:2e4aac41-4522-4c3c-a86d-89973c7aad5b" + "NORTHCENTRALUS:20160220T141645Z:4f1ac7c9-3fe2-45f4-b823-a18109469f22" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4716,17 +4716,17 @@ "no-cache" ], "Date": [ - "Thu, 18 Feb 2016 13:40:33 GMT" + "Sat, 20 Feb 2016 14:16:44 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDcwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRJM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDcwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRjd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4752,16 +4752,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14990" ], "x-ms-request-id": [ - "dcc7d673-e9b9-4a3b-b029-50617d0ea5db" + "7664eaa5-299c-4ce9-8526-ee58b28363f1" ], "x-ms-correlation-request-id": [ - "dcc7d673-e9b9-4a3b-b029-50617d0ea5db" + "7664eaa5-299c-4ce9-8526-ee58b28363f1" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T134049Z:dcc7d673-e9b9-4a3b-b029-50617d0ea5db" + "NORTHCENTRALUS:20160220T141700Z:7664eaa5-299c-4ce9-8526-ee58b28363f1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4770,17 +4770,17 @@ "no-cache" ], "Date": [ - "Thu, 18 Feb 2016 13:40:48 GMT" + "Sat, 20 Feb 2016 14:17:00 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDcwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRJM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDcwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRjd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4806,16 +4806,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14989" ], "x-ms-request-id": [ - "2f534124-8428-43bb-b94e-4170806fe663" + "f97c10fc-d62d-4ac3-afb4-7b7f678e758b" ], "x-ms-correlation-request-id": [ - "2f534124-8428-43bb-b94e-4170806fe663" + "f97c10fc-d62d-4ac3-afb4-7b7f678e758b" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T134104Z:2f534124-8428-43bb-b94e-4170806fe663" + "NORTHCENTRALUS:20160220T141716Z:f97c10fc-d62d-4ac3-afb4-7b7f678e758b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4824,17 +4824,17 @@ "no-cache" ], "Date": [ - "Thu, 18 Feb 2016 13:41:04 GMT" + "Sat, 20 Feb 2016 14:17:16 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDcwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRJM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDcwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRjd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4860,16 +4860,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14987" ], "x-ms-request-id": [ - "57b8878e-7577-4728-8689-3ff00c1acadf" + "10522e88-b90a-4e42-904d-65a56f8beae6" ], "x-ms-correlation-request-id": [ - "57b8878e-7577-4728-8689-3ff00c1acadf" + "10522e88-b90a-4e42-904d-65a56f8beae6" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T134119Z:57b8878e-7577-4728-8689-3ff00c1acadf" + "NORTHCENTRALUS:20160220T141732Z:10522e88-b90a-4e42-904d-65a56f8beae6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4878,17 +4878,17 @@ "no-cache" ], "Date": [ - "Thu, 18 Feb 2016 13:41:18 GMT" + "Sat, 20 Feb 2016 14:17:31 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDcwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRJM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDcwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRjd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4914,16 +4914,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14986" ], "x-ms-request-id": [ - "d9741706-679a-4f14-a986-6acb05efe66c" + "2c7bb710-b7e5-473a-b4f3-dc79c5437510" ], "x-ms-correlation-request-id": [ - "d9741706-679a-4f14-a986-6acb05efe66c" + "2c7bb710-b7e5-473a-b4f3-dc79c5437510" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T134134Z:d9741706-679a-4f14-a986-6acb05efe66c" + "NORTHCENTRALUS:20160220T141747Z:2c7bb710-b7e5-473a-b4f3-dc79c5437510" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4932,17 +4932,17 @@ "no-cache" ], "Date": [ - "Thu, 18 Feb 2016 13:41:34 GMT" + "Sat, 20 Feb 2016 14:17:46 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDcwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRJM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDcwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRjd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4968,16 +4968,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14985" ], "x-ms-request-id": [ - "ab0bcfbc-8ba5-4d15-beaa-9624c0bbaa6f" + "c1ada01d-0644-4373-9ae1-cdf81a919ba9" ], "x-ms-correlation-request-id": [ - "ab0bcfbc-8ba5-4d15-beaa-9624c0bbaa6f" + "c1ada01d-0644-4373-9ae1-cdf81a919ba9" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T134149Z:ab0bcfbc-8ba5-4d15-beaa-9624c0bbaa6f" + "NORTHCENTRALUS:20160220T141802Z:c1ada01d-0644-4373-9ae1-cdf81a919ba9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4986,17 +4986,17 @@ "no-cache" ], "Date": [ - "Thu, 18 Feb 2016 13:41:49 GMT" + "Sat, 20 Feb 2016 14:18:02 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDcwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRJM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDcwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRjd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5022,16 +5022,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14984" ], "x-ms-request-id": [ - "1adb4a07-65fd-4a1e-b922-5d38c00afe0c" + "dec140ad-116a-4ab1-ad0b-2f5a28a705aa" ], "x-ms-correlation-request-id": [ - "1adb4a07-65fd-4a1e-b922-5d38c00afe0c" + "dec140ad-116a-4ab1-ad0b-2f5a28a705aa" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T134205Z:1adb4a07-65fd-4a1e-b922-5d38c00afe0c" + "NORTHCENTRALUS:20160220T141817Z:dec140ad-116a-4ab1-ad0b-2f5a28a705aa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5040,17 +5040,17 @@ "no-cache" ], "Date": [ - "Thu, 18 Feb 2016 13:42:04 GMT" + "Sat, 20 Feb 2016 14:18:17 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDcwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRJM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDcwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRjd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5076,16 +5076,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14983" ], "x-ms-request-id": [ - "3ef82a41-10c7-4951-b2f5-5f9536aa506c" + "4d93d1f1-747f-492f-8258-16ba7d4da5ba" ], "x-ms-correlation-request-id": [ - "3ef82a41-10c7-4951-b2f5-5f9536aa506c" + "4d93d1f1-747f-492f-8258-16ba7d4da5ba" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T134220Z:3ef82a41-10c7-4951-b2f5-5f9536aa506c" + "NORTHCENTRALUS:20160220T141833Z:4d93d1f1-747f-492f-8258-16ba7d4da5ba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5094,17 +5094,17 @@ "no-cache" ], "Date": [ - "Thu, 18 Feb 2016 13:42:19 GMT" + "Sat, 20 Feb 2016 14:18:33 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDcwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRJM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDcwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRjd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5130,16 +5130,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14982" ], "x-ms-request-id": [ - "fe539b5e-3329-4bbc-92d6-b7f9f0e1f664" + "6473bfe5-fcd1-4121-8bc6-3a333d916968" ], "x-ms-correlation-request-id": [ - "fe539b5e-3329-4bbc-92d6-b7f9f0e1f664" + "6473bfe5-fcd1-4121-8bc6-3a333d916968" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T134235Z:fe539b5e-3329-4bbc-92d6-b7f9f0e1f664" + "NORTHCENTRALUS:20160220T141849Z:6473bfe5-fcd1-4121-8bc6-3a333d916968" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5148,17 +5148,17 @@ "no-cache" ], "Date": [ - "Thu, 18 Feb 2016 13:42:34 GMT" + "Sat, 20 Feb 2016 14:18:48 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDcwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRJM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDcwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRjd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5184,16 +5184,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14981" ], "x-ms-request-id": [ - "f515e0b9-35d4-41d3-889d-96e0ccfd68d6" + "9d28a523-f69e-44f5-ac44-0ccbb111d823" ], "x-ms-correlation-request-id": [ - "f515e0b9-35d4-41d3-889d-96e0ccfd68d6" + "9d28a523-f69e-44f5-ac44-0ccbb111d823" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T134250Z:f515e0b9-35d4-41d3-889d-96e0ccfd68d6" + "NORTHCENTRALUS:20160220T141904Z:9d28a523-f69e-44f5-ac44-0ccbb111d823" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5202,17 +5202,17 @@ "no-cache" ], "Date": [ - "Thu, 18 Feb 2016 13:42:49 GMT" + "Sat, 20 Feb 2016 14:19:04 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDcwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRJM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDcwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRjd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5238,16 +5238,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14980" ], "x-ms-request-id": [ - "8f50b6df-cf00-40f4-ba1b-fec7b2efccbb" + "d0fdfb3a-8ef0-42da-894a-72f4d767c733" ], "x-ms-correlation-request-id": [ - "8f50b6df-cf00-40f4-ba1b-fec7b2efccbb" + "d0fdfb3a-8ef0-42da-894a-72f4d767c733" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T134305Z:8f50b6df-cf00-40f4-ba1b-fec7b2efccbb" + "NORTHCENTRALUS:20160220T141919Z:d0fdfb3a-8ef0-42da-894a-72f4d767c733" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5256,17 +5256,17 @@ "no-cache" ], "Date": [ - "Thu, 18 Feb 2016 13:43:05 GMT" + "Sat, 20 Feb 2016 14:19:18 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDcwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRJM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDcwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRjd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5292,16 +5292,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" + "14979" ], "x-ms-request-id": [ - "dbcb8a27-9285-4055-aeca-1e8edb22cf9f" + "1dad0396-dd8d-4f07-a2c2-6af4129b3798" ], "x-ms-correlation-request-id": [ - "dbcb8a27-9285-4055-aeca-1e8edb22cf9f" + "1dad0396-dd8d-4f07-a2c2-6af4129b3798" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T134321Z:dbcb8a27-9285-4055-aeca-1e8edb22cf9f" + "NORTHCENTRALUS:20160220T141934Z:1dad0396-dd8d-4f07-a2c2-6af4129b3798" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5310,17 +5310,17 @@ "no-cache" ], "Date": [ - "Thu, 18 Feb 2016 13:43:20 GMT" + "Sat, 20 Feb 2016 14:19:34 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDcwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRJM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDcwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRjd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5346,16 +5346,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" + "14978" ], "x-ms-request-id": [ - "4a1fd039-969d-4d7c-8a52-0d5b7d283444" + "63ec1b3a-2368-42d2-862b-40165f5fc0e1" ], "x-ms-correlation-request-id": [ - "4a1fd039-969d-4d7c-8a52-0d5b7d283444" + "63ec1b3a-2368-42d2-862b-40165f5fc0e1" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T134336Z:4a1fd039-969d-4d7c-8a52-0d5b7d283444" + "NORTHCENTRALUS:20160220T141950Z:63ec1b3a-2368-42d2-862b-40165f5fc0e1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5364,17 +5364,17 @@ "no-cache" ], "Date": [ - "Thu, 18 Feb 2016 13:43:35 GMT" + "Sat, 20 Feb 2016 14:19:49 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDcwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRJM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDcwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRjd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5400,16 +5400,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" + "14977" ], "x-ms-request-id": [ - "19a6b86d-810d-4df2-b93f-a71fe637c6f0" + "e8a908cd-92fe-44f2-a742-4e8ead80858d" ], "x-ms-correlation-request-id": [ - "19a6b86d-810d-4df2-b93f-a71fe637c6f0" + "e8a908cd-92fe-44f2-a742-4e8ead80858d" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T134351Z:19a6b86d-810d-4df2-b93f-a71fe637c6f0" + "NORTHCENTRALUS:20160220T142005Z:e8a908cd-92fe-44f2-a742-4e8ead80858d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5418,17 +5418,17 @@ "no-cache" ], "Date": [ - "Thu, 18 Feb 2016 13:43:51 GMT" + "Sat, 20 Feb 2016 14:20:05 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDcwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRJM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDcwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRjd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5454,16 +5454,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" + "14976" ], "x-ms-request-id": [ - "21d4f280-4edd-4176-87c3-b59b9dc8fac5" + "41fe434c-22d4-4a4a-a1bc-1bcb98c7715e" ], "x-ms-correlation-request-id": [ - "21d4f280-4edd-4176-87c3-b59b9dc8fac5" + "41fe434c-22d4-4a4a-a1bc-1bcb98c7715e" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T134406Z:21d4f280-4edd-4176-87c3-b59b9dc8fac5" + "NORTHCENTRALUS:20160220T142021Z:41fe434c-22d4-4a4a-a1bc-1bcb98c7715e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5472,17 +5472,17 @@ "no-cache" ], "Date": [ - "Thu, 18 Feb 2016 13:44:05 GMT" + "Sat, 20 Feb 2016 14:20:20 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDcwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRJM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDcwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRjd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5508,16 +5508,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" + "14975" ], "x-ms-request-id": [ - "761a1c9a-3463-4ca1-bee9-2b2e2b74a1ce" + "fb94ae52-b24d-41f1-8c39-06f7d9df2d5b" ], "x-ms-correlation-request-id": [ - "761a1c9a-3463-4ca1-bee9-2b2e2b74a1ce" + "fb94ae52-b24d-41f1-8c39-06f7d9df2d5b" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T134421Z:761a1c9a-3463-4ca1-bee9-2b2e2b74a1ce" + "NORTHCENTRALUS:20160220T142036Z:fb94ae52-b24d-41f1-8c39-06f7d9df2d5b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5526,17 +5526,17 @@ "no-cache" ], "Date": [ - "Thu, 18 Feb 2016 13:44:21 GMT" + "Sat, 20 Feb 2016 14:20:36 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDcwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRJM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDcwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRjd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5562,16 +5562,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" + "14974" ], "x-ms-request-id": [ - "ae2efe00-6670-4c56-9333-ce80e957a8c6" + "69d738e9-091b-40a6-94e9-fa078b68d5a7" ], "x-ms-correlation-request-id": [ - "ae2efe00-6670-4c56-9333-ce80e957a8c6" + "69d738e9-091b-40a6-94e9-fa078b68d5a7" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T134436Z:ae2efe00-6670-4c56-9333-ce80e957a8c6" + "NORTHCENTRALUS:20160220T142051Z:69d738e9-091b-40a6-94e9-fa078b68d5a7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5580,17 +5580,17 @@ "no-cache" ], "Date": [ - "Thu, 18 Feb 2016 13:44:36 GMT" + "Sat, 20 Feb 2016 14:20:51 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDcwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRJM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDcwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRjd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5616,16 +5616,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14970" + "14973" ], "x-ms-request-id": [ - "2e1ba58f-f92a-4931-9671-ac4aa84fc435" + "47eac3a3-f3da-44e7-8270-a768a77e92ce" ], "x-ms-correlation-request-id": [ - "2e1ba58f-f92a-4931-9671-ac4aa84fc435" + "47eac3a3-f3da-44e7-8270-a768a77e92ce" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T134452Z:2e1ba58f-f92a-4931-9671-ac4aa84fc435" + "NORTHCENTRALUS:20160220T142107Z:47eac3a3-f3da-44e7-8270-a768a77e92ce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5634,17 +5634,17 @@ "no-cache" ], "Date": [ - "Thu, 18 Feb 2016 13:44:52 GMT" + "Sat, 20 Feb 2016 14:21:06 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDcwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRJM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDcwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRjd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5670,16 +5670,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14969" + "14972" ], "x-ms-request-id": [ - "ff22e4ae-2b7a-4a1e-90ac-e74628ec32e4" + "6205ec1c-1b79-4fb5-84f6-87945151870c" ], "x-ms-correlation-request-id": [ - "ff22e4ae-2b7a-4a1e-90ac-e74628ec32e4" + "6205ec1c-1b79-4fb5-84f6-87945151870c" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T134507Z:ff22e4ae-2b7a-4a1e-90ac-e74628ec32e4" + "NORTHCENTRALUS:20160220T142122Z:6205ec1c-1b79-4fb5-84f6-87945151870c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5688,17 +5688,17 @@ "no-cache" ], "Date": [ - "Thu, 18 Feb 2016 13:45:07 GMT" + "Sat, 20 Feb 2016 14:21:22 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDcwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRJM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDcwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRjd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5724,16 +5724,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14968" + "14971" ], "x-ms-request-id": [ - "c0550e2a-3901-4a6b-8021-d3a3906af8ab" + "33929866-73fe-4a30-8fb1-336474c2f8ad" ], "x-ms-correlation-request-id": [ - "c0550e2a-3901-4a6b-8021-d3a3906af8ab" + "33929866-73fe-4a30-8fb1-336474c2f8ad" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T134523Z:c0550e2a-3901-4a6b-8021-d3a3906af8ab" + "NORTHCENTRALUS:20160220T142137Z:33929866-73fe-4a30-8fb1-336474c2f8ad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5742,17 +5742,17 @@ "no-cache" ], "Date": [ - "Thu, 18 Feb 2016 13:45:22 GMT" + "Sat, 20 Feb 2016 14:21:37 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDcwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRJM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDcwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRjd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5778,16 +5778,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14967" + "14970" ], "x-ms-request-id": [ - "ae7c9cc1-6d35-421c-a5f1-e3a32ea04150" + "3ed072ab-451c-40c3-bcd1-37896ae9a562" ], "x-ms-correlation-request-id": [ - "ae7c9cc1-6d35-421c-a5f1-e3a32ea04150" + "3ed072ab-451c-40c3-bcd1-37896ae9a562" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T134538Z:ae7c9cc1-6d35-421c-a5f1-e3a32ea04150" + "NORTHCENTRALUS:20160220T142152Z:3ed072ab-451c-40c3-bcd1-37896ae9a562" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5796,17 +5796,17 @@ "no-cache" ], "Date": [ - "Thu, 18 Feb 2016 13:45:38 GMT" + "Sat, 20 Feb 2016 14:21:52 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDcwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRJM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDcwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRjd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5832,16 +5832,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14966" + "14969" ], "x-ms-request-id": [ - "e4936daf-bdb6-4bd3-96e3-c83eaabfba0e" + "41e5d156-7468-4232-8b9b-41b2f0c6e3f0" ], "x-ms-correlation-request-id": [ - "e4936daf-bdb6-4bd3-96e3-c83eaabfba0e" + "41e5d156-7468-4232-8b9b-41b2f0c6e3f0" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T134553Z:e4936daf-bdb6-4bd3-96e3-c83eaabfba0e" + "NORTHCENTRALUS:20160220T142208Z:41e5d156-7468-4232-8b9b-41b2f0c6e3f0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5850,17 +5850,17 @@ "no-cache" ], "Date": [ - "Thu, 18 Feb 2016 13:45:53 GMT" + "Sat, 20 Feb 2016 14:22:07 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDcwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRJM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDcwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRjd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5886,16 +5886,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14965" + "14968" ], "x-ms-request-id": [ - "7d2a493e-022c-4b25-9b80-a64606075c2d" + "e9370372-2e29-4b49-9ae7-796fa4957a70" ], "x-ms-correlation-request-id": [ - "7d2a493e-022c-4b25-9b80-a64606075c2d" + "e9370372-2e29-4b49-9ae7-796fa4957a70" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T134608Z:7d2a493e-022c-4b25-9b80-a64606075c2d" + "NORTHCENTRALUS:20160220T142223Z:e9370372-2e29-4b49-9ae7-796fa4957a70" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5904,17 +5904,17 @@ "no-cache" ], "Date": [ - "Thu, 18 Feb 2016 13:46:08 GMT" + "Sat, 20 Feb 2016 14:22:23 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDcwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRJM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDcwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRjd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5940,16 +5940,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14964" + "14967" ], "x-ms-request-id": [ - "f28e882b-a714-4362-a80f-ef778cec2f57" + "984ed3cc-2682-477b-86f1-d0462983fbb6" ], "x-ms-correlation-request-id": [ - "f28e882b-a714-4362-a80f-ef778cec2f57" + "984ed3cc-2682-477b-86f1-d0462983fbb6" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T134624Z:f28e882b-a714-4362-a80f-ef778cec2f57" + "NORTHCENTRALUS:20160220T142238Z:984ed3cc-2682-477b-86f1-d0462983fbb6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5958,17 +5958,17 @@ "no-cache" ], "Date": [ - "Thu, 18 Feb 2016 13:46:23 GMT" + "Sat, 20 Feb 2016 14:22:37 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDcwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRJM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDcwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRjd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5994,16 +5994,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14963" + "14966" ], "x-ms-request-id": [ - "5ae70b2a-0ab0-4f2b-b2d4-6bd100f80dad" + "cb5bfd84-ab5e-4b70-85fc-e9b9a2f29edc" ], "x-ms-correlation-request-id": [ - "5ae70b2a-0ab0-4f2b-b2d4-6bd100f80dad" + "cb5bfd84-ab5e-4b70-85fc-e9b9a2f29edc" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T134639Z:5ae70b2a-0ab0-4f2b-b2d4-6bd100f80dad" + "NORTHCENTRALUS:20160220T142254Z:cb5bfd84-ab5e-4b70-85fc-e9b9a2f29edc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6012,17 +6012,17 @@ "no-cache" ], "Date": [ - "Thu, 18 Feb 2016 13:46:38 GMT" + "Sat, 20 Feb 2016 14:22:53 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDcwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRJM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDcwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRjd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6048,16 +6048,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14962" + "14965" ], "x-ms-request-id": [ - "ce2494d9-8715-495b-8ce2-6537b99d8f17" + "1fee9e46-8d31-48a2-bfdb-3ad31e1e2e39" ], "x-ms-correlation-request-id": [ - "ce2494d9-8715-495b-8ce2-6537b99d8f17" + "1fee9e46-8d31-48a2-bfdb-3ad31e1e2e39" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T134654Z:ce2494d9-8715-495b-8ce2-6537b99d8f17" + "NORTHCENTRALUS:20160220T142309Z:1fee9e46-8d31-48a2-bfdb-3ad31e1e2e39" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6066,17 +6066,17 @@ "no-cache" ], "Date": [ - "Thu, 18 Feb 2016 13:46:53 GMT" + "Sat, 20 Feb 2016 14:23:09 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDcwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRJM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDcwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRjd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6099,16 +6099,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14961" + "14964" ], "x-ms-request-id": [ - "908c12a5-a4d7-40a1-b83f-82011c187f2f" + "0865a518-fd61-45f7-aa28-7ccff0cb4cb1" ], "x-ms-correlation-request-id": [ - "908c12a5-a4d7-40a1-b83f-82011c187f2f" + "0865a518-fd61-45f7-aa28-7ccff0cb4cb1" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160218T134709Z:908c12a5-a4d7-40a1-b83f-82011c187f2f" + "NORTHCENTRALUS:20160220T142324Z:0865a518-fd61-45f7-aa28-7ccff0cb4cb1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6117,7 +6117,7 @@ "no-cache" ], "Date": [ - "Thu, 18 Feb 2016 13:47:09 GMT" + "Sat, 20 Feb 2016 14:23:24 GMT" ] }, "StatusCode": 200 @@ -6125,7 +6125,7 @@ ], "Names": { "Test-AEMExtensionAdvancedLinux": [ - "crptestps4427" + "crptestps4470" ] }, "Variables": { diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.AEMExtensionTests/TestAEMExtensionAdvancedWindows.json b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.AEMExtensionTests/TestAEMExtensionAdvancedWindows.json index 28f853255f9e..b6207a2186f5 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.AEMExtensionTests/TestAEMExtensionAdvancedWindows.json +++ b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.AEMExtensionTests/TestAEMExtensionAdvancedWindows.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute?api-version=2014-04-01-preview", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute?api-version=2014-04-01-preview", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", @@ -10,7 +10,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Length": [ "5199" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14988" ], "x-ms-request-id": [ - "bfe27e7d-8996-403e-b390-5cb2f2a72fce" + "dff097f7-99a8-44d0-917c-5ef72af81a30" ], "x-ms-correlation-request-id": [ - "bfe27e7d-8996-403e-b390-5cb2f2a72fce" + "dff097f7-99a8-44d0-917c-5ef72af81a30" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T102407Z:bfe27e7d-8996-403e-b390-5cb2f2a72fce" + "NORTHCENTRALUS:20160220T143531Z:dff097f7-99a8-44d0-917c-5ef72af81a30" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,14 +43,14 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 10:24:06 GMT" + "Sat, 20 Feb 2016 14:35:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourcegroups/crptestps6110?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczYxMTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourcegroups/crptestps1075?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczEwNzU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -76,16 +76,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14987" ], "x-ms-request-id": [ - "887caff4-9184-4131-a59f-da01dde790d2" + "e12e6739-ed7a-43e2-bf02-48a40c06687e" ], "x-ms-correlation-request-id": [ - "887caff4-9184-4131-a59f-da01dde790d2" + "e12e6739-ed7a-43e2-bf02-48a40c06687e" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T102407Z:887caff4-9184-4131-a59f-da01dde790d2" + "NORTHCENTRALUS:20160220T143531Z:e12e6739-ed7a-43e2-bf02-48a40c06687e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -94,14 +94,14 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 10:24:06 GMT" + "Sat, 20 Feb 2016 14:35:31 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourcegroups/crptestps6110?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczYxMTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourcegroups/crptestps1075?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczEwNzU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -121,16 +121,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14937" + "14956" ], "x-ms-request-id": [ - "a2f6dad7-f807-47c6-acfe-2d2c20e3a407" + "87ce17d0-e49b-42ba-b3cd-791e225fba07" ], "x-ms-correlation-request-id": [ - "a2f6dad7-f807-47c6-acfe-2d2c20e3a407" + "87ce17d0-e49b-42ba-b3cd-791e225fba07" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T103752Z:a2f6dad7-f807-47c6-acfe-2d2c20e3a407" + "NORTHCENTRALUS:20160220T145104Z:87ce17d0-e49b-42ba-b3cd-791e225fba07" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -139,14 +139,14 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 10:37:51 GMT" + "Sat, 20 Feb 2016 14:51:04 GMT" ] }, "StatusCode": 204 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourcegroups/crptestps6110?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczYxMTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourcegroups/crptestps1075?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczEwNzU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { @@ -160,7 +160,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110\",\r\n \"name\": \"crptestps6110\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075\",\r\n \"name\": \"crptestps1075\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "179" @@ -178,13 +178,13 @@ "1199" ], "x-ms-request-id": [ - "b75c2a47-7428-46c5-9b68-81c96b682790" + "0b83d559-2e3f-43b1-85c0-a7d617be062e" ], "x-ms-correlation-request-id": [ - "b75c2a47-7428-46c5-9b68-81c96b682790" + "0b83d559-2e3f-43b1-85c0-a7d617be062e" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T102408Z:b75c2a47-7428-46c5-9b68-81c96b682790" + "NORTHCENTRALUS:20160220T143533Z:0b83d559-2e3f-43b1-85c0-a7d617be062e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -193,14 +193,14 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 10:24:08 GMT" + "Sat, 20 Feb 2016 14:35:33 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEwNzUvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -223,16 +223,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14986" ], "x-ms-request-id": [ - "e4cb2b74-ed03-4890-83a5-6940f43e0f4b" + "d766582e-3f7c-4509-bbfe-b8bd4d196ae4" ], "x-ms-correlation-request-id": [ - "e4cb2b74-ed03-4890-83a5-6940f43e0f4b" + "d766582e-3f7c-4509-bbfe-b8bd4d196ae4" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T102409Z:e4cb2b74-ed03-4890-83a5-6940f43e0f4b" + "NORTHCENTRALUS:20160220T143533Z:d766582e-3f7c-4509-bbfe-b8bd4d196ae4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -241,19 +241,19 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 10:24:09 GMT" + "Sat, 20 Feb 2016 14:35:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/virtualnetworks/vnetcrptestps6110?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNjExMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Network/virtualnetworks/vnetcrptestps1075?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzMTA3NT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8ba0cfe1-7649-4fe0-8801-1dd73a1c7785" + "62ade397-fd87-4060-bdce-bf807e8e6677" ], "accept-language": [ "en-US" @@ -262,7 +262,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/vnetcrptestps6110' under resource group 'crptestps6110' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/vnetcrptestps1075' under resource group 'crptestps1075' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "168" @@ -280,13 +280,13 @@ "gateway" ], "x-ms-request-id": [ - "41e11034-b542-4ebb-9d29-61faa05ae8df" + "ec15ac9e-ca69-429a-abcd-889ad1cc9908" ], "x-ms-correlation-request-id": [ - "41e11034-b542-4ebb-9d29-61faa05ae8df" + "ec15ac9e-ca69-429a-abcd-889ad1cc9908" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T102411Z:41e11034-b542-4ebb-9d29-61faa05ae8df" + "NORTHCENTRALUS:20160220T143535Z:ec15ac9e-ca69-429a-abcd-889ad1cc9908" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -295,14 +295,14 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 10:24:11 GMT" + "Sat, 20 Feb 2016 14:35:35 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/virtualnetworks/vnetcrptestps6110?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNjExMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Network/virtualnetworks/vnetcrptestps1075?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzMTA3NT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -310,7 +310,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetcrptestps6110\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/virtualNetworks/vnetcrptestps6110\",\r\n \"etag\": \"W/\\\"43299f1e-bceb-485d-b939-71c1298bc20b\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6813052b-fb2d-49b6-8f03-b4f2b50cb636\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps6110\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/virtualNetworks/vnetcrptestps6110/subnets/subnetcrptestps6110\",\r\n \"etag\": \"W/\\\"43299f1e-bceb-485d-b939-71c1298bc20b\\\"\",\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}", + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps1075\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1075\",\r\n \"etag\": \"W/\\\"83c6b9b8-8cac-4d84-8fc2-dd56a658fe08\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e7422f82-cb45-4a90-99f1-57fed14c5af1\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps1075\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1075/subnets/subnetcrptestps1075\",\r\n \"etag\": \"W/\\\"83c6b9b8-8cac-4d84-8fc2-dd56a658fe08\\\"\",\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}", "ResponseHeaders": { "Content-Length": [ "994" @@ -325,7 +325,7 @@ "no-cache" ], "x-ms-request-id": [ - "0b72504c-1182-4151-9fd9-5da31acff902" + "35260b72-43d9-437d-afa9-cc99867110a7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,35 +334,35 @@ "no-cache" ], "ETag": [ - "W/\"43299f1e-bceb-485d-b939-71c1298bc20b\"" + "W/\"83c6b9b8-8cac-4d84-8fc2-dd56a658fe08\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14966" + "14989" ], "x-ms-correlation-request-id": [ - "6f5013dd-7e29-41c0-8378-070996f9217d" + "a02dbc8c-7b13-4ed2-85a0-e78a91da54bd" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T102424Z:6f5013dd-7e29-41c0-8378-070996f9217d" + "NORTHCENTRALUS:20160220T143608Z:a02dbc8c-7b13-4ed2-85a0-e78a91da54bd" ], "Date": [ - "Tue, 16 Feb 2016 10:24:24 GMT" + "Sat, 20 Feb 2016 14:36:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/virtualnetworks/vnetcrptestps6110?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNjExMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Network/virtualnetworks/vnetcrptestps1075?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzMTA3NT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4135d4ef-8bc1-447a-85e7-669d181f18e2" + "c6c2c5a8-c429-4a73-b7e4-643955576e61" ], "accept-language": [ "en-US" @@ -371,7 +371,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetcrptestps6110\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/virtualNetworks/vnetcrptestps6110\",\r\n \"etag\": \"W/\\\"43299f1e-bceb-485d-b939-71c1298bc20b\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6813052b-fb2d-49b6-8f03-b4f2b50cb636\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps6110\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/virtualNetworks/vnetcrptestps6110/subnets/subnetcrptestps6110\",\r\n \"etag\": \"W/\\\"43299f1e-bceb-485d-b939-71c1298bc20b\\\"\",\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}", + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps1075\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1075\",\r\n \"etag\": \"W/\\\"83c6b9b8-8cac-4d84-8fc2-dd56a658fe08\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e7422f82-cb45-4a90-99f1-57fed14c5af1\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps1075\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1075/subnets/subnetcrptestps1075\",\r\n \"etag\": \"W/\\\"83c6b9b8-8cac-4d84-8fc2-dd56a658fe08\\\"\",\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}", "ResponseHeaders": { "Content-Length": [ "994" @@ -386,7 +386,7 @@ "no-cache" ], "x-ms-request-id": [ - "6f265ce7-06e4-43bc-9e71-2624f7691391" + "0007b1d0-3bca-4f41-b929-1e5ee92d2100" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -395,35 +395,35 @@ "no-cache" ], "ETag": [ - "W/\"43299f1e-bceb-485d-b939-71c1298bc20b\"" + "W/\"83c6b9b8-8cac-4d84-8fc2-dd56a658fe08\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14965" + "14988" ], "x-ms-correlation-request-id": [ - "10cd9a8e-811a-4a5e-93df-ef096975131a" + "e8c7e177-d88e-4612-880e-856e69a6def4" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T102425Z:10cd9a8e-811a-4a5e-93df-ef096975131a" + "NORTHCENTRALUS:20160220T143608Z:e8c7e177-d88e-4612-880e-856e69a6def4" ], "Date": [ - "Tue, 16 Feb 2016 10:24:24 GMT" + "Sat, 20 Feb 2016 14:36:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/virtualnetworks/vnetcrptestps6110?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNjExMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Network/virtualnetworks/vnetcrptestps1075?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzMTA3NT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3cd85e90-a344-48f7-8790-85f390a653b9" + "c28c7c63-87f5-485f-9fcc-311d76074539" ], "accept-language": [ "en-US" @@ -432,7 +432,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetcrptestps6110\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/virtualNetworks/vnetcrptestps6110\",\r\n \"etag\": \"W/\\\"43299f1e-bceb-485d-b939-71c1298bc20b\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6813052b-fb2d-49b6-8f03-b4f2b50cb636\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps6110\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/virtualNetworks/vnetcrptestps6110/subnets/subnetcrptestps6110\",\r\n \"etag\": \"W/\\\"43299f1e-bceb-485d-b939-71c1298bc20b\\\"\",\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}", + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps1075\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1075\",\r\n \"etag\": \"W/\\\"83c6b9b8-8cac-4d84-8fc2-dd56a658fe08\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e7422f82-cb45-4a90-99f1-57fed14c5af1\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps1075\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1075/subnets/subnetcrptestps1075\",\r\n \"etag\": \"W/\\\"83c6b9b8-8cac-4d84-8fc2-dd56a658fe08\\\"\",\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}", "ResponseHeaders": { "Content-Length": [ "994" @@ -447,7 +447,7 @@ "no-cache" ], "x-ms-request-id": [ - "9819a26d-628e-47c2-a72d-53d9dbb519ad" + "e9d5e89f-dda4-49e7-ba7d-d4739e4df9cc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -456,32 +456,32 @@ "no-cache" ], "ETag": [ - "W/\"43299f1e-bceb-485d-b939-71c1298bc20b\"" + "W/\"83c6b9b8-8cac-4d84-8fc2-dd56a658fe08\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14964" + "14987" ], "x-ms-correlation-request-id": [ - "3e5d4d7e-c935-4fff-ac80-4dea0475b443" + "d6271e14-fb79-4988-a6ce-858edf9da8a0" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T102425Z:3e5d4d7e-c935-4fff-ac80-4dea0475b443" + "NORTHCENTRALUS:20160220T143608Z:d6271e14-fb79-4988-a6ce-858edf9da8a0" ], "Date": [ - "Tue, 16 Feb 2016 10:24:24 GMT" + "Sat, 20 Feb 2016 14:36:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/virtualnetworks/vnetcrptestps6110?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNjExMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Network/virtualnetworks/vnetcrptestps1075?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzMTA3NT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps6110\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps1075\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -490,7 +490,7 @@ "341" ], "x-ms-client-request-id": [ - "327bafcd-7a5a-412a-b381-abd6ae76f958" + "dbb17b37-cf29-4a30-ab09-c13451a512ad" ], "accept-language": [ "en-US" @@ -499,7 +499,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetcrptestps6110\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/virtualNetworks/vnetcrptestps6110\",\r\n \"etag\": \"W/\\\"e0b20976-d770-4f8f-b827-18fe3cd088d1\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"6813052b-fb2d-49b6-8f03-b4f2b50cb636\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps6110\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/virtualNetworks/vnetcrptestps6110/subnets/subnetcrptestps6110\",\r\n \"etag\": \"W/\\\"e0b20976-d770-4f8f-b827-18fe3cd088d1\\\"\",\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}", + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps1075\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1075\",\r\n \"etag\": \"W/\\\"cff2c40c-d347-4c08-b3e3-52c56b3a33f9\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"e7422f82-cb45-4a90-99f1-57fed14c5af1\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps1075\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1075/subnets/subnetcrptestps1075\",\r\n \"etag\": \"W/\\\"cff2c40c-d347-4c08-b3e3-52c56b3a33f9\\\"\",\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}", "ResponseHeaders": { "Content-Length": [ "992" @@ -517,10 +517,10 @@ "10" ], "x-ms-request-id": [ - "08077c7d-8741-496e-b871-e609d2698c7c" + "e5675c3d-bf19-4194-85be-820e85e95ee3" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Network/locations/eastus/operations/08077c7d-8741-496e-b871-e609d2698c7c?api-version=2015-06-15" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Network/locations/eastus/operations/e5675c3d-bf19-4194-85be-820e85e95ee3?api-version=2015-06-15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -533,23 +533,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1198" ], "x-ms-correlation-request-id": [ - "5db38078-a6b9-4d1b-9526-5f6968821fe9" + "c60325d6-c8d7-4b2a-affb-9b3f1448761d" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T102414Z:5db38078-a6b9-4d1b-9526-5f6968821fe9" + "NORTHCENTRALUS:20160220T143537Z:c60325d6-c8d7-4b2a-affb-9b3f1448761d" ], "Date": [ - "Tue, 16 Feb 2016 10:24:13 GMT" + "Sat, 20 Feb 2016 14:35:36 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Network/locations/eastus/operations/08077c7d-8741-496e-b871-e609d2698c7c?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMDgwNzdjN2QtODc0MS00OTZlLWI4NzEtZTYwOWQyNjk4YzdjP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Network/locations/eastus/operations/e5675c3d-bf19-4194-85be-820e85e95ee3?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZTU2NzVjM2QtYmYxOS00MTk0LTg1YmUtODIwZTg1ZTk1ZWUzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -572,7 +572,7 @@ "no-cache" ], "x-ms-request-id": [ - "34ba831e-4f48-4a42-bd3b-75ee956476c5" + "a97444a6-ed23-43b6-a213-4796af136ce1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -585,28 +585,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14967" + "14990" ], "x-ms-correlation-request-id": [ - "09d4805f-a54e-4848-8657-87df1074e780" + "46939e77-69fb-4791-bfbd-7da7914ffcd5" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T102424Z:09d4805f-a54e-4848-8657-87df1074e780" + "NORTHCENTRALUS:20160220T143607Z:46939e77-69fb-4791-bfbd-7da7914ffcd5" ], "Date": [ - "Tue, 16 Feb 2016 10:24:24 GMT" + "Sat, 20 Feb 2016 14:36:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps6110?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNjExMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1075?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzMTA3NT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d38dca5a-7100-4f99-9d7e-9e2163e203c6" + "2cf8c5bb-aa9b-42b5-9e79-d0a8a1bf90c2" ], "accept-language": [ "en-US" @@ -615,7 +615,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/pubipcrptestps6110' under resource group 'crptestps6110' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/pubipcrptestps1075' under resource group 'crptestps1075' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "171" @@ -633,13 +633,13 @@ "gateway" ], "x-ms-request-id": [ - "4f650a54-6b01-4c79-a325-ad6bccfda95e" + "2f67be11-90a4-4268-b97a-43951c706340" ], "x-ms-correlation-request-id": [ - "4f650a54-6b01-4c79-a325-ad6bccfda95e" + "2f67be11-90a4-4268-b97a-43951c706340" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T102426Z:4f650a54-6b01-4c79-a325-ad6bccfda95e" + "NORTHCENTRALUS:20160220T143608Z:2f67be11-90a4-4268-b97a-43951c706340" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -648,14 +648,14 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 10:24:25 GMT" + "Sat, 20 Feb 2016 14:36:07 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps6110?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNjExMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1075?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzMTA3NT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -663,7 +663,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pubipcrptestps6110\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps6110\",\r\n \"etag\": \"W/\\\"fc46bf59-17e2-4a17-bc8c-9a11550d21c4\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"55cb3f13-e015-4ae9-a954-345bc60902ee\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps6110\",\r\n \"fqdn\": \"pubipcrptestps6110.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps1075\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1075\",\r\n \"etag\": \"W/\\\"c126d275-dd8a-4727-a894-9288a1a5d8a8\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a00c3c74-a0c5-4e92-aba3-4172df5c828d\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps1075\",\r\n \"fqdn\": \"pubipcrptestps1075.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "666" @@ -678,7 +678,7 @@ "no-cache" ], "x-ms-request-id": [ - "fc9318e0-2ac7-4cdb-8f53-e180cdc70b64" + "a47b497b-24bd-4509-bf9c-a6e8894f5f62" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -687,35 +687,35 @@ "no-cache" ], "ETag": [ - "W/\"fc46bf59-17e2-4a17-bc8c-9a11550d21c4\"" + "W/\"c126d275-dd8a-4727-a894-9288a1a5d8a8\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14961" + "14984" ], "x-ms-correlation-request-id": [ - "a9540575-9185-45db-bf58-c00cd49df3a9" + "287242b7-3bb7-49fb-915b-20c41325754e" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T102439Z:a9540575-9185-45db-bf58-c00cd49df3a9" + "NORTHCENTRALUS:20160220T143640Z:287242b7-3bb7-49fb-915b-20c41325754e" ], "Date": [ - "Tue, 16 Feb 2016 10:24:38 GMT" + "Sat, 20 Feb 2016 14:36:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps6110?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNjExMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1075?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzMTA3NT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c201065b-1d29-422f-bb8a-3d20022bb6bd" + "4bc3a5b5-e8c4-45ac-beaf-d5417e9b505b" ], "accept-language": [ "en-US" @@ -724,7 +724,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pubipcrptestps6110\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps6110\",\r\n \"etag\": \"W/\\\"fc46bf59-17e2-4a17-bc8c-9a11550d21c4\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"55cb3f13-e015-4ae9-a954-345bc60902ee\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps6110\",\r\n \"fqdn\": \"pubipcrptestps6110.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps1075\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1075\",\r\n \"etag\": \"W/\\\"c126d275-dd8a-4727-a894-9288a1a5d8a8\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a00c3c74-a0c5-4e92-aba3-4172df5c828d\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps1075\",\r\n \"fqdn\": \"pubipcrptestps1075.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "666" @@ -739,7 +739,7 @@ "no-cache" ], "x-ms-request-id": [ - "d56b7d30-7577-4558-9662-983f0530122a" + "616febe5-8785-48fd-b809-0bd091d90627" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -748,35 +748,35 @@ "no-cache" ], "ETag": [ - "W/\"fc46bf59-17e2-4a17-bc8c-9a11550d21c4\"" + "W/\"c126d275-dd8a-4727-a894-9288a1a5d8a8\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14960" + "14983" ], "x-ms-correlation-request-id": [ - "4ca56a4c-920b-4813-853d-352a54724252" + "bfabe3e0-a844-4dc2-9b66-9bf14d900f05" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T102439Z:4ca56a4c-920b-4813-853d-352a54724252" + "NORTHCENTRALUS:20160220T143641Z:bfabe3e0-a844-4dc2-9b66-9bf14d900f05" ], "Date": [ - "Tue, 16 Feb 2016 10:24:38 GMT" + "Sat, 20 Feb 2016 14:36:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps6110?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNjExMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1075?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzMTA3NT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c04e95ff-5f73-4aec-8087-aa5c595e9173" + "4c77b2ed-d5a8-43cc-ab4d-8558d7f2cad1" ], "accept-language": [ "en-US" @@ -785,7 +785,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pubipcrptestps6110\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps6110\",\r\n \"etag\": \"W/\\\"fc46bf59-17e2-4a17-bc8c-9a11550d21c4\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"55cb3f13-e015-4ae9-a954-345bc60902ee\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps6110\",\r\n \"fqdn\": \"pubipcrptestps6110.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps1075\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1075\",\r\n \"etag\": \"W/\\\"c126d275-dd8a-4727-a894-9288a1a5d8a8\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a00c3c74-a0c5-4e92-aba3-4172df5c828d\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps1075\",\r\n \"fqdn\": \"pubipcrptestps1075.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "666" @@ -800,7 +800,7 @@ "no-cache" ], "x-ms-request-id": [ - "554ede55-7fe2-4bd1-8065-79d0f86c29c7" + "0129f4a0-0538-4dff-b4ed-be7db2358853" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -809,32 +809,32 @@ "no-cache" ], "ETag": [ - "W/\"fc46bf59-17e2-4a17-bc8c-9a11550d21c4\"" + "W/\"c126d275-dd8a-4727-a894-9288a1a5d8a8\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14959" + "14982" ], "x-ms-correlation-request-id": [ - "010f7fbb-b233-4f3b-8192-c2641a3900f1" + "4989f500-fed6-4234-a6f0-7bd8f5b48430" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T102439Z:010f7fbb-b233-4f3b-8192-c2641a3900f1" + "NORTHCENTRALUS:20160220T143641Z:4989f500-fed6-4234-a6f0-7bd8f5b48430" ], "Date": [ - "Tue, 16 Feb 2016 10:24:38 GMT" + "Sat, 20 Feb 2016 14:36:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps6110?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNjExMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1075?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzMTA3NT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps6110\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps1075\"\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -843,7 +843,7 @@ "174" ], "x-ms-client-request-id": [ - "a15902d6-bf30-44c3-aea3-126339de4fae" + "bf0c9bc4-d8b4-4386-94ad-7adbcb9fb576" ], "accept-language": [ "en-US" @@ -852,7 +852,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pubipcrptestps6110\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps6110\",\r\n \"etag\": \"W/\\\"c6155d6a-f1a9-4465-9d5c-262942d4ec09\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"55cb3f13-e015-4ae9-a954-345bc60902ee\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps6110\",\r\n \"fqdn\": \"pubipcrptestps6110.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps1075\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1075\",\r\n \"etag\": \"W/\\\"08347b1a-e1bf-431f-a172-d39e606b8652\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"a00c3c74-a0c5-4e92-aba3-4172df5c828d\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps1075\",\r\n \"fqdn\": \"pubipcrptestps1075.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "665" @@ -870,10 +870,10 @@ "10" ], "x-ms-request-id": [ - "3a243128-8cc9-4925-99a4-2267c0ccc89d" + "28b0ed16-4d83-4644-9a5d-3c0c6fbc87ce" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Network/locations/eastus/operations/3a243128-8cc9-4925-99a4-2267c0ccc89d?api-version=2015-06-15" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Network/locations/eastus/operations/28b0ed16-4d83-4644-9a5d-3c0c6fbc87ce?api-version=2015-06-15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -886,23 +886,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1197" ], "x-ms-correlation-request-id": [ - "b98ba6c2-8930-4299-a8bf-a439ecef21a7" + "5436e736-9484-486a-b621-b33b6ab6a861" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T102428Z:b98ba6c2-8930-4299-a8bf-a439ecef21a7" + "NORTHCENTRALUS:20160220T143610Z:5436e736-9484-486a-b621-b33b6ab6a861" ], "Date": [ - "Tue, 16 Feb 2016 10:24:28 GMT" + "Sat, 20 Feb 2016 14:36:09 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Network/locations/eastus/operations/3a243128-8cc9-4925-99a4-2267c0ccc89d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2EyNDMxMjgtOGNjOS00OTI1LTk5YTQtMjI2N2MwY2NjODlkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Network/locations/eastus/operations/28b0ed16-4d83-4644-9a5d-3c0c6fbc87ce?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMjhiMGVkMTYtNGQ4My00NjQ0LTlhNWQtM2MwYzZmYmM4N2NlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -925,7 +925,7 @@ "no-cache" ], "x-ms-request-id": [ - "26dcc547-5270-4efc-9cb7-33921b414b5b" + "2f0cd8df-d01b-49e0-a2f8-e8f0ffd77a3c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -938,28 +938,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14962" + "14985" ], "x-ms-correlation-request-id": [ - "5df8d046-4516-4722-b381-def825d0bbb6" + "c046888f-39f7-4992-8d1a-a7c9c1e38a53" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T102439Z:5df8d046-4516-4722-b381-def825d0bbb6" + "NORTHCENTRALUS:20160220T143640Z:c046888f-39f7-4992-8d1a-a7c9c1e38a53" ], "Date": [ - "Tue, 16 Feb 2016 10:24:38 GMT" + "Sat, 20 Feb 2016 14:36:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic0crptestps6110?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzBjcnB0ZXN0cHM2MTEwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Network/networkInterfaces/nic0crptestps1075?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzBjcnB0ZXN0cHMxMDc1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "77e109a8-925e-46cb-b854-7f355b37f961" + "3196e928-e904-404a-b0f2-4d66556534ee" ], "accept-language": [ "en-US" @@ -968,7 +968,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/nic0crptestps6110' under resource group 'crptestps6110' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/nic0crptestps1075' under resource group 'crptestps1075' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "170" @@ -986,13 +986,13 @@ "gateway" ], "x-ms-request-id": [ - "e8404ad2-59d1-44db-be79-dfb6127f9927" + "c7906026-73e0-4c06-bcdd-b33509b0c417" ], "x-ms-correlation-request-id": [ - "e8404ad2-59d1-44db-be79-dfb6127f9927" + "c7906026-73e0-4c06-bcdd-b33509b0c417" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T102440Z:e8404ad2-59d1-44db-be79-dfb6127f9927" + "NORTHCENTRALUS:20160220T143641Z:c7906026-73e0-4c06-bcdd-b33509b0c417" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1001,19 +1001,19 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 10:24:40 GMT" + "Sat, 20 Feb 2016 14:36:40 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic0crptestps6110?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzBjcnB0ZXN0cHM2MTEwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Network/networkInterfaces/nic0crptestps1075?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzBjcnB0ZXN0cHMxMDc1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4230ea28-ad8c-4df9-9d3d-44ff32a0aac2" + "6df44c48-e3c8-45ca-a7d9-c19da1e57929" ], "accept-language": [ "en-US" @@ -1022,7 +1022,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"nic0crptestps6110\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic0crptestps6110\",\r\n \"etag\": \"W/\\\"f8e0d9a1-8f09-482b-a9b9-5f3de240275e\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a68782ed-6be1-4f03-b7f5-7bf768c41ba1\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic0crptestps6110/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"f8e0d9a1-8f09-482b-a9b9-5f3de240275e\\\"\",\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/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps6110\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/virtualNetworks/vnetcrptestps6110/subnets/subnetcrptestps6110\"\r\n },\r\n \"primary\": true\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic0crptestps1075\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Network/networkInterfaces/nic0crptestps1075\",\r\n \"etag\": \"W/\\\"178288c5-a1ac-4dae-85c8-782c6c53e2b7\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"33db4102-4088-440e-9de0-f46601ee9e7e\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Network/networkInterfaces/nic0crptestps1075/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"178288c5-a1ac-4dae-85c8-782c6c53e2b7\\\"\",\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/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1075\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1075/subnets/subnetcrptestps1075\"\r\n },\r\n \"primary\": true\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1548" @@ -1037,7 +1037,7 @@ "no-cache" ], "x-ms-request-id": [ - "fe581010-a364-4245-b7f0-fcf0d78dc67b" + "494a57f8-e229-4ca8-a216-bf9c2cfecc90" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1046,35 +1046,35 @@ "no-cache" ], "ETag": [ - "W/\"f8e0d9a1-8f09-482b-a9b9-5f3de240275e\"" + "W/\"178288c5-a1ac-4dae-85c8-782c6c53e2b7\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14957" + "14980" ], "x-ms-correlation-request-id": [ - "d9404787-94b2-412c-8969-7c41e9e517da" + "e6647002-a267-4d4d-abb0-9c91d9595f96" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T102442Z:d9404787-94b2-412c-8969-7c41e9e517da" + "NORTHCENTRALUS:20160220T143643Z:e6647002-a267-4d4d-abb0-9c91d9595f96" ], "Date": [ - "Tue, 16 Feb 2016 10:24:42 GMT" + "Sat, 20 Feb 2016 14:36:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic0crptestps6110?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzBjcnB0ZXN0cHM2MTEwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Network/networkInterfaces/nic0crptestps1075?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzBjcnB0ZXN0cHMxMDc1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c8d79884-2f7b-4cc3-89de-fbda73f9c52f" + "983e10bd-7a1f-4662-a14e-9904ac337376" ], "accept-language": [ "en-US" @@ -1083,7 +1083,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"nic0crptestps6110\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic0crptestps6110\",\r\n \"etag\": \"W/\\\"f8e0d9a1-8f09-482b-a9b9-5f3de240275e\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a68782ed-6be1-4f03-b7f5-7bf768c41ba1\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic0crptestps6110/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"f8e0d9a1-8f09-482b-a9b9-5f3de240275e\\\"\",\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/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps6110\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/virtualNetworks/vnetcrptestps6110/subnets/subnetcrptestps6110\"\r\n },\r\n \"primary\": true\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic0crptestps1075\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Network/networkInterfaces/nic0crptestps1075\",\r\n \"etag\": \"W/\\\"178288c5-a1ac-4dae-85c8-782c6c53e2b7\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"33db4102-4088-440e-9de0-f46601ee9e7e\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Network/networkInterfaces/nic0crptestps1075/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"178288c5-a1ac-4dae-85c8-782c6c53e2b7\\\"\",\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/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1075\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1075/subnets/subnetcrptestps1075\"\r\n },\r\n \"primary\": true\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1548" @@ -1098,7 +1098,7 @@ "no-cache" ], "x-ms-request-id": [ - "95d9b80a-a193-4a1f-92ea-4b190c8812a7" + "9d2bf958-60e0-403c-a424-2b05e0b7c1c5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1107,32 +1107,32 @@ "no-cache" ], "ETag": [ - "W/\"f8e0d9a1-8f09-482b-a9b9-5f3de240275e\"" + "W/\"178288c5-a1ac-4dae-85c8-782c6c53e2b7\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14956" + "14979" ], "x-ms-correlation-request-id": [ - "5b102e06-8353-41cc-9e47-cd753e4f67c3" + "8ffaea50-71b6-4e07-b365-8fc7fe89a0a5" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T102442Z:5b102e06-8353-41cc-9e47-cd753e4f67c3" + "NORTHCENTRALUS:20160220T143643Z:8ffaea50-71b6-4e07-b365-8fc7fe89a0a5" ], "Date": [ - "Tue, 16 Feb 2016 10:24:42 GMT" + "Sat, 20 Feb 2016 14:36:43 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic0crptestps6110?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzBjcnB0ZXN0cHM2MTEwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Network/networkInterfaces/nic0crptestps1075?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzBjcnB0ZXN0cHMxMDc1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"properties\": {\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": [],\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/virtualNetworks/vnetcrptestps6110/subnets/subnetcrptestps6110\",\r\n \"properties\": {\r\n \"ipConfigurations\": []\r\n }\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps6110\"\r\n }\r\n }\r\n }\r\n ],\r\n \"primary\": false,\r\n \"enableIPForwarding\": false\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"properties\": {\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": [],\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1075/subnets/subnetcrptestps1075\",\r\n \"properties\": {\r\n \"ipConfigurations\": []\r\n }\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1075\"\r\n }\r\n }\r\n }\r\n ],\r\n \"primary\": false,\r\n \"enableIPForwarding\": false\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1141,7 +1141,7 @@ "900" ], "x-ms-client-request-id": [ - "e184682e-61c9-4e3c-bd26-2e845d3859fe" + "e18dd401-984a-4259-8a35-44d801c065ea" ], "accept-language": [ "en-US" @@ -1150,7 +1150,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"nic0crptestps6110\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic0crptestps6110\",\r\n \"etag\": \"W/\\\"f8e0d9a1-8f09-482b-a9b9-5f3de240275e\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a68782ed-6be1-4f03-b7f5-7bf768c41ba1\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic0crptestps6110/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"f8e0d9a1-8f09-482b-a9b9-5f3de240275e\\\"\",\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/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps6110\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/virtualNetworks/vnetcrptestps6110/subnets/subnetcrptestps6110\"\r\n },\r\n \"primary\": true\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic0crptestps1075\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Network/networkInterfaces/nic0crptestps1075\",\r\n \"etag\": \"W/\\\"178288c5-a1ac-4dae-85c8-782c6c53e2b7\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"33db4102-4088-440e-9de0-f46601ee9e7e\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Network/networkInterfaces/nic0crptestps1075/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"178288c5-a1ac-4dae-85c8-782c6c53e2b7\\\"\",\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/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1075\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1075/subnets/subnetcrptestps1075\"\r\n },\r\n \"primary\": true\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1548" @@ -1165,10 +1165,10 @@ "no-cache" ], "x-ms-request-id": [ - "8009658f-1f2e-46c7-9aa6-fad9a52eb3c6" + "209d7469-66db-473c-8872-a1fb6ba3ee34" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Network/locations/eastus/operations/8009658f-1f2e-46c7-9aa6-fad9a52eb3c6?api-version=2015-06-15" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Network/locations/eastus/operations/209d7469-66db-473c-8872-a1fb6ba3ee34?api-version=2015-06-15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1181,28 +1181,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1196" ], "x-ms-correlation-request-id": [ - "10b60f91-e28a-4000-ac10-d4ecc36889a0" + "1d59f1fe-221b-495c-8367-77b9a3051363" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T102442Z:10b60f91-e28a-4000-ac10-d4ecc36889a0" + "NORTHCENTRALUS:20160220T143643Z:1d59f1fe-221b-495c-8367-77b9a3051363" ], "Date": [ - "Tue, 16 Feb 2016 10:24:41 GMT" + "Sat, 20 Feb 2016 14:36:42 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic1crptestps6110?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzFjcnB0ZXN0cHM2MTEwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Network/networkInterfaces/nic1crptestps1075?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzFjcnB0ZXN0cHMxMDc1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "de849273-b7bc-4a39-9040-32bf3cada101" + "f82dfe91-3bbf-4fbf-bde5-9cc447a1174b" ], "accept-language": [ "en-US" @@ -1211,7 +1211,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/nic1crptestps6110' under resource group 'crptestps6110' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/nic1crptestps1075' under resource group 'crptestps1075' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "170" @@ -1229,13 +1229,13 @@ "gateway" ], "x-ms-request-id": [ - "45f85135-6fc2-49c8-8646-f0f773f8d8ac" + "b535dfff-b4f5-4330-889b-27c4f5f908a9" ], "x-ms-correlation-request-id": [ - "45f85135-6fc2-49c8-8646-f0f773f8d8ac" + "b535dfff-b4f5-4330-889b-27c4f5f908a9" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T102443Z:45f85135-6fc2-49c8-8646-f0f773f8d8ac" + "NORTHCENTRALUS:20160220T143643Z:b535dfff-b4f5-4330-889b-27c4f5f908a9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1244,19 +1244,19 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 10:24:42 GMT" + "Sat, 20 Feb 2016 14:36:43 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic1crptestps6110?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzFjcnB0ZXN0cHM2MTEwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Network/networkInterfaces/nic1crptestps1075?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzFjcnB0ZXN0cHMxMDc1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "aea6fe1a-4d2b-4f81-8afa-e26dcde767bb" + "d548b71b-5002-4fea-ae38-a364821f64d7" ], "accept-language": [ "en-US" @@ -1265,7 +1265,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"nic1crptestps6110\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic1crptestps6110\",\r\n \"etag\": \"W/\\\"676102f3-7a7a-45e4-a422-ea309a490ffb\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"16b260ec-29aa-4ea9-a01c-bac3ea1a9b52\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic1crptestps6110/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"676102f3-7a7a-45e4-a422-ea309a490ffb\\\"\",\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/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/virtualNetworks/vnetcrptestps6110/subnets/subnetcrptestps6110\"\r\n },\r\n \"primary\": true\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic1crptestps1075\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Network/networkInterfaces/nic1crptestps1075\",\r\n \"etag\": \"W/\\\"a42e97d7-d250-4c08-a073-23760f9e06ec\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f9fd4013-c6b3-42f7-9fce-7949dfb15701\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Network/networkInterfaces/nic1crptestps1075/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"a42e97d7-d250-4c08-a073-23760f9e06ec\\\"\",\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/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1075/subnets/subnetcrptestps1075\"\r\n },\r\n \"primary\": true\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1335" @@ -1280,7 +1280,7 @@ "no-cache" ], "x-ms-request-id": [ - "485a7ec0-b06f-4882-8b9e-aee4e27840b4" + "a2b60ec2-e73a-4132-8ce9-f126a9ee3606" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1289,35 +1289,35 @@ "no-cache" ], "ETag": [ - "W/\"676102f3-7a7a-45e4-a422-ea309a490ffb\"" + "W/\"a42e97d7-d250-4c08-a073-23760f9e06ec\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14954" + "14977" ], "x-ms-correlation-request-id": [ - "ee48da99-3ebb-41fa-a391-5e438c36467d" + "791d7ed2-9d76-4beb-b443-bbabcd457840" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T102445Z:ee48da99-3ebb-41fa-a391-5e438c36467d" + "NORTHCENTRALUS:20160220T143645Z:791d7ed2-9d76-4beb-b443-bbabcd457840" ], "Date": [ - "Tue, 16 Feb 2016 10:24:45 GMT" + "Sat, 20 Feb 2016 14:36:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic1crptestps6110?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzFjcnB0ZXN0cHM2MTEwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Network/networkInterfaces/nic1crptestps1075?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzFjcnB0ZXN0cHMxMDc1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b731b320-32e9-48e7-8272-5c5d54001129" + "37157a45-1938-4c41-8a1d-928254e4c403" ], "accept-language": [ "en-US" @@ -1326,7 +1326,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"nic1crptestps6110\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic1crptestps6110\",\r\n \"etag\": \"W/\\\"676102f3-7a7a-45e4-a422-ea309a490ffb\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"16b260ec-29aa-4ea9-a01c-bac3ea1a9b52\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic1crptestps6110/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"676102f3-7a7a-45e4-a422-ea309a490ffb\\\"\",\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/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/virtualNetworks/vnetcrptestps6110/subnets/subnetcrptestps6110\"\r\n },\r\n \"primary\": true\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic1crptestps1075\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Network/networkInterfaces/nic1crptestps1075\",\r\n \"etag\": \"W/\\\"a42e97d7-d250-4c08-a073-23760f9e06ec\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f9fd4013-c6b3-42f7-9fce-7949dfb15701\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Network/networkInterfaces/nic1crptestps1075/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"a42e97d7-d250-4c08-a073-23760f9e06ec\\\"\",\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/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1075/subnets/subnetcrptestps1075\"\r\n },\r\n \"primary\": true\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1335" @@ -1341,7 +1341,7 @@ "no-cache" ], "x-ms-request-id": [ - "03c8977a-9369-4401-8ce4-d8a77ff65660" + "5cd8cd7c-0cab-441f-ae9b-fcafbefe8c23" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1350,32 +1350,32 @@ "no-cache" ], "ETag": [ - "W/\"676102f3-7a7a-45e4-a422-ea309a490ffb\"" + "W/\"a42e97d7-d250-4c08-a073-23760f9e06ec\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14953" + "14976" ], "x-ms-correlation-request-id": [ - "d8e285e0-d3f5-45d5-a80c-5858c1dc8f34" + "b102a65e-513a-48ba-bb12-44fe60cad813" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T102445Z:d8e285e0-d3f5-45d5-a80c-5858c1dc8f34" + "NORTHCENTRALUS:20160220T143645Z:b102a65e-513a-48ba-bb12-44fe60cad813" ], "Date": [ - "Tue, 16 Feb 2016 10:24:45 GMT" + "Sat, 20 Feb 2016 14:36:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic1crptestps6110?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzFjcnB0ZXN0cHM2MTEwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Network/networkInterfaces/nic1crptestps1075?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzFjcnB0ZXN0cHMxMDc1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"properties\": {\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": [],\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/virtualNetworks/vnetcrptestps6110/subnets/subnetcrptestps6110\",\r\n \"properties\": {\r\n \"ipConfigurations\": []\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"primary\": false,\r\n \"enableIPForwarding\": false\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"properties\": {\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": [],\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1075/subnets/subnetcrptestps1075\",\r\n \"properties\": {\r\n \"ipConfigurations\": []\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"primary\": false,\r\n \"enableIPForwarding\": false\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1384,7 +1384,7 @@ "687" ], "x-ms-client-request-id": [ - "282840a7-348c-4762-af43-a95fa03d2b5f" + "2a951188-a416-4fba-848f-0ed5c2dea043" ], "accept-language": [ "en-US" @@ -1393,7 +1393,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"nic1crptestps6110\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic1crptestps6110\",\r\n \"etag\": \"W/\\\"676102f3-7a7a-45e4-a422-ea309a490ffb\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"16b260ec-29aa-4ea9-a01c-bac3ea1a9b52\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic1crptestps6110/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"676102f3-7a7a-45e4-a422-ea309a490ffb\\\"\",\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/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/virtualNetworks/vnetcrptestps6110/subnets/subnetcrptestps6110\"\r\n },\r\n \"primary\": true\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic1crptestps1075\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Network/networkInterfaces/nic1crptestps1075\",\r\n \"etag\": \"W/\\\"a42e97d7-d250-4c08-a073-23760f9e06ec\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f9fd4013-c6b3-42f7-9fce-7949dfb15701\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Network/networkInterfaces/nic1crptestps1075/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"a42e97d7-d250-4c08-a073-23760f9e06ec\\\"\",\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/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1075/subnets/subnetcrptestps1075\"\r\n },\r\n \"primary\": true\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1335" @@ -1408,10 +1408,10 @@ "no-cache" ], "x-ms-request-id": [ - "8a7e2a59-a34c-4df9-84f1-b686216641e1" + "7f27b99f-3a90-425f-936c-4c254a45c00e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Network/locations/eastus/operations/8a7e2a59-a34c-4df9-84f1-b686216641e1?api-version=2015-06-15" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Network/locations/eastus/operations/7f27b99f-3a90-425f-936c-4c254a45c00e?api-version=2015-06-15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1424,23 +1424,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1195" ], "x-ms-correlation-request-id": [ - "5e3b70de-14dc-48d2-ac0b-5045ea872f4e" + "dedb9c05-2680-4d59-ad37-54264f256b0f" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T102445Z:5e3b70de-14dc-48d2-ac0b-5045ea872f4e" + "NORTHCENTRALUS:20160220T143645Z:dedb9c05-2680-4d59-ad37-54264f256b0f" ], "Date": [ - "Tue, 16 Feb 2016 10:24:44 GMT" + "Sat, 20 Feb 2016 14:36:44 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Storage/storageAccounts/stocrptestps6110?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM2MTEwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Storage/storageAccounts/stocrptestps1075?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHMxMDc1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\"\r\n }\r\n}", "RequestHeaders": { @@ -1451,7 +1451,7 @@ "88" ], "x-ms-client-request-id": [ - "d9450698-22be-4435-bf1f-4fc9a9171974" + "76ba91dc-a0c0-4e0e-9fbd-03ffc1c2a801" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" @@ -1472,44 +1472,44 @@ "25" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1199" ], "x-ms-request-id": [ - "c2e92005-0e50-4216-9cfa-fe85d03e8e4e" + "a7caccca-e9e6-4953-b9b5-304142f5efce" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Storage/operations/97ac7781-2ee1-4bea-8f36-056686891b38?monitor=true&api-version=2015-06-15" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Storage/operations/49525a5c-8f77-42f6-94fa-5fc007db65cf?monitor=true&api-version=2015-06-15" ], "Server": [ "Microsoft-Azure-Storage-Resource-Provider/1.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "c2e92005-0e50-4216-9cfa-fe85d03e8e4e" + "a7caccca-e9e6-4953-b9b5-304142f5efce" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T102448Z:c2e92005-0e50-4216-9cfa-fe85d03e8e4e" + "NORTHCENTRALUS:20160220T143648Z:a7caccca-e9e6-4953-b9b5-304142f5efce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Feb 2016 10:24:48 GMT" + "Sat, 20 Feb 2016 14:36:47 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Storage/operations/97ac7781-2ee1-4bea-8f36-056686891b38?monitor=true&api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzk3YWM3NzgxLTJlZTEtNGJlYS04ZjM2LTA1NjY4Njg5MWIzOD9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Storage/operations/49525a5c-8f77-42f6-94fa-5fc007db65cf?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzQ5NTI1YTVjLThmNzctNDJmNi05NGZhLTVmYzAwN2RiNjVjZj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "413c19fd-68c7-4458-bba2-86bfe6d793dc" + "44d2642f-ef37-4eac-be7f-46cd527d26ef" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" @@ -1530,44 +1530,44 @@ "25" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14950" + "14992" ], "x-ms-request-id": [ - "b6ef1b5f-b4ff-48c5-9ecc-81b541972837" + "368a6d35-1c7e-4c56-9ffc-b7fcd04ff43b" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Storage/operations/97ac7781-2ee1-4bea-8f36-056686891b38?monitor=true&api-version=2015-06-15" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Storage/operations/49525a5c-8f77-42f6-94fa-5fc007db65cf?monitor=true&api-version=2015-06-15" ], "Server": [ "Microsoft-Azure-Storage-Resource-Provider/1.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "b6ef1b5f-b4ff-48c5-9ecc-81b541972837" + "368a6d35-1c7e-4c56-9ffc-b7fcd04ff43b" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T102449Z:b6ef1b5f-b4ff-48c5-9ecc-81b541972837" + "NORTHCENTRALUS:20160220T143648Z:368a6d35-1c7e-4c56-9ffc-b7fcd04ff43b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Feb 2016 10:24:49 GMT" + "Sat, 20 Feb 2016 14:36:48 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Storage/operations/97ac7781-2ee1-4bea-8f36-056686891b38?monitor=true&api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzk3YWM3NzgxLTJlZTEtNGJlYS04ZjM2LTA1NjY4Njg5MWIzOD9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Storage/operations/49525a5c-8f77-42f6-94fa-5fc007db65cf?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzQ5NTI1YTVjLThmNzctNDJmNi05NGZhLTVmYzAwN2RiNjVjZj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "de7f7840-9a3a-4197-9020-36f8dba640b2" + "f4433def-fa17-403f-89b8-7ac524963b73" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" @@ -1588,7 +1588,7 @@ "no-cache" ], "x-ms-request-id": [ - "b42b010a-4e0a-48de-b414-7fd88dc067b1" + "29e79205-a5ee-46d6-81bf-e0dadd1e7f51" ], "Cache-Control": [ "no-cache" @@ -1598,37 +1598,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14951" + "14991" ], "x-ms-correlation-request-id": [ - "b42b010a-4e0a-48de-b414-7fd88dc067b1" + "29e79205-a5ee-46d6-81bf-e0dadd1e7f51" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T102514Z:b42b010a-4e0a-48de-b414-7fd88dc067b1" + "NORTHCENTRALUS:20160220T143713Z:29e79205-a5ee-46d6-81bf-e0dadd1e7f51" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Feb 2016 10:25:14 GMT" + "Sat, 20 Feb 2016 14:37:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Storage/storageAccounts/stocrptestps6110?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM2MTEwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Storage/storageAccounts/stocrptestps1075?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHMxMDc1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "32a43739-94c9-4954-abed-a7a3d17701e9" + "3692071d-4b4e-4cc8-97f1-4e6ac26b3d99" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Storage/storageAccounts/stocrptestps6110\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps6110\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-16T10:24:47.5385966Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps6110.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Storage/storageAccounts/stocrptestps1075\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps1075\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-20T14:36:47.3817483Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps1075.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "506" @@ -1643,7 +1643,7 @@ "no-cache" ], "x-ms-request-id": [ - "dac8b474-f756-41f5-80ad-ddef0e75eac3" + "91e4fa53-d5bd-40ec-8ca5-0bd8a9cf6af1" ], "Cache-Control": [ "no-cache" @@ -1653,37 +1653,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14950" + "14990" ], "x-ms-correlation-request-id": [ - "dac8b474-f756-41f5-80ad-ddef0e75eac3" + "91e4fa53-d5bd-40ec-8ca5-0bd8a9cf6af1" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T102514Z:dac8b474-f756-41f5-80ad-ddef0e75eac3" + "NORTHCENTRALUS:20160220T143714Z:91e4fa53-d5bd-40ec-8ca5-0bd8a9cf6af1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Feb 2016 10:25:14 GMT" + "Sat, 20 Feb 2016 14:37:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Storage/storageAccounts/stocrptestps6110?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM2MTEwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Storage/storageAccounts/stocrptestps1075?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHMxMDc1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "36303e7d-c4e6-4ee6-8d0b-fbd2aa24dd36" + "b60f659d-04fc-4da5-bdd5-576c79132af9" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Storage/storageAccounts/stocrptestps6110\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps6110\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-16T10:24:47.5385966Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps6110.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Storage/storageAccounts/stocrptestps1075\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps1075\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-20T14:36:47.3817483Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps1075.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "506" @@ -1698,7 +1698,7 @@ "no-cache" ], "x-ms-request-id": [ - "96376047-85a7-4759-9c8b-7bf4d77a78f7" + "b061e90a-73ef-46cc-9ad8-49c9ce0673dc" ], "Cache-Control": [ "no-cache" @@ -1708,37 +1708,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14949" + "14989" ], "x-ms-correlation-request-id": [ - "96376047-85a7-4759-9c8b-7bf4d77a78f7" + "b061e90a-73ef-46cc-9ad8-49c9ce0673dc" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T102514Z:96376047-85a7-4759-9c8b-7bf4d77a78f7" + "NORTHCENTRALUS:20160220T143714Z:b061e90a-73ef-46cc-9ad8-49c9ce0673dc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Feb 2016 10:25:14 GMT" + "Sat, 20 Feb 2016 14:37:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Storage/storageAccounts/stocrptestps6110/listKeys?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM2MTEwL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Storage/storageAccounts/stocrptestps1075/listKeys?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHMxMDc1L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "048d8cab-d1f3-4948-975f-120b57851ec9" + "2ad9e44b-bde3-4e25-ba46-e37f74dde3be" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"key1\": \"/85dNlDjWZh4LxF4RNnqBxZMyWSyEGR3YH6/JtRTY6zmLmQabVrJtfgaNhDLLMYdzG+mq83iEnp0DDhMZMNAuQ==\",\r\n \"key2\": \"4cSbTDSbEeRahVTn75NZGUbbXuh86AnKatv1Lz3YYvGBNDi55SMGk3wkgKNjTGt3U+caFGFOa1SYYiLGpOJXpg==\"\r\n}", + "ResponseBody": "{\r\n \"key1\": \"uQRwBDj2sTJ2U2NhcKtNPirdaW69FjRFI/50Tr+f4ojXUKhEhA/Zp9nVBwj6U2DJAkJtcvpgI6zqgKJHeDmraA==\",\r\n \"key2\": \"XZ6BKuJUD4ZXUYXGqBc8Iu0+2SEQJDSJBRa6FSLHtkQID64YCgRsEzELvwW8R6PAMm6iDQ0G0O2rlXzwMgczqQ==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "198" @@ -1753,7 +1753,7 @@ "no-cache" ], "x-ms-request-id": [ - "d8dbd0c0-1973-4dc1-88de-1688d272215d" + "edfefa40-2db0-4c60-9a2f-a46563bd6fee" ], "Cache-Control": [ "no-cache" @@ -1763,37 +1763,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1198" ], "x-ms-correlation-request-id": [ - "d8dbd0c0-1973-4dc1-88de-1688d272215d" + "edfefa40-2db0-4c60-9a2f-a46563bd6fee" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T102515Z:d8dbd0c0-1973-4dc1-88de-1688d272215d" + "NORTHCENTRALUS:20160220T143714Z:edfefa40-2db0-4c60-9a2f-a46563bd6fee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Feb 2016 10:25:15 GMT" + "Sat, 20 Feb 2016 14:37:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Storage/storageAccounts/stocrptestps6110/listKeys?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM2MTEwL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Storage/storageAccounts/stocrptestps1075/listKeys?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHMxMDc1L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "beacbecd-0266-4bab-9e6d-f4e6d5cebbae" + "48a18f2d-4711-48d8-bcdf-ea5fd3b4bd94" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"key1\": \"/85dNlDjWZh4LxF4RNnqBxZMyWSyEGR3YH6/JtRTY6zmLmQabVrJtfgaNhDLLMYdzG+mq83iEnp0DDhMZMNAuQ==\",\r\n \"key2\": \"4cSbTDSbEeRahVTn75NZGUbbXuh86AnKatv1Lz3YYvGBNDi55SMGk3wkgKNjTGt3U+caFGFOa1SYYiLGpOJXpg==\"\r\n}", + "ResponseBody": "{\r\n \"key1\": \"uQRwBDj2sTJ2U2NhcKtNPirdaW69FjRFI/50Tr+f4ojXUKhEhA/Zp9nVBwj6U2DJAkJtcvpgI6zqgKJHeDmraA==\",\r\n \"key2\": \"XZ6BKuJUD4ZXUYXGqBc8Iu0+2SEQJDSJBRa6FSLHtkQID64YCgRsEzELvwW8R6PAMm6iDQ0G0O2rlXzwMgczqQ==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "198" @@ -1808,7 +1808,7 @@ "no-cache" ], "x-ms-request-id": [ - "3b37986b-4f08-4eb4-b4f8-f7f0f44f108f" + "ea05984d-c4f7-482d-9411-a22ea7c7a545" ], "Cache-Control": [ "no-cache" @@ -1818,37 +1818,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1194" ], "x-ms-correlation-request-id": [ - "3b37986b-4f08-4eb4-b4f8-f7f0f44f108f" + "ea05984d-c4f7-482d-9411-a22ea7c7a545" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T103301Z:3b37986b-4f08-4eb4-b4f8-f7f0f44f108f" + "NORTHCENTRALUS:20160220T144611Z:ea05984d-c4f7-482d-9411-a22ea7c7a545" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Feb 2016 10:33:01 GMT" + "Sat, 20 Feb 2016 14:46:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Storage/storageAccounts/stocrptestps6110/listKeys?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM2MTEwL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Storage/storageAccounts/stocrptestps1075/listKeys?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHMxMDc1L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4a2274bf-b457-499b-96ee-ca043c791803" + "6c35b4dc-a7a6-4ee3-8f9c-3839953a7e73" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"key1\": \"/85dNlDjWZh4LxF4RNnqBxZMyWSyEGR3YH6/JtRTY6zmLmQabVrJtfgaNhDLLMYdzG+mq83iEnp0DDhMZMNAuQ==\",\r\n \"key2\": \"4cSbTDSbEeRahVTn75NZGUbbXuh86AnKatv1Lz3YYvGBNDi55SMGk3wkgKNjTGt3U+caFGFOa1SYYiLGpOJXpg==\"\r\n}", + "ResponseBody": "{\r\n \"key1\": \"uQRwBDj2sTJ2U2NhcKtNPirdaW69FjRFI/50Tr+f4ojXUKhEhA/Zp9nVBwj6U2DJAkJtcvpgI6zqgKJHeDmraA==\",\r\n \"key2\": \"XZ6BKuJUD4ZXUYXGqBc8Iu0+2SEQJDSJBRa6FSLHtkQID64YCgRsEzELvwW8R6PAMm6iDQ0G0O2rlXzwMgczqQ==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "198" @@ -1863,7 +1863,7 @@ "no-cache" ], "x-ms-request-id": [ - "7094dff0-46b3-4d51-b24f-0e915b9bd433" + "af847459-209e-4418-ba15-e70f944581b5" ], "Cache-Control": [ "no-cache" @@ -1873,37 +1873,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1193" ], "x-ms-correlation-request-id": [ - "7094dff0-46b3-4d51-b24f-0e915b9bd433" + "af847459-209e-4418-ba15-e70f944581b5" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T103301Z:7094dff0-46b3-4d51-b24f-0e915b9bd433" + "NORTHCENTRALUS:20160220T144611Z:af847459-209e-4418-ba15-e70f944581b5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Feb 2016 10:33:01 GMT" + "Sat, 20 Feb 2016 14:46:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Storage/storageAccounts/stocrptestps6110/listKeys?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM2MTEwL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Storage/storageAccounts/stocrptestps1075/listKeys?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHMxMDc1L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ff4026b5-38ff-46fc-88c8-1da4071fb46b" + "857b002f-0530-40ff-b2f8-86dca640644e" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"key1\": \"/85dNlDjWZh4LxF4RNnqBxZMyWSyEGR3YH6/JtRTY6zmLmQabVrJtfgaNhDLLMYdzG+mq83iEnp0DDhMZMNAuQ==\",\r\n \"key2\": \"4cSbTDSbEeRahVTn75NZGUbbXuh86AnKatv1Lz3YYvGBNDi55SMGk3wkgKNjTGt3U+caFGFOa1SYYiLGpOJXpg==\"\r\n}", + "ResponseBody": "{\r\n \"key1\": \"uQRwBDj2sTJ2U2NhcKtNPirdaW69FjRFI/50Tr+f4ojXUKhEhA/Zp9nVBwj6U2DJAkJtcvpgI6zqgKJHeDmraA==\",\r\n \"key2\": \"XZ6BKuJUD4ZXUYXGqBc8Iu0+2SEQJDSJBRa6FSLHtkQID64YCgRsEzELvwW8R6PAMm6iDQ0G0O2rlXzwMgczqQ==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "198" @@ -1918,7 +1918,7 @@ "no-cache" ], "x-ms-request-id": [ - "5fa78d5d-6125-4370-89ba-3b5840b7d00d" + "9fab2d5a-2c65-4da1-aa5f-a6dc196d1a85" ], "Cache-Control": [ "no-cache" @@ -1928,28 +1928,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1197" ], "x-ms-correlation-request-id": [ - "5fa78d5d-6125-4370-89ba-3b5840b7d00d" + "9fab2d5a-2c65-4da1-aa5f-a6dc196d1a85" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T103645Z:5fa78d5d-6125-4370-89ba-3b5840b7d00d" + "NORTHCENTRALUS:20160220T145001Z:9fab2d5a-2c65-4da1-aa5f-a6dc196d1a85" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Feb 2016 10:36:45 GMT" + "Sat, 20 Feb 2016 14:50:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczYxMTA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Compute/virtualMachines/vmcrptestps1075?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczEwNzU/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\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\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6110.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 \"name\": \"testDataDisk1\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6110.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"Empty\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6110.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"Empty\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123crptestps6110\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true\r\n }\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic0crptestps6110\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic1crptestps6110\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\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\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1075.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 \"name\": \"testDataDisk1\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1075.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"Empty\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1075.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"Empty\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123crptestps1075\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true\r\n }\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Network/networkInterfaces/nic0crptestps1075\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Network/networkInterfaces/nic1crptestps1075\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1958,7 +1958,7 @@ "2091" ], "x-ms-client-request-id": [ - "9d045329-009b-4fe1-b6f6-fe5125a0176e" + "87ef7721-13ae-4489-9fbd-c9b8a980c869" ], "accept-language": [ "en-US" @@ -1967,7 +1967,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"75fe4dc3-f01d-44b5-ba3e-1fc40cd3c7b6\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\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\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6110.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6110.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6110.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic0crptestps6110\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic1crptestps6110\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110\",\r\n \"name\": \"vmcrptestps6110\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"595913b8-fe36-48f2-8db8-0a7f55b40f66\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\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\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1075.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1075.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1075.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\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 \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Network/networkInterfaces/nic0crptestps1075\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Network/networkInterfaces/nic1crptestps1075\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Compute/virtualMachines/vmcrptestps1075\",\r\n \"name\": \"vmcrptestps1075\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "2288" @@ -1982,16 +1982,16 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/069005c3-56e7-4b1c-9c81-dfc9056d0136?api-version=2015-06-15" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/a754ce02-8cea-4069-8067-367da43bd30f?api-version=2015-06-15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "069005c3-56e7-4b1c-9c81-dfc9056d0136" + "a754ce02-8cea-4069-8067-367da43bd30f" ], "Cache-Control": [ "no-cache" @@ -2004,20 +2004,20 @@ "1195" ], "x-ms-correlation-request-id": [ - "7943a73b-fad0-4fdc-9149-461ad7deb316" + "39ca353f-f781-4116-92df-10d9edc78362" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T102518Z:7943a73b-fad0-4fdc-9149-461ad7deb316" + "NORTHCENTRALUS:20160220T143718Z:39ca353f-f781-4116-92df-10d9edc78362" ], "Date": [ - "Tue, 16 Feb 2016 10:25:17 GMT" + "Sat, 20 Feb 2016 14:37:18 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/069005c3-56e7-4b1c-9c81-dfc9056d0136?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMDY5MDA1YzMtNTZlNy00YjFjLTljODEtZGZjOTA1NmQwMTM2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/a754ce02-8cea-4069-8067-367da43bd30f?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTc1NGNlMDItOGNlYS00MDY5LTgwNjctMzY3ZGE0M2JkMzBmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2025,7 +2025,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"069005c3-56e7-4b1c-9c81-dfc9056d0136\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T11:25:17.5737952+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"a754ce02-8cea-4069-8067-367da43bd30f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-20T15:37:16.9596899+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2043,10 +2043,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "4348625b-b65b-4d29-9805-1192e3dbe229" + "20cfef68-ede5-45f0-813c-8951ac341e0f" ], "Cache-Control": [ "no-cache" @@ -2056,23 +2056,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14959" + "14956" ], "x-ms-correlation-request-id": [ - "0ba80ebc-1133-4bd6-8eaa-2b4c037bd44b" + "049d3b88-2ab1-4f3b-855f-6875aad8f418" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T102549Z:0ba80ebc-1133-4bd6-8eaa-2b4c037bd44b" + "NORTHCENTRALUS:20160220T143748Z:049d3b88-2ab1-4f3b-855f-6875aad8f418" ], "Date": [ - "Tue, 16 Feb 2016 10:25:48 GMT" + "Sat, 20 Feb 2016 14:37:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/069005c3-56e7-4b1c-9c81-dfc9056d0136?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMDY5MDA1YzMtNTZlNy00YjFjLTljODEtZGZjOTA1NmQwMTM2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/a754ce02-8cea-4069-8067-367da43bd30f?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTc1NGNlMDItOGNlYS00MDY5LTgwNjctMzY3ZGE0M2JkMzBmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2080,7 +2080,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"069005c3-56e7-4b1c-9c81-dfc9056d0136\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T11:25:17.5737952+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"a754ce02-8cea-4069-8067-367da43bd30f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-20T15:37:16.9596899+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2098,10 +2098,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "61767a52-a20a-4a18-883a-bc1660a47427" + "3e2d5394-96f7-42ca-8b67-411193b65bfa" ], "Cache-Control": [ "no-cache" @@ -2111,23 +2111,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14958" + "14955" ], "x-ms-correlation-request-id": [ - "840ab1aa-84ce-41fc-a042-086ee3447344" + "b8a00dfa-0314-4302-a4db-89668e5270ce" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T102619Z:840ab1aa-84ce-41fc-a042-086ee3447344" + "NORTHCENTRALUS:20160220T143818Z:b8a00dfa-0314-4302-a4db-89668e5270ce" ], "Date": [ - "Tue, 16 Feb 2016 10:26:18 GMT" + "Sat, 20 Feb 2016 14:38:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/069005c3-56e7-4b1c-9c81-dfc9056d0136?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMDY5MDA1YzMtNTZlNy00YjFjLTljODEtZGZjOTA1NmQwMTM2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/a754ce02-8cea-4069-8067-367da43bd30f?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTc1NGNlMDItOGNlYS00MDY5LTgwNjctMzY3ZGE0M2JkMzBmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2135,7 +2135,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"069005c3-56e7-4b1c-9c81-dfc9056d0136\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T11:25:17.5737952+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"a754ce02-8cea-4069-8067-367da43bd30f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-20T15:37:16.9596899+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2153,10 +2153,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "64dd1b0f-cd1f-48f2-a84f-0e21a0150597" + "eb47f6a5-33d6-4614-97bb-980ff594add2" ], "Cache-Control": [ "no-cache" @@ -2166,23 +2166,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14957" + "14954" ], "x-ms-correlation-request-id": [ - "92b5d397-4e26-448a-bce6-3faf1d7a9900" + "0f0a8528-0a3f-4469-8a81-229ea41a9467" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T102649Z:92b5d397-4e26-448a-bce6-3faf1d7a9900" + "NORTHCENTRALUS:20160220T143849Z:0f0a8528-0a3f-4469-8a81-229ea41a9467" ], "Date": [ - "Tue, 16 Feb 2016 10:26:49 GMT" + "Sat, 20 Feb 2016 14:38:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/069005c3-56e7-4b1c-9c81-dfc9056d0136?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMDY5MDA1YzMtNTZlNy00YjFjLTljODEtZGZjOTA1NmQwMTM2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/a754ce02-8cea-4069-8067-367da43bd30f?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTc1NGNlMDItOGNlYS00MDY5LTgwNjctMzY3ZGE0M2JkMzBmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2190,7 +2190,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"069005c3-56e7-4b1c-9c81-dfc9056d0136\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T11:25:17.5737952+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"a754ce02-8cea-4069-8067-367da43bd30f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-20T15:37:16.9596899+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2208,10 +2208,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "5f5bd247-92f1-4da9-a929-543957ad7988" + "bfbb4b75-245f-4263-956b-7a67671bb69a" ], "Cache-Control": [ "no-cache" @@ -2221,23 +2221,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14956" + "14953" ], "x-ms-correlation-request-id": [ - "115bafa5-b896-46be-8e12-4f2ed9b30f2c" + "136501d7-35b8-4b13-8f07-2b7a4a23958e" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T102719Z:115bafa5-b896-46be-8e12-4f2ed9b30f2c" + "NORTHCENTRALUS:20160220T143919Z:136501d7-35b8-4b13-8f07-2b7a4a23958e" ], "Date": [ - "Tue, 16 Feb 2016 10:27:19 GMT" + "Sat, 20 Feb 2016 14:39:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/069005c3-56e7-4b1c-9c81-dfc9056d0136?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMDY5MDA1YzMtNTZlNy00YjFjLTljODEtZGZjOTA1NmQwMTM2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/a754ce02-8cea-4069-8067-367da43bd30f?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTc1NGNlMDItOGNlYS00MDY5LTgwNjctMzY3ZGE0M2JkMzBmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2245,7 +2245,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"069005c3-56e7-4b1c-9c81-dfc9056d0136\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T11:25:17.5737952+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"a754ce02-8cea-4069-8067-367da43bd30f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-20T15:37:16.9596899+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2263,10 +2263,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "64985717-bfff-47a9-a050-42f115053a7b" + "3c9b9f4b-c082-439e-98ab-6d496b551396" ], "Cache-Control": [ "no-cache" @@ -2276,23 +2276,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14955" + "14952" ], "x-ms-correlation-request-id": [ - "fad065e1-4f04-48ce-834f-48ed46f6c314" + "c31275ba-2597-4b99-a82b-1c973af8ce34" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T102749Z:fad065e1-4f04-48ce-834f-48ed46f6c314" + "NORTHCENTRALUS:20160220T143949Z:c31275ba-2597-4b99-a82b-1c973af8ce34" ], "Date": [ - "Tue, 16 Feb 2016 10:27:48 GMT" + "Sat, 20 Feb 2016 14:39:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/069005c3-56e7-4b1c-9c81-dfc9056d0136?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMDY5MDA1YzMtNTZlNy00YjFjLTljODEtZGZjOTA1NmQwMTM2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/a754ce02-8cea-4069-8067-367da43bd30f?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTc1NGNlMDItOGNlYS00MDY5LTgwNjctMzY3ZGE0M2JkMzBmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2300,7 +2300,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"069005c3-56e7-4b1c-9c81-dfc9056d0136\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T11:25:17.5737952+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"a754ce02-8cea-4069-8067-367da43bd30f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-20T15:37:16.9596899+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2318,10 +2318,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "0c5e7595-9920-4c5c-b38d-90e98848f6c2" + "9cc61ac9-3b46-426d-beef-d14b781e8bef" ], "Cache-Control": [ "no-cache" @@ -2331,23 +2331,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14954" + "14952" ], "x-ms-correlation-request-id": [ - "9a6033cf-9d4b-4a59-81fc-cb4d1bf4f97c" + "d52a28e7-40e2-479a-8a13-0678596df41c" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T102819Z:9a6033cf-9d4b-4a59-81fc-cb4d1bf4f97c" + "NORTHCENTRALUS:20160220T144019Z:d52a28e7-40e2-479a-8a13-0678596df41c" ], "Date": [ - "Tue, 16 Feb 2016 10:28:19 GMT" + "Sat, 20 Feb 2016 14:40:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/069005c3-56e7-4b1c-9c81-dfc9056d0136?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMDY5MDA1YzMtNTZlNy00YjFjLTljODEtZGZjOTA1NmQwMTM2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/a754ce02-8cea-4069-8067-367da43bd30f?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTc1NGNlMDItOGNlYS00MDY5LTgwNjctMzY3ZGE0M2JkMzBmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2355,7 +2355,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"069005c3-56e7-4b1c-9c81-dfc9056d0136\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T11:25:17.5737952+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"a754ce02-8cea-4069-8067-367da43bd30f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-20T15:37:16.9596899+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2373,10 +2373,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "24114384-b738-461d-a334-e6e38d749265" + "0eaf7464-1ef9-41ba-9f28-68e9142024f3" ], "Cache-Control": [ "no-cache" @@ -2386,23 +2386,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14953" + "14951" ], "x-ms-correlation-request-id": [ - "a2e4762a-f489-4a7a-9c1b-2a5b996028a4" + "3725814a-4335-4dfd-89fa-4982e8227936" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T102850Z:a2e4762a-f489-4a7a-9c1b-2a5b996028a4" + "NORTHCENTRALUS:20160220T144049Z:3725814a-4335-4dfd-89fa-4982e8227936" ], "Date": [ - "Tue, 16 Feb 2016 10:28:50 GMT" + "Sat, 20 Feb 2016 14:40:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/069005c3-56e7-4b1c-9c81-dfc9056d0136?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMDY5MDA1YzMtNTZlNy00YjFjLTljODEtZGZjOTA1NmQwMTM2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/a754ce02-8cea-4069-8067-367da43bd30f?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTc1NGNlMDItOGNlYS00MDY5LTgwNjctMzY3ZGE0M2JkMzBmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2410,7 +2410,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"069005c3-56e7-4b1c-9c81-dfc9056d0136\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T11:25:17.5737952+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"a754ce02-8cea-4069-8067-367da43bd30f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-20T15:37:16.9596899+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2428,10 +2428,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "6571d92c-c9e1-4848-8cf0-f083d74cb8bd" + "638b1282-01d8-47bd-a272-7f4d7a57568c" ], "Cache-Control": [ "no-cache" @@ -2441,23 +2441,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14951" + "14950" ], "x-ms-correlation-request-id": [ - "79e78ffb-3c4e-4150-882b-5f7a5b66865d" + "2e320eae-e296-4b43-9442-6b22dec9d61f" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T102920Z:79e78ffb-3c4e-4150-882b-5f7a5b66865d" + "NORTHCENTRALUS:20160220T144119Z:2e320eae-e296-4b43-9442-6b22dec9d61f" ], "Date": [ - "Tue, 16 Feb 2016 10:29:19 GMT" + "Sat, 20 Feb 2016 14:41:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/069005c3-56e7-4b1c-9c81-dfc9056d0136?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMDY5MDA1YzMtNTZlNy00YjFjLTljODEtZGZjOTA1NmQwMTM2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/a754ce02-8cea-4069-8067-367da43bd30f?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTc1NGNlMDItOGNlYS00MDY5LTgwNjctMzY3ZGE0M2JkMzBmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2465,7 +2465,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"069005c3-56e7-4b1c-9c81-dfc9056d0136\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T11:25:17.5737952+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"a754ce02-8cea-4069-8067-367da43bd30f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-20T15:37:16.9596899+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2483,10 +2483,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "448aa0de-ff9c-4acb-a057-69458fd7a2cd" + "242a411b-d258-4dd0-83cb-fa1326f1f6cb" ], "Cache-Control": [ "no-cache" @@ -2496,23 +2496,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14950" + "14949" ], "x-ms-correlation-request-id": [ - "bfdab780-41e5-4b45-8db0-67bf2f9fd965" + "3b987f09-5d5c-4160-ae41-2f94408dae60" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T102950Z:bfdab780-41e5-4b45-8db0-67bf2f9fd965" + "NORTHCENTRALUS:20160220T144150Z:3b987f09-5d5c-4160-ae41-2f94408dae60" ], "Date": [ - "Tue, 16 Feb 2016 10:29:49 GMT" + "Sat, 20 Feb 2016 14:41:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/069005c3-56e7-4b1c-9c81-dfc9056d0136?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMDY5MDA1YzMtNTZlNy00YjFjLTljODEtZGZjOTA1NmQwMTM2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/a754ce02-8cea-4069-8067-367da43bd30f?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTc1NGNlMDItOGNlYS00MDY5LTgwNjctMzY3ZGE0M2JkMzBmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2520,7 +2520,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"069005c3-56e7-4b1c-9c81-dfc9056d0136\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T11:25:17.5737952+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"a754ce02-8cea-4069-8067-367da43bd30f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-20T15:37:16.9596899+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2538,10 +2538,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "947e7177-9022-4dcb-a6e6-442242971b41" + "c6a4ddf5-e507-4575-98a9-d2db92ddb52a" ], "Cache-Control": [ "no-cache" @@ -2551,23 +2551,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14950" + "14948" ], "x-ms-correlation-request-id": [ - "1c778ec0-1d1b-41a1-adad-a70ea5da65b1" + "56d8baa4-625c-443a-a034-8ccbf6020c0b" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T103020Z:1c778ec0-1d1b-41a1-adad-a70ea5da65b1" + "NORTHCENTRALUS:20160220T144220Z:56d8baa4-625c-443a-a034-8ccbf6020c0b" ], "Date": [ - "Tue, 16 Feb 2016 10:30:20 GMT" + "Sat, 20 Feb 2016 14:42:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/069005c3-56e7-4b1c-9c81-dfc9056d0136?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMDY5MDA1YzMtNTZlNy00YjFjLTljODEtZGZjOTA1NmQwMTM2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/a754ce02-8cea-4069-8067-367da43bd30f?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTc1NGNlMDItOGNlYS00MDY5LTgwNjctMzY3ZGE0M2JkMzBmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2575,10 +2575,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"069005c3-56e7-4b1c-9c81-dfc9056d0136\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-02-16T11:25:17.5737952+01:00\",\r\n \"endTime\": \"2016-02-16T11:30:27.9175266+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"a754ce02-8cea-4069-8067-367da43bd30f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-20T15:37:16.9596899+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "191" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2593,10 +2593,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "8996f0a0-bcd4-46f3-822a-70a650cd2f7c" + "8cd98fa1-9a13-45df-8475-a983b73a78af" ], "Cache-Control": [ "no-cache" @@ -2606,23 +2606,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14949" + "14947" ], "x-ms-correlation-request-id": [ - "1019c57f-29c5-4d3f-8c4a-4932e4f5afbe" + "d257b48c-4e41-453d-838f-c483ce6cee99" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T103050Z:1019c57f-29c5-4d3f-8c4a-4932e4f5afbe" + "NORTHCENTRALUS:20160220T144250Z:d257b48c-4e41-453d-838f-c483ce6cee99" ], "Date": [ - "Tue, 16 Feb 2016 10:30:50 GMT" + "Sat, 20 Feb 2016 14:42:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczYxMTA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/a754ce02-8cea-4069-8067-367da43bd30f?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTc1NGNlMDItOGNlYS00MDY5LTgwNjctMzY3ZGE0M2JkMzBmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2630,10 +2630,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"75fe4dc3-f01d-44b5-ba3e-1fc40cd3c7b6\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\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\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6110.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6110.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6110.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic0crptestps6110\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic1crptestps6110\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110\",\r\n \"name\": \"vmcrptestps6110\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"a754ce02-8cea-4069-8067-367da43bd30f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-20T15:37:16.9596899+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "2289" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2648,10 +2648,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "0cf30ccc-819f-4562-9fc7-f33bdd0ddf23" + "e8a925f0-cab9-4b24-bbfe-c92457fda719" ], "Cache-Control": [ "no-cache" @@ -2661,40 +2661,89 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14948" + "14946" ], "x-ms-correlation-request-id": [ - "7b34099c-10f0-4040-920c-3bd9e7e9c384" + "ec22399c-b072-4001-8fba-aec78b638cb2" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T103051Z:7b34099c-10f0-4040-920c-3bd9e7e9c384" + "NORTHCENTRALUS:20160220T144320Z:ec22399c-b072-4001-8fba-aec78b638cb2" ], "Date": [ - "Tue, 16 Feb 2016 10:30:50 GMT" + "Sat, 20 Feb 2016 14:43:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczYxMTA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/a754ce02-8cea-4069-8067-367da43bd30f?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTc1NGNlMDItOGNlYS00MDY5LTgwNjctMzY3ZGE0M2JkMzBmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "fdaa22b6-506b-4c31-bd3a-46cd028a78ee" + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"a754ce02-8cea-4069-8067-367da43bd30f\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-02-20T15:37:16.9596899+01:00\",\r\n \"endTime\": \"2016-02-20T15:43:34.850778+01:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "190" ], - "accept-language": [ - "en-US" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" + ], + "x-ms-request-id": [ + "1ce8c2c2-0afe-4918-88fc-0db9db9c3953" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14945" + ], + "x-ms-correlation-request-id": [ + "c51b9b3b-16c6-43eb-95c5-21eaf37cca48" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160220T144350Z:c51b9b3b-16c6-43eb-95c5-21eaf37cca48" + ], + "Date": [ + "Sat, 20 Feb 2016 14:43:50 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Compute/virtualMachines/vmcrptestps1075?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczEwNzU/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { "User-Agent": [ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"75fe4dc3-f01d-44b5-ba3e-1fc40cd3c7b6\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\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\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6110.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6110.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6110.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic0crptestps6110\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic1crptestps6110\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\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\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110/extensions/BGInfo\",\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110\",\r\n \"name\": \"vmcrptestps6110\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"595913b8-fe36-48f2-8db8-0a7f55b40f66\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\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\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1075.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1075.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1075.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\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 \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Network/networkInterfaces/nic0crptestps1075\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Network/networkInterfaces/nic1crptestps1075\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Compute/virtualMachines/vmcrptestps1075\",\r\n \"name\": \"vmcrptestps1075\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "2843" + "2289" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2709,10 +2758,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "a96e4e2b-8070-4534-bbfe-6205dbb48eba" + "55009b0b-6647-4635-9413-dedb40c96e1d" ], "Cache-Control": [ "no-cache" @@ -2722,28 +2771,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14939" + "14944" ], "x-ms-correlation-request-id": [ - "187a3717-0061-47e5-82ea-eef2b34ca8e4" + "3b3d54dc-9670-46b4-b29e-4f3be48c2687" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T103230Z:187a3717-0061-47e5-82ea-eef2b34ca8e4" + "NORTHCENTRALUS:20160220T144351Z:3b3d54dc-9670-46b4-b29e-4f3be48c2687" ], "Date": [ - "Tue, 16 Feb 2016 10:32:30 GMT" + "Sat, 20 Feb 2016 14:43:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczYxMTA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Compute/virtualMachines/vmcrptestps1075?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczEwNzU/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7fe1030e-eee5-429a-9b32-572bb32cf794" + "dba10a0a-7810-4a6b-b37a-a2786d43c432" ], "accept-language": [ "en-US" @@ -2752,7 +2801,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"75fe4dc3-f01d-44b5-ba3e-1fc40cd3c7b6\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\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\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6110.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6110.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6110.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic0crptestps6110\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic1crptestps6110\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\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\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110/extensions/BGInfo\",\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110\",\r\n \"name\": \"vmcrptestps6110\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"595913b8-fe36-48f2-8db8-0a7f55b40f66\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\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\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1075.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1075.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1075.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\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 \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Network/networkInterfaces/nic0crptestps1075\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Network/networkInterfaces/nic1crptestps1075\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\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\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Compute/virtualMachines/vmcrptestps1075/extensions/BGInfo\",\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Compute/virtualMachines/vmcrptestps1075\",\r\n \"name\": \"vmcrptestps1075\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "2843" @@ -2770,10 +2819,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "9407eca6-d571-4c72-a766-18f596308ade" + "fb003e52-09e0-497e-83c0-532f7282d852" ], "Cache-Control": [ "no-cache" @@ -2786,25 +2835,25 @@ "14938" ], "x-ms-correlation-request-id": [ - "f96f4a58-2cc7-42a4-9d9f-5c1cd9798e7f" + "2c238a12-8b8c-403e-ae30-7ba3b5fa5708" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T103231Z:f96f4a58-2cc7-42a4-9d9f-5c1cd9798e7f" + "NORTHCENTRALUS:20160220T144540Z:2c238a12-8b8c-403e-ae30-7ba3b5fa5708" ], "Date": [ - "Tue, 16 Feb 2016 10:32:30 GMT" + "Sat, 20 Feb 2016 14:45:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczYxMTA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Compute/virtualMachines/vmcrptestps1075?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczEwNzU/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9e2a41f5-fb1d-4c8f-9394-56d66616e220" + "5767ec47-ee29-41da-9416-cb8bf381cae7" ], "accept-language": [ "en-US" @@ -2813,7 +2862,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"75fe4dc3-f01d-44b5-ba3e-1fc40cd3c7b6\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\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\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6110.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6110.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6110.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic0crptestps6110\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic1crptestps6110\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\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\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110/extensions/BGInfo\",\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110\",\r\n \"name\": \"vmcrptestps6110\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"595913b8-fe36-48f2-8db8-0a7f55b40f66\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\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\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1075.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1075.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1075.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\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 \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Network/networkInterfaces/nic0crptestps1075\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Network/networkInterfaces/nic1crptestps1075\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\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\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Compute/virtualMachines/vmcrptestps1075/extensions/BGInfo\",\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Compute/virtualMachines/vmcrptestps1075\",\r\n \"name\": \"vmcrptestps1075\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "2843" @@ -2831,10 +2880,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "cade0776-8f8b-4638-a22c-d691d0dc755b" + "8dd8bf2c-6408-467c-a8ba-7fce134d2c05" ], "Cache-Control": [ "no-cache" @@ -2847,25 +2896,25 @@ "14937" ], "x-ms-correlation-request-id": [ - "3f11ef0f-2c40-4307-84ec-474a44552cf2" + "c1595418-a621-4a08-b3b8-1039cbdfce5f" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T103231Z:3f11ef0f-2c40-4307-84ec-474a44552cf2" + "NORTHCENTRALUS:20160220T144541Z:c1595418-a621-4a08-b3b8-1039cbdfce5f" ], "Date": [ - "Tue, 16 Feb 2016 10:32:30 GMT" + "Sat, 20 Feb 2016 14:45:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczYxMTA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Compute/virtualMachines/vmcrptestps1075?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczEwNzU/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "abcda7c6-bf61-4c17-8226-4dc16b5d80fb" + "38e5171d-5128-477e-bebc-5c6f5134d0b0" ], "accept-language": [ "en-US" @@ -2874,7 +2923,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"75fe4dc3-f01d-44b5-ba3e-1fc40cd3c7b6\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\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\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6110.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6110.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6110.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic0crptestps6110\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic1crptestps6110\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\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\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110/extensions/BGInfo\",\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110\",\r\n \"name\": \"vmcrptestps6110\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"595913b8-fe36-48f2-8db8-0a7f55b40f66\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\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\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1075.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1075.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1075.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\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 \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Network/networkInterfaces/nic0crptestps1075\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Network/networkInterfaces/nic1crptestps1075\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\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\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Compute/virtualMachines/vmcrptestps1075/extensions/BGInfo\",\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Compute/virtualMachines/vmcrptestps1075\",\r\n \"name\": \"vmcrptestps1075\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "2843" @@ -2892,10 +2941,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "30b10a6c-74c7-4599-9623-760bef06a4e9" + "9ee0a609-12b5-4973-9300-907bc4238cbb" ], "Cache-Control": [ "no-cache" @@ -2905,28 +2954,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14935" + "14936" ], "x-ms-correlation-request-id": [ - "e6b7664f-d1d6-4268-99a7-214fbedfb197" + "7d2cb476-6afd-4bc1-a1ac-720c4607bfb3" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T103300Z:e6b7664f-d1d6-4268-99a7-214fbedfb197" + "NORTHCENTRALUS:20160220T144541Z:7d2cb476-6afd-4bc1-a1ac-720c4607bfb3" ], "Date": [ - "Tue, 16 Feb 2016 10:33:00 GMT" + "Sat, 20 Feb 2016 14:45:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczYxMTA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Compute/virtualMachines/vmcrptestps1075?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczEwNzU/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "70391bb9-6a3b-4a14-a3cf-883de2bb8985" + "ebd8464e-10cb-4ad7-92c0-a48e7ae91c9f" ], "accept-language": [ "en-US" @@ -2935,10 +2984,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"75fe4dc3-f01d-44b5-ba3e-1fc40cd3c7b6\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\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\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6110.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6110.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6110.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic0crptestps6110\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic1crptestps6110\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\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\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110/extensions/BGInfo\",\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Azure.Diagnostics\",\r\n \"type\": \"IaaSDiagnostics\",\r\n \"typeHandlerVersion\": \"1.5\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yKF9Ub3RhbClcJSBQcm9jZXNzb3IgVGltZSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yIEluZm9ybWF0aW9uKF9Ub3RhbClcUHJvY2Vzc29yIEZyZXF1ZW5jeSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XEF2YWlsYWJsZSBCeXRlcyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcVENQdjZcU2VnbWVudHMgUmV0cmFuc21pdHRlZC9zZWMiIHNhbXBsZVJhdGU9IlBUMU0iIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFRDUHY0XFNlZ21lbnRzIFJldHJhbnNtaXR0ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrIEludGVyZmFjZSgqKVxCeXRlcyBTZW50L3NlYyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29yayBJbnRlcmZhY2UoKilcQnl0ZXMgUmVjZWl2ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110/extensions/IaaSDiagnostics\",\r\n \"name\": \"IaaSDiagnostics\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110\",\r\n \"name\": \"vmcrptestps6110\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"595913b8-fe36-48f2-8db8-0a7f55b40f66\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\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\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1075.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1075.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1075.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\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 \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Network/networkInterfaces/nic0crptestps1075\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Network/networkInterfaces/nic1crptestps1075\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\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\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Compute/virtualMachines/vmcrptestps1075/extensions/BGInfo\",\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Compute/virtualMachines/vmcrptestps1075\",\r\n \"name\": \"vmcrptestps1075\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "4704" + "2843" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2953,10 +3002,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "f519716a-a33f-4d41-b751-61c0aea77de3" + "79711aa6-85f2-4a3a-9cba-558c8b757989" ], "Cache-Control": [ "no-cache" @@ -2966,28 +3015,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14928" + "14933" ], "x-ms-correlation-request-id": [ - "76dd2254-01b1-44ed-89bb-e473a03655eb" + "ba8829ea-76c3-4f77-bfdb-90bfc155e4e3" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T103535Z:76dd2254-01b1-44ed-89bb-e473a03655eb" + "NORTHCENTRALUS:20160220T144610Z:ba8829ea-76c3-4f77-bfdb-90bfc155e4e3" ], "Date": [ - "Tue, 16 Feb 2016 10:35:35 GMT" + "Sat, 20 Feb 2016 14:46:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczYxMTA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Compute/virtualMachines/vmcrptestps1075?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczEwNzU/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0649b93e-b4db-4e1d-bb23-79a767bea583" + "9f791a9d-cfab-4526-abb5-8758659badc6" ], "accept-language": [ "en-US" @@ -2996,10 +3045,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"75fe4dc3-f01d-44b5-ba3e-1fc40cd3c7b6\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\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\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6110.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6110.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6110.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic0crptestps6110\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic1crptestps6110\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"type\": \"AzureCATExtensionHandler\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_DS2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.2\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.2\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"stocrptestps6110.hour.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"stocrptestps6110.minute.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps61102\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps61102.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110/extensions/AzureCATExtensionHandler\",\r\n \"name\": \"AzureCATExtensionHandler\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110/extensions/BGInfo\",\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Azure.Diagnostics\",\r\n \"type\": \"IaaSDiagnostics\",\r\n \"typeHandlerVersion\": \"1.5\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yKF9Ub3RhbClcJSBQcm9jZXNzb3IgVGltZSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yIEluZm9ybWF0aW9uKF9Ub3RhbClcUHJvY2Vzc29yIEZyZXF1ZW5jeSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XEF2YWlsYWJsZSBCeXRlcyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcVENQdjZcU2VnbWVudHMgUmV0cmFuc21pdHRlZC9zZWMiIHNhbXBsZVJhdGU9IlBUMU0iIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFRDUHY0XFNlZ21lbnRzIFJldHJhbnNtaXR0ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrIEludGVyZmFjZSgqKVxCeXRlcyBTZW50L3NlYyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29yayBJbnRlcmZhY2UoKilcQnl0ZXMgUmVjZWl2ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110/extensions/IaaSDiagnostics\",\r\n \"name\": \"IaaSDiagnostics\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110\",\r\n \"name\": \"vmcrptestps6110\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"595913b8-fe36-48f2-8db8-0a7f55b40f66\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\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\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1075.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1075.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1075.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\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 \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Network/networkInterfaces/nic0crptestps1075\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Network/networkInterfaces/nic1crptestps1075\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\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\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Compute/virtualMachines/vmcrptestps1075/extensions/BGInfo\",\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Azure.Diagnostics\",\r\n \"type\": \"IaaSDiagnostics\",\r\n \"typeHandlerVersion\": \"1.5\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yKF9Ub3RhbClcJSBQcm9jZXNzb3IgVGltZSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yIEluZm9ybWF0aW9uKF9Ub3RhbClcUHJvY2Vzc29yIEZyZXF1ZW5jeSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XEF2YWlsYWJsZSBCeXRlcyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcVENQdjZcU2VnbWVudHMgUmV0cmFuc21pdHRlZC9zZWMiIHNhbXBsZVJhdGU9IlBUMU0iIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFRDUHY0XFNlZ21lbnRzIFJldHJhbnNtaXR0ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrIEludGVyZmFjZSgqKVxCeXRlcyBTZW50L3NlYyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29yayBJbnRlcmZhY2UoKilcQnl0ZXMgUmVjZWl2ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Compute/virtualMachines/vmcrptestps1075/extensions/IaaSDiagnostics\",\r\n \"name\": \"IaaSDiagnostics\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Compute/virtualMachines/vmcrptestps1075\",\r\n \"name\": \"vmcrptestps1075\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "6682" + "4704" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3014,10 +3063,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "cf906e75-cced-4b42-bf57-1dcd7e44b8ba" + "88d3a253-3c50-47a8-bcfc-b214e3c8810f" ], "Cache-Control": [ "no-cache" @@ -3027,28 +3076,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14924" + "14922" ], "x-ms-correlation-request-id": [ - "516fbe3c-cd30-4f91-9afa-ae0d154ab2c6" + "2e46b855-a48d-4181-b7ab-f40bf097a0b5" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T103643Z:516fbe3c-cd30-4f91-9afa-ae0d154ab2c6" + "NORTHCENTRALUS:20160220T144854Z:2e46b855-a48d-4181-b7ab-f40bf097a0b5" ], "Date": [ - "Tue, 16 Feb 2016 10:36:42 GMT" + "Sat, 20 Feb 2016 14:48:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczYxMTA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Compute/virtualMachines/vmcrptestps1075?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczEwNzU/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0e8085ba-15dd-486f-b045-069f24afeb84" + "67b74d85-1178-4cfc-a938-93277fe2dfeb" ], "accept-language": [ "en-US" @@ -3057,7 +3106,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"75fe4dc3-f01d-44b5-ba3e-1fc40cd3c7b6\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\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\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6110.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6110.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6110.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic0crptestps6110\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic1crptestps6110\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"type\": \"AzureCATExtensionHandler\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_DS2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.2\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.2\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"stocrptestps6110.hour.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"stocrptestps6110.minute.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps61102\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps61102.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110/extensions/AzureCATExtensionHandler\",\r\n \"name\": \"AzureCATExtensionHandler\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110/extensions/BGInfo\",\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Azure.Diagnostics\",\r\n \"type\": \"IaaSDiagnostics\",\r\n \"typeHandlerVersion\": \"1.5\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yKF9Ub3RhbClcJSBQcm9jZXNzb3IgVGltZSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yIEluZm9ybWF0aW9uKF9Ub3RhbClcUHJvY2Vzc29yIEZyZXF1ZW5jeSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XEF2YWlsYWJsZSBCeXRlcyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcVENQdjZcU2VnbWVudHMgUmV0cmFuc21pdHRlZC9zZWMiIHNhbXBsZVJhdGU9IlBUMU0iIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFRDUHY0XFNlZ21lbnRzIFJldHJhbnNtaXR0ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrIEludGVyZmFjZSgqKVxCeXRlcyBTZW50L3NlYyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29yayBJbnRlcmZhY2UoKilcQnl0ZXMgUmVjZWl2ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110/extensions/IaaSDiagnostics\",\r\n \"name\": \"IaaSDiagnostics\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110\",\r\n \"name\": \"vmcrptestps6110\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"595913b8-fe36-48f2-8db8-0a7f55b40f66\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\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\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1075.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1075.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1075.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\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 \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Network/networkInterfaces/nic0crptestps1075\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Network/networkInterfaces/nic1crptestps1075\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"type\": \"AzureCATExtensionHandler\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_DS2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.2\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.2\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"stocrptestps1075.hour.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"stocrptestps1075.minute.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps10752\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps10752.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Compute/virtualMachines/vmcrptestps1075/extensions/AzureCATExtensionHandler\",\r\n \"name\": \"AzureCATExtensionHandler\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Compute/virtualMachines/vmcrptestps1075/extensions/BGInfo\",\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Azure.Diagnostics\",\r\n \"type\": \"IaaSDiagnostics\",\r\n \"typeHandlerVersion\": \"1.5\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yKF9Ub3RhbClcJSBQcm9jZXNzb3IgVGltZSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yIEluZm9ybWF0aW9uKF9Ub3RhbClcUHJvY2Vzc29yIEZyZXF1ZW5jeSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XEF2YWlsYWJsZSBCeXRlcyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcVENQdjZcU2VnbWVudHMgUmV0cmFuc21pdHRlZC9zZWMiIHNhbXBsZVJhdGU9IlBUMU0iIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFRDUHY0XFNlZ21lbnRzIFJldHJhbnNtaXR0ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrIEludGVyZmFjZSgqKVxCeXRlcyBTZW50L3NlYyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29yayBJbnRlcmZhY2UoKilcQnl0ZXMgUmVjZWl2ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Compute/virtualMachines/vmcrptestps1075/extensions/IaaSDiagnostics\",\r\n \"name\": \"IaaSDiagnostics\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Compute/virtualMachines/vmcrptestps1075\",\r\n \"name\": \"vmcrptestps1075\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "6682" @@ -3075,10 +3124,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "c6ab44ef-7fc3-41fc-b1ec-fab4f7e45155" + "4a142234-b7ff-4cb4-8c7b-03d5c969c461" ], "Cache-Control": [ "no-cache" @@ -3088,28 +3137,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14922" + "14918" ], "x-ms-correlation-request-id": [ - "9e19a72b-67cd-4066-8483-3b525c1f5f55" + "774eb23b-b24c-4d84-8acc-6326278c9c6e" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T103644Z:9e19a72b-67cd-4066-8483-3b525c1f5f55" + "NORTHCENTRALUS:20160220T144959Z:774eb23b-b24c-4d84-8acc-6326278c9c6e" ], "Date": [ - "Tue, 16 Feb 2016 10:36:44 GMT" + "Sat, 20 Feb 2016 14:49:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczYxMTA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Compute/virtualMachines/vmcrptestps1075?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczEwNzU/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4a650448-3a21-4c2e-8d4e-310b9f5deaac" + "9935ab41-f38b-4d56-85fa-54a84f36fcc1" ], "accept-language": [ "en-US" @@ -3118,7 +3167,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"75fe4dc3-f01d-44b5-ba3e-1fc40cd3c7b6\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\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\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6110.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6110.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6110.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic0crptestps6110\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic1crptestps6110\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"type\": \"AzureCATExtensionHandler\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_DS2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.2\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.2\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"stocrptestps6110.hour.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"stocrptestps6110.minute.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps61102\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps61102.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110/extensions/AzureCATExtensionHandler\",\r\n \"name\": \"AzureCATExtensionHandler\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110/extensions/BGInfo\",\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Azure.Diagnostics\",\r\n \"type\": \"IaaSDiagnostics\",\r\n \"typeHandlerVersion\": \"1.5\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yKF9Ub3RhbClcJSBQcm9jZXNzb3IgVGltZSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yIEluZm9ybWF0aW9uKF9Ub3RhbClcUHJvY2Vzc29yIEZyZXF1ZW5jeSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XEF2YWlsYWJsZSBCeXRlcyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcVENQdjZcU2VnbWVudHMgUmV0cmFuc21pdHRlZC9zZWMiIHNhbXBsZVJhdGU9IlBUMU0iIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFRDUHY0XFNlZ21lbnRzIFJldHJhbnNtaXR0ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrIEludGVyZmFjZSgqKVxCeXRlcyBTZW50L3NlYyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29yayBJbnRlcmZhY2UoKilcQnl0ZXMgUmVjZWl2ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110/extensions/IaaSDiagnostics\",\r\n \"name\": \"IaaSDiagnostics\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110\",\r\n \"name\": \"vmcrptestps6110\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"595913b8-fe36-48f2-8db8-0a7f55b40f66\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\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\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1075.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1075.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1075.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\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 \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Network/networkInterfaces/nic0crptestps1075\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Network/networkInterfaces/nic1crptestps1075\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"type\": \"AzureCATExtensionHandler\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_DS2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.2\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.2\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"stocrptestps1075.hour.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"stocrptestps1075.minute.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps10752\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps10752.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Compute/virtualMachines/vmcrptestps1075/extensions/AzureCATExtensionHandler\",\r\n \"name\": \"AzureCATExtensionHandler\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Compute/virtualMachines/vmcrptestps1075/extensions/BGInfo\",\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Azure.Diagnostics\",\r\n \"type\": \"IaaSDiagnostics\",\r\n \"typeHandlerVersion\": \"1.5\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yKF9Ub3RhbClcJSBQcm9jZXNzb3IgVGltZSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yIEluZm9ybWF0aW9uKF9Ub3RhbClcUHJvY2Vzc29yIEZyZXF1ZW5jeSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XEF2YWlsYWJsZSBCeXRlcyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcVENQdjZcU2VnbWVudHMgUmV0cmFuc21pdHRlZC9zZWMiIHNhbXBsZVJhdGU9IlBUMU0iIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFRDUHY0XFNlZ21lbnRzIFJldHJhbnNtaXR0ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrIEludGVyZmFjZSgqKVxCeXRlcyBTZW50L3NlYyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29yayBJbnRlcmZhY2UoKilcQnl0ZXMgUmVjZWl2ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Compute/virtualMachines/vmcrptestps1075/extensions/IaaSDiagnostics\",\r\n \"name\": \"IaaSDiagnostics\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Compute/virtualMachines/vmcrptestps1075\",\r\n \"name\": \"vmcrptestps1075\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "6682" @@ -3136,10 +3185,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "0ef8617d-2481-4690-8c18-f12d5f4eadc6" + "f06431b5-4549-4f49-8f7e-f979b4c3ba50" ], "Cache-Control": [ "no-cache" @@ -3149,28 +3198,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14920" + "14916" ], "x-ms-correlation-request-id": [ - "e0675d80-7e88-4ba4-a672-6e239c118f13" + "1ea19d91-755c-49e1-963a-b537237d1707" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T103648Z:e0675d80-7e88-4ba4-a672-6e239c118f13" + "NORTHCENTRALUS:20160220T145000Z:1ea19d91-755c-49e1-963a-b537237d1707" ], "Date": [ - "Tue, 16 Feb 2016 10:36:47 GMT" + "Sat, 20 Feb 2016 14:49:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczYxMTA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Compute/virtualMachines/vmcrptestps1075?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczEwNzU/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7671bfb8-23db-4d03-8524-f686cd922573" + "c4b8ff2b-8d59-497b-ae82-bf4108eaaf6a" ], "accept-language": [ "en-US" @@ -3179,10 +3228,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"75fe4dc3-f01d-44b5-ba3e-1fc40cd3c7b6\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\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\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6110.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6110.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6110.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic0crptestps6110\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic1crptestps6110\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\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\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110/extensions/BGInfo\",\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Azure.Diagnostics\",\r\n \"type\": \"IaaSDiagnostics\",\r\n \"typeHandlerVersion\": \"1.5\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yKF9Ub3RhbClcJSBQcm9jZXNzb3IgVGltZSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yIEluZm9ybWF0aW9uKF9Ub3RhbClcUHJvY2Vzc29yIEZyZXF1ZW5jeSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XEF2YWlsYWJsZSBCeXRlcyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcVENQdjZcU2VnbWVudHMgUmV0cmFuc21pdHRlZC9zZWMiIHNhbXBsZVJhdGU9IlBUMU0iIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFRDUHY0XFNlZ21lbnRzIFJldHJhbnNtaXR0ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrIEludGVyZmFjZSgqKVxCeXRlcyBTZW50L3NlYyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29yayBJbnRlcmZhY2UoKilcQnl0ZXMgUmVjZWl2ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110/extensions/IaaSDiagnostics\",\r\n \"name\": \"IaaSDiagnostics\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110\",\r\n \"name\": \"vmcrptestps6110\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"595913b8-fe36-48f2-8db8-0a7f55b40f66\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\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\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1075.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1075.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1075.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\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 \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Network/networkInterfaces/nic0crptestps1075\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Network/networkInterfaces/nic1crptestps1075\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"type\": \"AzureCATExtensionHandler\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_DS2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.2\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.2\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"stocrptestps1075.hour.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"stocrptestps1075.minute.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps10752\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps10752.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Compute/virtualMachines/vmcrptestps1075/extensions/AzureCATExtensionHandler\",\r\n \"name\": \"AzureCATExtensionHandler\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Compute/virtualMachines/vmcrptestps1075/extensions/BGInfo\",\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Azure.Diagnostics\",\r\n \"type\": \"IaaSDiagnostics\",\r\n \"typeHandlerVersion\": \"1.5\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yKF9Ub3RhbClcJSBQcm9jZXNzb3IgVGltZSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yIEluZm9ybWF0aW9uKF9Ub3RhbClcUHJvY2Vzc29yIEZyZXF1ZW5jeSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XEF2YWlsYWJsZSBCeXRlcyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcVENQdjZcU2VnbWVudHMgUmV0cmFuc21pdHRlZC9zZWMiIHNhbXBsZVJhdGU9IlBUMU0iIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFRDUHY0XFNlZ21lbnRzIFJldHJhbnNtaXR0ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrIEludGVyZmFjZSgqKVxCeXRlcyBTZW50L3NlYyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29yayBJbnRlcmZhY2UoKilcQnl0ZXMgUmVjZWl2ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Compute/virtualMachines/vmcrptestps1075/extensions/IaaSDiagnostics\",\r\n \"name\": \"IaaSDiagnostics\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Compute/virtualMachines/vmcrptestps1075\",\r\n \"name\": \"vmcrptestps1075\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "4704" + "6682" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3197,10 +3246,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "b8797d84-d403-4ef8-9762-bc2876d96adc" + "09c14b4e-1b58-4056-aed3-15cc3d1665d3" ], "Cache-Control": [ "no-cache" @@ -3210,28 +3259,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14917" + "14914" ], "x-ms-correlation-request-id": [ - "7c1c1811-1351-4a3e-9ad0-ebe92f1311ab" + "2959e518-69c8-47d6-a78a-a76ee49dc42e" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T103751Z:7c1c1811-1351-4a3e-9ad0-ebe92f1311ab" + "NORTHCENTRALUS:20160220T145002Z:2959e518-69c8-47d6-a78a-a76ee49dc42e" ], "Date": [ - "Tue, 16 Feb 2016 10:37:51 GMT" + "Sat, 20 Feb 2016 14:50:02 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/publishers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Compute/virtualMachines/vmcrptestps1075?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczEwNzU/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b38d913a-865c-455c-adb9-606936d8aefe" + "9146e023-0e90-4011-9c9a-5a008e2ca1e2" ], "accept-language": [ "en-US" @@ -3240,10 +3289,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4ward365\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/4ward365\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"active-navigation\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/active-navigation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"adam-software\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/adam-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"adatao\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/adatao\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"adobe\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/adobe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"adobe_test\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/adobe_test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"adra-match\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/adra-match\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aimsinnovation\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/aimsinnovation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"algebraix-data\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/algebraix-data\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alteryx\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/alteryx\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"altiar\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/altiar\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appcelerator\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/appcelerator\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appcitoinc\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/appcitoinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"apprenda\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/apprenda\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appveyorci\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/appveyorci\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appzero\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/appzero\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"array_networks\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/array_networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aspex-managed-cloud\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/aspex-managed-cloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"avepoint\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/avepoint\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aviatrix-systems\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/aviatrix-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"axway\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/axway\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azuresyncfusion\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/azuresyncfusion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bizagi\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/bizagi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"biztalk360\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/biztalk360\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blackberry\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/blackberry\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"boundlessgeo\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/boundlessgeo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"brocade_communications\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/brocade_communications\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bwappengine\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/bwappengine\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"caringo\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/caringo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cautelalabs\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/cautelalabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"checkpointsystems\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/checkpointsystems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cherwell\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/cherwell\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cisco\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/cisco\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"citrix\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/citrix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"clickberry\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/clickberry\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloud-cruiser\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloud-cruiser\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudbolt-software\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudbolt-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudera1qaz2wsx\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudera1qaz2wsx\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudhouse\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudhouse\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"CloudLinkEMC.SecureVM.Test\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/CloudLinkEMC.SecureVM.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Confer.TestSensor\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Confer.TestSensor\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"consensys\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/consensys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cordis\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/cordis\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cortical-io\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/cortical-io\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"credativ\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/credativ\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Dans.Windows.App\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Dans.Windows.App\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Dans2.Windows.App\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Dans2.Windows.App\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Dans3.Windows.App\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Dans3.Windows.App\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datacastle\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/datacastle\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dataexpeditioninc\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/dataexpeditioninc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dataiku\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/dataiku\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dataliberation\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/dataliberation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datasunrise\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/datasunrise\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"defacto_global_\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/defacto_global_\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dell-software\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/dell-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"denyall\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/denyall\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"docscorp-us\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/docscorp-us\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dolbydeveloper\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/dolbydeveloper\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dome9\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/dome9\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"donovapub\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/donovapub\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"easyterritory\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/easyterritory\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"edevtech\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/edevtech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"egress\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/egress\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eip\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/eip\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eip-eipower\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/eip-eipower\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elastacloud\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/elastacloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eloquera\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/eloquera\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eperi\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/eperi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ESET.FileSecurity\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/ESET.FileSecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eurotech\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/eurotech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"exit-games\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/exit-games\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"expertime\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/expertime\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"filebridge\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/filebridge\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"flexerasoftware\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/flexerasoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"forscene\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/forscene\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fortycloud\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/fortycloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fw\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/fw\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"g-data-software\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/g-data-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"greathorn\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/greathorn\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"haivision\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/haivision\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"halobicloud\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/halobicloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iamcloud\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/iamcloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ibabs-eu\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/ibabs-eu\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"imaginecommunications\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/imaginecommunications\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"imc\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/imc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"imperva\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/imperva\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"incredibuild\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/incredibuild\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"informatica\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/informatica\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infostrat\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/infostrat\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intel\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/intel\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ishlangu-load-balancer-adc\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/ishlangu-load-balancer-adc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jedox\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/jedox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jitterbit_integration\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/jitterbit_integration\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kepion\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/kepion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kollective\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/kollective\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"le\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/le\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lieberlieber\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/lieberlieber\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"LocalTest.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/LocalTest.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"logi-analytics\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/logi-analytics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"loginpeople\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/loginpeople\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"luxoft\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/luxoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"magelia\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/magelia\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"manageengine\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/manageengine\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mariadb\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/mariadb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mediazenie\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/mediazenie\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"memsql\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/memsql\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mendix\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/mendix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mentalnotes\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/mentalnotes\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mesosphere\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/mesosphere\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-ads\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-ads\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-r-products\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-r-products\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.Internal\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.Internal\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Test\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.SiteRecovery.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.OSTCExtensions.Test\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.OSTCExtensions.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Install\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Install\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Internal\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Internal\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.PaaS\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.PaaS\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Preview\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Preview\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Telemetry\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Telemetry\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Test.0\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Test.0\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Test.1\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Test.1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Test0\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Test0\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Test2\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Test2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Test3\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Test3\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.UtcTest\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.UtcTest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Wmf\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Wmf\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Wmf4Test\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Wmf4Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Wmf5\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Wmf5\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.ETWTraceListenerService\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.Azure.ETWTraceListenerService\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.ServiceProfiler\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.ServiceProfiler\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.ServiceProfiler.Test\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.ServiceProfiler.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftWindowsServerRemoteDesktop\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerRemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"miracl_linux\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/miracl_linux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mokxa-technologies\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/mokxa-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nasuni\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/nasuni\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"new-signature\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/new-signature\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nextlimit\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/nextlimit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nexus\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/nexus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nuxeo\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/nuxeo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"officeclipsuite\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/officeclipsuite\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"op5\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/op5\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"openmeap\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/openmeap\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"opennebulasystems\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/opennebulasystems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"opentext\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/opentext\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"panzura-file-system\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/panzura-file-system\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pointmatter\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/pointmatter\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"predictionio\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/predictionio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"predixion\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/predixion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"prime-strategy\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/prime-strategy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"primestream\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/primestream\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ptv_group\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/ptv_group\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pxlag_swiss\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/pxlag_swiss\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"quasardb\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/quasardb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"RedHat\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/RedHat\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rocketsoftware\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/rocketsoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rocket_software\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/rocket_software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"saama\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/saama\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scalebase\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/scalebase\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"searchblox\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/searchblox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sensorberg\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/sensorberg\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"servoy\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/servoy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"shavlik\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/shavlik\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"snip2code\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/snip2code\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stonefly\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/stonefly\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"storreduce\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/storreduce\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stratalux\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/stratalux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sunview-software\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/sunview-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"talon\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/talon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tentity\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/tentity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.HP.AppDefender\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.HP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity2\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.TrendMicro.DeepSecurity2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity3\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.TrendMicro.DeepSecurity3\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test1.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test1.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thinkboxsoftware\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/thinkboxsoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"topdesk\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/topdesk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test2\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/TrendMicro.DeepSecurity.Test2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unidesk\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/unidesk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unidesk-corp\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/unidesk-corp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vbot\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/vbot\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vecompsoftware\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/vecompsoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vircom\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/vircom\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"virtualworks\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/virtualworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vmturbo\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/vmturbo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Vormetric.VormetricTransparentEncryption\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Vormetric.VormetricTransparentEncryption\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"WAD-VMSS.Test\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/WAD-VMSS.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"WAD2AI.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/WAD2AI.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"WADVMSS.Test\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/WADVMSS.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"waratek\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/waratek\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"warewolf-esb\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/warewolf-esb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"watchfulsoftware\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/watchfulsoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xebialabs\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/xebialabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xmpro\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/xmpro\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xrm\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/xrm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zementis\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/zementis\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/zend\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zoomdata\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/zoomdata\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"595913b8-fe36-48f2-8db8-0a7f55b40f66\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\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\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1075.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1075.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1075.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\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 \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Network/networkInterfaces/nic0crptestps1075\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Network/networkInterfaces/nic1crptestps1075\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\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\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Compute/virtualMachines/vmcrptestps1075/extensions/BGInfo\",\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Azure.Diagnostics\",\r\n \"type\": \"IaaSDiagnostics\",\r\n \"typeHandlerVersion\": \"1.5\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yKF9Ub3RhbClcJSBQcm9jZXNzb3IgVGltZSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yIEluZm9ybWF0aW9uKF9Ub3RhbClcUHJvY2Vzc29yIEZyZXF1ZW5jeSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XEF2YWlsYWJsZSBCeXRlcyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcVENQdjZcU2VnbWVudHMgUmV0cmFuc21pdHRlZC9zZWMiIHNhbXBsZVJhdGU9IlBUMU0iIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFRDUHY0XFNlZ21lbnRzIFJldHJhbnNtaXR0ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrIEludGVyZmFjZSgqKVxCeXRlcyBTZW50L3NlYyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29yayBJbnRlcmZhY2UoKilcQnl0ZXMgUmVjZWl2ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Compute/virtualMachines/vmcrptestps1075/extensions/IaaSDiagnostics\",\r\n \"name\": \"IaaSDiagnostics\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Compute/virtualMachines/vmcrptestps1075\",\r\n \"name\": \"vmcrptestps1075\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "75349" + "4704" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3257,8 +3306,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" + ], "x-ms-request-id": [ - "e5424147-5546-4460-a869-3078ed08d0e2" + "c2401ca3-17c3-4a6f-8517-caa060184925" ], "Cache-Control": [ "no-cache" @@ -3268,28 +3320,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14947" + "14908" ], "x-ms-correlation-request-id": [ - "0760c454-cfad-47c9-96de-8bfe69a19172" + "e562ab82-df3c-4329-8953-29cd118355d6" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T103051Z:0760c454-cfad-47c9-96de-8bfe69a19172" + "NORTHCENTRALUS:20160220T145103Z:e562ab82-df3c-4329-8953-29cd118355d6" ], "Date": [ - "Tue, 16 Feb 2016 10:30:51 GMT" + "Sat, 20 Feb 2016 14:51:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/publishers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "19125b38-40dd-4622-93e6-deeba5944bc2" + "28cd88f7-e2b7-4678-be98-1b3aa616e4a2" ], "accept-language": [ "en-US" @@ -3298,10 +3350,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"CustomScriptExtension\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"JsonADDomainExtension\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/JsonADDomainExtension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"VMAccessAgent\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4ward365\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/4ward365\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Acronis\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Acronis\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Acronis2\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Acronis2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"active-navigation\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/active-navigation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"adam-software\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/adam-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"adatao\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/adatao\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"adobe\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/adobe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"adobe_test\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/adobe_test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"adra-match\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/adra-match\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aimsinnovation\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/aimsinnovation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"algebraix-data\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/algebraix-data\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alteryx\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/alteryx\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"altiar\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/altiar\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appcelerator\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/appcelerator\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appcitoinc\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/appcitoinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"apprenda\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/apprenda\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appveyorci\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/appveyorci\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appzero\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/appzero\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"array_networks\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/array_networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aspex-managed-cloud\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/aspex-managed-cloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"avepoint\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/avepoint\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aviatrix-systems\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/aviatrix-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"axway\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/axway\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azuresyncfusion\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/azuresyncfusion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bizagi\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/bizagi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"biztalk360\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/biztalk360\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blackberry\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/blackberry\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"boundlessgeo\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/boundlessgeo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"brocade_communications\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/brocade_communications\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bwappengine\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/bwappengine\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"caringo\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/caringo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cautelalabs\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/cautelalabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"checkpointsystems\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/checkpointsystems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cherwell\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/cherwell\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cisco\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/cisco\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"citrix\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/citrix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"clickberry\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/clickberry\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloud-cruiser\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloud-cruiser\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudbees\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudbees\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudbolt-software\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudbolt-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudera1qaz2wsx\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudera1qaz2wsx\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudhouse\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudhouse\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"CloudLinkEMC.SecureVM.Test\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/CloudLinkEMC.SecureVM.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Confer.TestSensor\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Confer.TestSensor\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"consensys\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/consensys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cordis\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/cordis\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cortical-io\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/cortical-io\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"credativ\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/credativ\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Dans.Windows.App\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Dans.Windows.App\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Dans2.Windows.App\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Dans2.Windows.App\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Dans3.Windows.App\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Dans3.Windows.App\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datacastle\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/datacastle\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dataexpeditioninc\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/dataexpeditioninc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dataiku\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/dataiku\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dataliberation\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/dataliberation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datasunrise\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/datasunrise\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"defacto_global_\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/defacto_global_\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dell-software\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/dell-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"denyall\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/denyall\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"docscorp-us\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/docscorp-us\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dolbydeveloper\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/dolbydeveloper\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dome9\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/dome9\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"donovapub\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/donovapub\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"easyterritory\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/easyterritory\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"edevtech\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/edevtech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"egress\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/egress\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eip\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/eip\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eip-eipower\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/eip-eipower\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elastacloud\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/elastacloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eloquera\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/eloquera\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eperi\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/eperi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ESET.FileSecurity\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/ESET.FileSecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eurotech\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/eurotech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"exit-games\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/exit-games\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"expertime\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/expertime\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"filebridge\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/filebridge\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"flexerasoftware\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/flexerasoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"forscene\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/forscene\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fortycloud\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/fortycloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fw\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/fw\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"g-data-software\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/g-data-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"greathorn\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/greathorn\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"haivision\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/haivision\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"halobicloud\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/halobicloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iamcloud\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/iamcloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ibabs-eu\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/ibabs-eu\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"imaginecommunications\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/imaginecommunications\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"imc\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/imc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"imperva\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/imperva\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"incredibuild\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/incredibuild\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"informatica\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/informatica\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infostrat\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/infostrat\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intel\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/intel\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ishlangu-load-balancer-adc\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/ishlangu-load-balancer-adc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jedox\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/jedox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jitterbit_integration\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/jitterbit_integration\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kepion\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/kepion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kollective\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/kollective\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"le\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/le\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lieberlieber\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/lieberlieber\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"LocalTest.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/LocalTest.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"logi-analytics\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/logi-analytics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"loginpeople\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/loginpeople\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"luxoft\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/luxoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"magelia\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/magelia\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"manageengine\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/manageengine\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mariadb\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/mariadb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mediazenie\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/mediazenie\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"memsql\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/memsql\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mendix\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/mendix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mentalnotes\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/mentalnotes\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mesosphere\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/mesosphere\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-ads\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-ads\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-r-products\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-r-products\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.Internal\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.Internal\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Test\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.SiteRecovery.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.OSTCExtensions.Test\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.OSTCExtensions.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Install\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Install\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Internal\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Internal\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.PaaS\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.PaaS\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Preview\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Preview\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Release.Test\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Release.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Telemetry\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Telemetry\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Test.0\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Test.0\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Test.1\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Test.1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Test0\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Test0\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Test2\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Test2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Test3\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Test3\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.UtcTest\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.UtcTest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Wmf\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Wmf\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Wmf4Test\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Wmf4Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Wmf5\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Wmf5\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.WmfRTM\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.WmfRTM\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.ETWTraceListenerService\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.Azure.ETWTraceListenerService\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.ServiceProfiler\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.ServiceProfiler\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.ServiceProfiler.Test\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.ServiceProfiler.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftWindowsServerRemoteDesktop\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerRemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"miracl_linux\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/miracl_linux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mokxa-technologies\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/mokxa-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"msrazuresapservices\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/msrazuresapservices\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nasuni\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/nasuni\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"new-signature\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/new-signature\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nextlimit\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/nextlimit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nexus\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/nexus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nuxeo\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/nuxeo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"officeclipsuite\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/officeclipsuite\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"op5\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/op5\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"openmeap\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/openmeap\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"opennebulasystems\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/opennebulasystems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"opentext\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/opentext\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"panzura-file-system\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/panzura-file-system\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pointmatter\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/pointmatter\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"predictionio\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/predictionio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"predixion\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/predixion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"prime-strategy\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/prime-strategy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"primestream\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/primestream\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ptv_group\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/ptv_group\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pxlag_swiss\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/pxlag_swiss\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"quasardb\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/quasardb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"RedHat\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/RedHat\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rocketsoftware\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/rocketsoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rocket_software\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/rocket_software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"saama\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/saama\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scalebase\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/scalebase\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"searchblox\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/searchblox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sensorberg\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/sensorberg\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"servoy\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/servoy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"shavlik\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/shavlik\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"snip2code\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/snip2code\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stonefly\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/stonefly\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"storreduce\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/storreduce\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stratalux\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/stratalux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sunview-software\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/sunview-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"talon\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/talon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tentity\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/tentity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.HP.AppDefender\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.HP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity2\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.TrendMicro.DeepSecurity2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity3\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.TrendMicro.DeepSecurity3\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test1.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test1.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thinkboxsoftware\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/thinkboxsoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"topdesk\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/topdesk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test2\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/TrendMicro.DeepSecurity.Test2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unidesk\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/unidesk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unidesk-corp\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/unidesk-corp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vbot\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/vbot\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vecompsoftware\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/vecompsoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vircom\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/vircom\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"virtualworks\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/virtualworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vmturbo\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/vmturbo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Vormetric.VormetricTransparentEncryption\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Vormetric.VormetricTransparentEncryption\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"WAD-VMSS.Test\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/WAD-VMSS.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"WAD2AI.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/WAD2AI.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"WADVMSS.Test\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/WADVMSS.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"waratek\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/waratek\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"warewolf-esb\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/warewolf-esb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"watchfulsoftware\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/watchfulsoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xebialabs\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/xebialabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xmpro\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/xmpro\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xrm\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/xrm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zementis\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/zementis\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/zend\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zoomdata\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/zoomdata\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "1033" + "76443" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3316,7 +3368,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3f4d94e4-9edc-42da-8313-07879e6a69c4" + "155180eb-134a-4530-931b-9aa3829d6b95" ], "Cache-Control": [ "no-cache" @@ -3326,28 +3378,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14946" + "14943" ], "x-ms-correlation-request-id": [ - "eb734bd4-8160-4f4b-b7f9-4f09212344d8" + "558519e1-f33f-4a5e-8d28-211f93122863" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T103052Z:eb734bd4-8160-4f4b-b7f9-4f09212344d8" + "NORTHCENTRALUS:20160220T144351Z:558519e1-f33f-4a5e-8d28-211f93122863" ], "Date": [ - "Tue, 16 Feb 2016 10:30:51 GMT" + "Sat, 20 Feb 2016 14:43:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/BGInfo/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9CR0luZm8vdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d92685eb-c032-4fda-8ce7-f90d3a67bf86" + "78d2d2b5-c722-43a7-b4f8-bc0d0d9ea3e2" ], "accept-language": [ "en-US" @@ -3356,10 +3408,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2.1\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/2.1\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"CustomScriptExtension\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"JsonADDomainExtension\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/JsonADDomainExtension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"VMAccessAgent\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "252" + "1033" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3374,7 +3426,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c90cbe44-e617-44bc-abbd-c19fffb52abd" + "9327d2d0-e03d-497f-9e69-32e49d9a1973" ], "Cache-Control": [ "no-cache" @@ -3384,34 +3436,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14945" + "14942" ], "x-ms-correlation-request-id": [ - "e63b4669-2f5b-4543-80f3-4e5cbb02292a" + "b7cf9036-a2a7-4647-9e7c-eb7f5a4410c5" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T103052Z:e63b4669-2f5b-4543-80f3-4e5cbb02292a" + "NORTHCENTRALUS:20160220T144352Z:b7cf9036-a2a7-4647-9e7c-eb7f5a4410c5" ], "Date": [ - "Tue, 16 Feb 2016 10:30:51 GMT" + "Sat, 20 Feb 2016 14:43:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110/extensions/BGInfo?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczYxMTAvZXh0ZW5zaW9ucy9CR0luZm8/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true\r\n }\r\n}", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/BGInfo/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9CR0luZm8vdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "187" - ], "x-ms-client-request-id": [ - "aec9adf4-7ee7-43cf-a9e8-825d89a6c783" + "1ba9823d-00d2-40b9-bf53-d9ccb836dcff" ], "accept-language": [ "en-US" @@ -3420,10 +3466,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110/extensions/BGInfo\",\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2.1\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/2.1\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "475" + "252" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3434,17 +3480,11 @@ "Pragma": [ "no-cache" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/e87df0bc-ebc2-4ba4-89c0-348f99fd4c8e?api-version=2015-06-15" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" - ], "x-ms-request-id": [ - "e87df0bc-ebc2-4ba4-89c0-348f99fd4c8e" + "251051ce-076c-4749-bdde-ca1ac1d9a924" ], "Cache-Control": [ "no-cache" @@ -3453,35 +3493,47 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14941" ], "x-ms-correlation-request-id": [ - "5bcb39e7-f1d9-4105-8723-072ccf19049e" + "ac470dc7-6f5c-4afb-a311-ca717f67330e" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T103058Z:5bcb39e7-f1d9-4105-8723-072ccf19049e" + "NORTHCENTRALUS:20160220T144352Z:ac470dc7-6f5c-4afb-a311-ca717f67330e" ], "Date": [ - "Tue, 16 Feb 2016 10:30:58 GMT" + "Sat, 20 Feb 2016 14:43:51 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/e87df0bc-ebc2-4ba4-89c0-348f99fd4c8e?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZTg3ZGYwYmMtZWJjMi00YmE0LTg5YzAtMzQ4Zjk5ZmQ0YzhlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Compute/virtualMachines/vmcrptestps1075/extensions/BGInfo?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczEwNzUvZXh0ZW5zaW9ucy9CR0luZm8/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true\r\n }\r\n}", "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "187" + ], + "x-ms-client-request-id": [ + "6a383a72-9eb7-4152-ae60-8d54be34f215" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"e87df0bc-ebc2-4ba4-89c0-348f99fd4c8e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T11:30:57.0112925+01:00\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Compute/virtualMachines/vmcrptestps1075/extensions/BGInfo\",\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "475" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3492,14 +3544,17 @@ "Pragma": [ "no-cache" ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/fb69ad5e-5611-4077-b015-77864b5f25a5?api-version=2015-06-15" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "846f1d52-c8db-42f2-a45d-e15b59a221ab" + "fb69ad5e-5611-4077-b015-77864b5f25a5" ], "Cache-Control": [ "no-cache" @@ -3508,24 +3563,24 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14944" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" ], "x-ms-correlation-request-id": [ - "6c5b0502-2f8d-4794-95f3-44d7f066fa07" + "b83d7e34-a49f-418f-b868-04d37cd35901" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T103129Z:6c5b0502-2f8d-4794-95f3-44d7f066fa07" + "NORTHCENTRALUS:20160220T144410Z:b83d7e34-a49f-418f-b868-04d37cd35901" ], "Date": [ - "Tue, 16 Feb 2016 10:31:29 GMT" + "Sat, 20 Feb 2016 14:44:10 GMT" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/e87df0bc-ebc2-4ba4-89c0-348f99fd4c8e?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZTg3ZGYwYmMtZWJjMi00YmE0LTg5YzAtMzQ4Zjk5ZmQ0YzhlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/fb69ad5e-5611-4077-b015-77864b5f25a5?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZmI2OWFkNWUtNTYxMS00MDc3LWIwMTUtNzc4NjRiNWYyNWE1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3533,7 +3588,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"e87df0bc-ebc2-4ba4-89c0-348f99fd4c8e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T11:30:57.0112925+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"fb69ad5e-5611-4077-b015-77864b5f25a5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-20T15:44:09.2101752+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3551,10 +3606,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "44be0cbf-d39b-414d-8099-d6484df1834c" + "90f81541-dd8c-4742-882b-e3d0898b80da" ], "Cache-Control": [ "no-cache" @@ -3564,23 +3619,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14942" + "14940" ], "x-ms-correlation-request-id": [ - "027478ab-43cd-432f-8b3b-14a391d9e1dd" + "c851f889-8ac2-4395-9f65-1bd2c0731377" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T103159Z:027478ab-43cd-432f-8b3b-14a391d9e1dd" + "NORTHCENTRALUS:20160220T144440Z:c851f889-8ac2-4395-9f65-1bd2c0731377" ], "Date": [ - "Tue, 16 Feb 2016 10:31:59 GMT" + "Sat, 20 Feb 2016 14:44:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/e87df0bc-ebc2-4ba4-89c0-348f99fd4c8e?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZTg3ZGYwYmMtZWJjMi00YmE0LTg5YzAtMzQ4Zjk5ZmQ0YzhlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/fb69ad5e-5611-4077-b015-77864b5f25a5?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZmI2OWFkNWUtNTYxMS00MDc3LWIwMTUtNzc4NjRiNWYyNWE1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3588,10 +3643,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"e87df0bc-ebc2-4ba4-89c0-348f99fd4c8e\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-02-16T11:30:57.0112925+01:00\",\r\n \"endTime\": \"2016-02-16T11:32:08.948772+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"fb69ad5e-5611-4077-b015-77864b5f25a5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-20T15:44:09.2101752+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "190" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3606,10 +3661,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "f27d6c9b-476c-4ebf-9f5f-8de7ecb382fd" + "02a45d56-fe3b-4a54-b48c-222fc93aa444" ], "Cache-Control": [ "no-cache" @@ -3622,20 +3677,20 @@ "14941" ], "x-ms-correlation-request-id": [ - "82a0ec1e-d2b9-49ff-924b-20cf3cdbe9d1" + "341678bf-6cea-41c8-b1a2-ba9caed73113" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T103229Z:82a0ec1e-d2b9-49ff-924b-20cf3cdbe9d1" + "NORTHCENTRALUS:20160220T144510Z:341678bf-6cea-41c8-b1a2-ba9caed73113" ], "Date": [ - "Tue, 16 Feb 2016 10:32:29 GMT" + "Sat, 20 Feb 2016 14:45:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110/extensions/BGInfo?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczYxMTAvZXh0ZW5zaW9ucy9CR0luZm8/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/fb69ad5e-5611-4077-b015-77864b5f25a5?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZmI2OWFkNWUtNTYxMS00MDc3LWIwMTUtNzc4NjRiNWYyNWE1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3643,10 +3698,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110/extensions/BGInfo\",\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"fb69ad5e-5611-4077-b015-77864b5f25a5\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-02-20T15:44:09.2101752+01:00\",\r\n \"endTime\": \"2016-02-20T15:45:23.1008473+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "476" + "191" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3661,10 +3716,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "7e263247-181a-48aa-bd73-d1aee9f05793" + "4b0451b8-85c4-4437-93ec-752e569ea514" ], "Cache-Control": [ "no-cache" @@ -3677,37 +3732,31 @@ "14940" ], "x-ms-correlation-request-id": [ - "1ee35ca2-7448-4029-b501-6482f7818101" + "1f611387-c8b8-4480-86c8-8a3011665c3a" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T103230Z:1ee35ca2-7448-4029-b501-6482f7818101" + "NORTHCENTRALUS:20160220T144540Z:1f611387-c8b8-4480-86c8-8a3011665c3a" ], "Date": [ - "Tue, 16 Feb 2016 10:32:30 GMT" + "Sat, 20 Feb 2016 14:45:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110?$expand=instanceView&api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczYxMTA/JGV4cGFuZD1pbnN0YW5jZVZpZXcmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Compute/virtualMachines/vmcrptestps1075/extensions/BGInfo?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczEwNzUvZXh0ZW5zaW9ucy9CR0luZm8/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "205b6768-8777-419f-a4d4-5be5d10d5dd0" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"75fe4dc3-f01d-44b5-ba3e-1fc40cd3c7b6\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\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\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6110.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6110.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6110.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic0crptestps6110\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic1crptestps6110\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.7.1198.735\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"GuestAgent is running and accepting new configurations.\",\r\n \"time\": \"2016-02-16T11:32:30+01:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": [\r\n {\r\n \"type\": \"Microsoft.Compute.BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"Plugin enabled (name: Microsoft.Compute.BGInfo, version: 2.1).\"\r\n }\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"osDisk\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T11:30:57.4331541+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T11:30:57.5112748+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T11:30:57.5112748+01:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"extensions\": [\r\n {\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute.BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"Plugin enabled (name: Microsoft.Compute.BGInfo, version: 2.1).\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T11:32:08.8862816+01:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110/extensions/BGInfo\",\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110\",\r\n \"name\": \"vmcrptestps6110\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Compute/virtualMachines/vmcrptestps1075/extensions/BGInfo\",\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "5535" + "476" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3722,10 +3771,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "544b483c-a596-4f16-a6d8-037676c6437d" + "e0cff2fe-bab3-4dcd-9cf4-76b434899151" ], "Cache-Control": [ "no-cache" @@ -3735,28 +3784,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14936" + "14939" ], "x-ms-correlation-request-id": [ - "7182c6b4-cca3-43d2-8829-ccd10e940797" + "b5561273-c37f-4c93-8d7f-efcd0c8fe026" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T103231Z:7182c6b4-cca3-43d2-8829-ccd10e940797" + "NORTHCENTRALUS:20160220T144540Z:b5561273-c37f-4c93-8d7f-efcd0c8fe026" ], "Date": [ - "Tue, 16 Feb 2016 10:32:30 GMT" + "Sat, 20 Feb 2016 14:45:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110?$expand=instanceView&api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczYxMTA/JGV4cGFuZD1pbnN0YW5jZVZpZXcmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Compute/virtualMachines/vmcrptestps1075?$expand=instanceView&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczEwNzU/JGV4cGFuZD1pbnN0YW5jZVZpZXcmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5256851c-e2c2-422f-aafc-38e8cb10a9e9" + "97550430-e024-4327-8dd2-debabf15e939" ], "accept-language": [ "en-US" @@ -3765,10 +3814,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"75fe4dc3-f01d-44b5-ba3e-1fc40cd3c7b6\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\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\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6110.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6110.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6110.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic0crptestps6110\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic1crptestps6110\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.7.1198.735\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"GuestAgent is running and accepting new configurations.\",\r\n \"time\": \"2016-02-16T11:33:00+01:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": [\r\n {\r\n \"type\": \"Microsoft.Compute.BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"Plugin enabled (name: Microsoft.Compute.BGInfo, version: 2.1).\"\r\n }\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"osDisk\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T11:30:57.4331541+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T11:30:57.5112748+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T11:30:57.5112748+01:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"extensions\": [\r\n {\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute.BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"Plugin enabled (name: Microsoft.Compute.BGInfo, version: 2.1).\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T11:32:08.8862816+01:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110/extensions/BGInfo\",\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110\",\r\n \"name\": \"vmcrptestps6110\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"595913b8-fe36-48f2-8db8-0a7f55b40f66\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\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\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1075.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1075.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1075.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\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 \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Network/networkInterfaces/nic0crptestps1075\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Network/networkInterfaces/nic1crptestps1075\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.7.1198.735\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"GuestAgent is running and accepting new configurations.\",\r\n \"time\": \"2016-02-20T15:45:32+01:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": [\r\n {\r\n \"type\": \"Microsoft.Compute.BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"Plugin enabled (name: Microsoft.Compute.BGInfo, version: 2.1).\"\r\n }\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"osDisk\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-20T15:44:09.866442+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-20T15:44:09.975797+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-20T15:44:09.975797+01:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"extensions\": [\r\n {\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute.BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"Plugin enabled (name: Microsoft.Compute.BGInfo, version: 2.1).\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-20T15:45:22.8352213+01:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Compute/virtualMachines/vmcrptestps1075/extensions/BGInfo\",\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Compute/virtualMachines/vmcrptestps1075\",\r\n \"name\": \"vmcrptestps1075\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "5535" + "5532" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3783,10 +3832,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "2aff9af0-041e-4be3-a0c4-049e7edb6040" + "3bb79f24-1c14-405a-bad9-139235f744b1" ], "Cache-Control": [ "no-cache" @@ -3796,28 +3845,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14934" + "14935" ], "x-ms-correlation-request-id": [ - "e0c405ae-d954-493e-91a4-56687a16022f" + "a8504264-603f-40ed-9f45-8f5c1810442c" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T103301Z:e0c405ae-d954-493e-91a4-56687a16022f" + "NORTHCENTRALUS:20160220T144541Z:a8504264-603f-40ed-9f45-8f5c1810442c" ], "Date": [ - "Tue, 16 Feb 2016 10:33:00 GMT" + "Sat, 20 Feb 2016 14:45:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110?$expand=instanceView&api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczYxMTA/JGV4cGFuZD1pbnN0YW5jZVZpZXcmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Compute/virtualMachines/vmcrptestps1075?$expand=instanceView&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczEwNzU/JGV4cGFuZD1pbnN0YW5jZVZpZXcmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2f660814-52fe-49af-a6f2-8144f1913689" + "405646b5-388e-4ef7-885d-7eee51dfb03b" ], "accept-language": [ "en-US" @@ -3826,10 +3875,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"75fe4dc3-f01d-44b5-ba3e-1fc40cd3c7b6\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\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\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6110.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6110.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6110.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic0crptestps6110\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Network/networkInterfaces/nic1crptestps6110\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.7.1198.735\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"GuestAgent is running and accepting new configurations.\",\r\n \"time\": \"2016-02-16T11:36:38+01:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": [\r\n {\r\n \"type\": \"Microsoft.Azure.Diagnostics.IaaSDiagnostics\",\r\n \"typeHandlerVersion\": \"1.5.8.0\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"Diagnostics extension running\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring.AzureCATExtensionHandler\",\r\n \"typeHandlerVersion\": \"2.2.0.68\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Compute.BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"Plugin enabled (name: Microsoft.Compute.BGInfo, version: 2.1).\"\r\n }\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"osDisk\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T11:35:41.558148+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T11:35:41.558148+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T11:35:41.558148+01:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"extensions\": [\r\n {\r\n \"name\": \"AzureCATExtensionHandler\",\r\n \"type\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring.AzureCATExtensionHandler\",\r\n \"typeHandlerVersion\": \"2.2.0.68\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"deploymentId=8395ac26-34dd-4789-bf55-0bea8dd23bc7 roleInstance=_vmcrptestps6110\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute.BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"Plugin enabled (name: Microsoft.Compute.BGInfo, version: 2.1).\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"IaaSDiagnostics\",\r\n \"type\": \"Microsoft.Azure.Diagnostics.IaaSDiagnostics\",\r\n \"typeHandlerVersion\": \"1.5.8.0\",\r\n \"substatuses\": [\r\n {\r\n \"code\": \"ComponentStatus//succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"N/A\"\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"Diagnostic extension set successfully\",\r\n \"time\": \"2016-02-16T11:36:13+01:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T11:36:27.0893874+01:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"type\": \"AzureCATExtensionHandler\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_DS2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.2\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.2\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"stocrptestps6110.hour.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"stocrptestps6110.minute.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps61102\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps61102.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110/extensions/AzureCATExtensionHandler\",\r\n \"name\": \"AzureCATExtensionHandler\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110/extensions/BGInfo\",\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Azure.Diagnostics\",\r\n \"type\": \"IaaSDiagnostics\",\r\n \"typeHandlerVersion\": \"1.5\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yKF9Ub3RhbClcJSBQcm9jZXNzb3IgVGltZSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yIEluZm9ybWF0aW9uKF9Ub3RhbClcUHJvY2Vzc29yIEZyZXF1ZW5jeSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XEF2YWlsYWJsZSBCeXRlcyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcVENQdjZcU2VnbWVudHMgUmV0cmFuc21pdHRlZC9zZWMiIHNhbXBsZVJhdGU9IlBUMU0iIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFRDUHY0XFNlZ21lbnRzIFJldHJhbnNtaXR0ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrIEludGVyZmFjZSgqKVxCeXRlcyBTZW50L3NlYyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29yayBJbnRlcmZhY2UoKilcQnl0ZXMgUmVjZWl2ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110/extensions/IaaSDiagnostics\",\r\n \"name\": \"IaaSDiagnostics\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110\",\r\n \"name\": \"vmcrptestps6110\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"595913b8-fe36-48f2-8db8-0a7f55b40f66\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\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\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1075.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1075.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1075.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\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 \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Network/networkInterfaces/nic0crptestps1075\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Network/networkInterfaces/nic1crptestps1075\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.7.1198.735\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"GuestAgent is running and accepting new configurations.\",\r\n \"time\": \"2016-02-20T15:46:02+01:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": [\r\n {\r\n \"type\": \"Microsoft.Compute.BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"Plugin enabled (name: Microsoft.Compute.BGInfo, version: 2.1).\"\r\n }\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"osDisk\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-20T15:44:09.866442+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-20T15:44:09.975797+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-20T15:44:09.975797+01:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"extensions\": [\r\n {\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute.BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"Plugin enabled (name: Microsoft.Compute.BGInfo, version: 2.1).\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-20T15:45:22.8352213+01:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Compute/virtualMachines/vmcrptestps1075/extensions/BGInfo\",\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Compute/virtualMachines/vmcrptestps1075\",\r\n \"name\": \"vmcrptestps1075\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "11342" + "5532" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3844,10 +3893,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "b0c4b5cd-2f8a-4a72-84b0-f92f70e04d04" + "f3baf9d9-cfe1-4a59-b819-0987cea74049" ], "Cache-Control": [ "no-cache" @@ -3857,40 +3906,43 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14921" + "14932" ], "x-ms-correlation-request-id": [ - "2d3fe392-bf2d-440b-aed2-4773b5da44dc" + "57c93c9f-7d0a-40ee-8a49-ce161e1b3e9f" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T103644Z:2d3fe392-bf2d-440b-aed2-4773b5da44dc" + "NORTHCENTRALUS:20160220T144610Z:57c93c9f-7d0a-40ee-8a49-ce161e1b3e9f" ], "Date": [ - "Tue, 16 Feb 2016 10:36:44 GMT" + "Sat, 20 Feb 2016 14:46:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Compute/virtualMachines/vmcrptestps1075?$expand=instanceView&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczEwNzU/JGV4cGFuZD1pbnN0YW5jZVZpZXcmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4f76885d-5862-428f-85a8-152308296f6b" + "cdf0c438-496f-454d-b6b7-dd95014eb543" + ], + "accept-language": [ + "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/ase/providers/Microsoft.Storage/storageAccounts/ase7745\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"ase7745\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-08-22T12:09:54.6487474Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ase7745.blob.core.windows.net/\",\r\n \"file\": \"https://ase7745.file.core.windows.net/\",\r\n \"queue\": \"https://ase7745.queue.core.windows.net/\",\r\n \"table\": \"https://ase7745.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/benolwtlz6gcrtv2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"benolwtlz6gcrtv2\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-02T15:37:42.4160913Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://benolwtlz6gcrtv2.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/sapresourcegroup/providers/Microsoft.Storage/storageAccounts/de8da241d96f400ba8791029\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"de8da241d96f400ba8791029\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-09-18T13:22:47.5628749Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://de8da241d96f400ba8791029.blob.core.windows.net/\",\r\n \"file\": \"https://de8da241d96f400ba8791029.file.core.windows.net/\",\r\n \"queue\": \"https://de8da241d96f400ba8791029.queue.core.windows.net/\",\r\n \"table\": \"https://de8da241d96f400ba8791029.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/group-4/providers/Microsoft.Storage/storageAccounts/dsdevstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"dsdevstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-22T21:10:41.790448Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://dsdevstorage.blob.core.windows.net/\",\r\n \"file\": \"https://dsdevstorage.file.core.windows.net/\",\r\n \"queue\": \"https://dsdevstorage.queue.core.windows.net/\",\r\n \"table\": \"https://dsdevstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduscherp/providers/Microsoft.Storage/storageAccounts/erpio6r4un3ewfnm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"erpio6r4un3ewfnm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-08T12:41:16.6105852Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://erpio6r4un3ewfnm.blob.core.windows.net/\",\r\n \"file\": \"https://erpio6r4un3ewfnm.file.core.windows.net/\",\r\n \"queue\": \"https://erpio6r4un3ewfnm.queue.core.windows.net/\",\r\n \"table\": \"https://erpio6r4un3ewfnm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmpremstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmpremstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:21.7378841Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmpremstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmpremstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmpremstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmpremstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmstdstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmstdstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:22.2160008Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmstdstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmstdstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmstdstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmstdstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-test2/providers/Microsoft.Storage/storageAccounts/gortestacc2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gortestacc2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-08T21:18:17.9028388Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gortestacc2.blob.core.windows.net/\",\r\n \"file\": \"https://gortestacc2.file.core.windows.net/\",\r\n \"queue\": \"https://gortestacc2.queue.core.windows.net/\",\r\n \"table\": \"https://gortestacc2.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-04-16T13:50:52.0015725Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspacepremium\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspacepremium\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-10-23T10:22:10.7216809Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspacepremium.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvmtest/providers/Microsoft.Storage/storageAccounts/lvmtestspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmtestspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T16:56:41.5005505Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmtestspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmtestspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmtestspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmtestspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-eml2/providers/Microsoft.Storage/storageAccounts/rgeml2stacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"rgeml2stacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T08:00:29.8670815Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://rgeml2stacc.blob.core.windows.net/\",\r\n \"file\": \"https://rgeml2stacc.file.core.windows.net/\",\r\n \"queue\": \"https://rgeml2stacc.queue.core.windows.net/\",\r\n \"table\": \"https://rgeml2stacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/sapcalrg/providers/Microsoft.Storage/storageAccounts/sapcalrg8522\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"sapcalrg8522\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-28T06:54:16.0456896Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sapcalrg8522.blob.core.windows.net/\",\r\n \"file\": \"https://sapcalrg8522.file.core.windows.net/\",\r\n \"queue\": \"https://sapcalrg8522.queue.core.windows.net/\",\r\n \"table\": \"https://sapcalrg8522.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/saperpdemo859644\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"saperpdemo859644\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-01-26T11:02:43.8634331Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saperpdemo859644.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1prstacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1prstacc\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-12-10T17:35:29.0415914Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1prstacc.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1ststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1ststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-10T17:36:26.4810072Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1ststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saphana1ststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saphana1ststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saphana1ststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-linux-docu-tests/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saplinuxdocuststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-24T09:25:04.4473982Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-linux-docu-tests-we/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststaccwe\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saplinuxdocuststaccwe\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-25T13:11:50.5477032Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststaccwe.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststaccwe.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststaccwe.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststaccwe.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/sappseduscsape012612030\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"sappseduscsape012612030\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2016-01-26T11:03:56.0307387Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sappseduscsape012612030.blob.core.windows.net/\",\r\n \"file\": \"https://sappseduscsape012612030.file.core.windows.net/\",\r\n \"queue\": \"https://sappseduscsape012612030.queue.core.windows.net/\",\r\n \"table\": \"https://sappseduscsape012612030.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"westeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/saptesiarm/providers/Microsoft.Storage/storageAccounts/saptesiarm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saptesiarm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-08-27T12:13:00.4049179Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptesiarm.blob.core.windows.net/\",\r\n \"file\": \"https://saptesiarm.file.core.windows.net/\",\r\n \"queue\": \"https://saptesiarm.queue.core.windows.net/\",\r\n \"table\": \"https://saptesiarm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/saptestrajrg/providers/Microsoft.Storage/storageAccounts/saptestrajrg4518\",\r\n \"location\": \"westus\",\r\n \"name\": \"saptestrajrg4518\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-07-22T19:24:21.1065762Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptestrajrg4518.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Storage/storageAccounts/stocrptestps6110\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps6110\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-16T10:24:47.5385966Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps6110.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/temptestsap\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"temptestsap\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-10T14:03:58.3799849Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://temptestsap.blob.core.windows.net/\",\r\n \"file\": \"https://temptestsap.file.core.windows.net/\",\r\n \"queue\": \"https://temptestsap.queue.core.windows.net/\",\r\n \"table\": \"https://temptestsap.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"595913b8-fe36-48f2-8db8-0a7f55b40f66\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\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\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1075.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1075.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1075.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\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 \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Network/networkInterfaces/nic0crptestps1075\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Network/networkInterfaces/nic1crptestps1075\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.7.1198.735\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"GuestAgent is running and accepting new configurations.\",\r\n \"time\": \"2016-02-20T15:49:46+01:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": [\r\n {\r\n \"type\": \"Microsoft.Azure.Diagnostics.IaaSDiagnostics\",\r\n \"typeHandlerVersion\": \"1.5.8.0\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"Diagnostics extension running\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring.AzureCATExtensionHandler\",\r\n \"typeHandlerVersion\": \"2.2.0.68\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Compute.BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"Plugin enabled (name: Microsoft.Compute.BGInfo, version: 2.1).\"\r\n }\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"osDisk\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-20T15:48:58.7573542+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-20T15:48:58.7573542+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-20T15:48:58.7573542+01:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"extensions\": [\r\n {\r\n \"name\": \"AzureCATExtensionHandler\",\r\n \"type\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring.AzureCATExtensionHandler\",\r\n \"typeHandlerVersion\": \"2.2.0.68\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"deploymentId=00fc80b1-398e-46b4-a2c9-09ad9490784f roleInstance=_vmcrptestps1075\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute.BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"Plugin enabled (name: Microsoft.Compute.BGInfo, version: 2.1).\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"IaaSDiagnostics\",\r\n \"type\": \"Microsoft.Azure.Diagnostics.IaaSDiagnostics\",\r\n \"typeHandlerVersion\": \"1.5.8.0\",\r\n \"substatuses\": [\r\n {\r\n \"code\": \"ComponentStatus//succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"N/A\"\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"Diagnostic extension set successfully\",\r\n \"time\": \"2016-02-20T15:49:36+01:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-20T15:49:51.663728+01:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"type\": \"AzureCATExtensionHandler\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_DS2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.2\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.2\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"stocrptestps1075.hour.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"stocrptestps1075.minute.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps10752\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps10752.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Compute/virtualMachines/vmcrptestps1075/extensions/AzureCATExtensionHandler\",\r\n \"name\": \"AzureCATExtensionHandler\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Compute/virtualMachines/vmcrptestps1075/extensions/BGInfo\",\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Azure.Diagnostics\",\r\n \"type\": \"IaaSDiagnostics\",\r\n \"typeHandlerVersion\": \"1.5\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yKF9Ub3RhbClcJSBQcm9jZXNzb3IgVGltZSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yIEluZm9ybWF0aW9uKF9Ub3RhbClcUHJvY2Vzc29yIEZyZXF1ZW5jeSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XEF2YWlsYWJsZSBCeXRlcyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcVENQdjZcU2VnbWVudHMgUmV0cmFuc21pdHRlZC9zZWMiIHNhbXBsZVJhdGU9IlBUMU0iIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFRDUHY0XFNlZ21lbnRzIFJldHJhbnNtaXR0ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrIEludGVyZmFjZSgqKVxCeXRlcyBTZW50L3NlYyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29yayBJbnRlcmZhY2UoKilcQnl0ZXMgUmVjZWl2ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Compute/virtualMachines/vmcrptestps1075/extensions/IaaSDiagnostics\",\r\n \"name\": \"IaaSDiagnostics\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Compute/virtualMachines/vmcrptestps1075\",\r\n \"name\": \"vmcrptestps1075\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "14858" + "11344" ], "Content-Type": [ - "application/json" + "application/json; charset=utf-8" ], "Expires": [ "-1" @@ -3898,51 +3950,54 @@ "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" + ], "x-ms-request-id": [ - "9a44c36e-1e2f-4d5f-91cf-0765d8214227" + "567fbfad-b385-4993-aeaf-9aaf0119d1c5" ], "Cache-Control": [ "no-cache" ], "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14915" ], "x-ms-correlation-request-id": [ - "9a44c36e-1e2f-4d5f-91cf-0765d8214227" + "b4a17c18-2267-415c-9979-35c0b4a5712f" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T103232Z:9a44c36e-1e2f-4d5f-91cf-0765d8214227" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "NORTHCENTRALUS:20160220T145000Z:b4a17c18-2267-415c-9979-35c0b4a5712f" ], "Date": [ - "Tue, 16 Feb 2016 10:32:32 GMT" + "Sat, 20 Feb 2016 14:49:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d98902f4-2d1a-4a1e-803e-c5b91503fdae" + "c8518942-4c4b-41c2-a8c2-5126d7126c9e" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/ase/providers/Microsoft.Storage/storageAccounts/ase7745\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"ase7745\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-08-22T12:09:54.6487474Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ase7745.blob.core.windows.net/\",\r\n \"file\": \"https://ase7745.file.core.windows.net/\",\r\n \"queue\": \"https://ase7745.queue.core.windows.net/\",\r\n \"table\": \"https://ase7745.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/benolwtlz6gcrtv2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"benolwtlz6gcrtv2\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-02T15:37:42.4160913Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://benolwtlz6gcrtv2.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/sapresourcegroup/providers/Microsoft.Storage/storageAccounts/de8da241d96f400ba8791029\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"de8da241d96f400ba8791029\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-09-18T13:22:47.5628749Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://de8da241d96f400ba8791029.blob.core.windows.net/\",\r\n \"file\": \"https://de8da241d96f400ba8791029.file.core.windows.net/\",\r\n \"queue\": \"https://de8da241d96f400ba8791029.queue.core.windows.net/\",\r\n \"table\": \"https://de8da241d96f400ba8791029.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/group-4/providers/Microsoft.Storage/storageAccounts/dsdevstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"dsdevstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-22T21:10:41.790448Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://dsdevstorage.blob.core.windows.net/\",\r\n \"file\": \"https://dsdevstorage.file.core.windows.net/\",\r\n \"queue\": \"https://dsdevstorage.queue.core.windows.net/\",\r\n \"table\": \"https://dsdevstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduscherp/providers/Microsoft.Storage/storageAccounts/erpio6r4un3ewfnm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"erpio6r4un3ewfnm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-08T12:41:16.6105852Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://erpio6r4un3ewfnm.blob.core.windows.net/\",\r\n \"file\": \"https://erpio6r4un3ewfnm.file.core.windows.net/\",\r\n \"queue\": \"https://erpio6r4un3ewfnm.queue.core.windows.net/\",\r\n \"table\": \"https://erpio6r4un3ewfnm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmpremstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmpremstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:21.7378841Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmpremstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmpremstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmpremstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmpremstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmstdstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmstdstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:22.2160008Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmstdstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmstdstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmstdstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmstdstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-test2/providers/Microsoft.Storage/storageAccounts/gortestacc2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gortestacc2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-08T21:18:17.9028388Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gortestacc2.blob.core.windows.net/\",\r\n \"file\": \"https://gortestacc2.file.core.windows.net/\",\r\n \"queue\": \"https://gortestacc2.queue.core.windows.net/\",\r\n \"table\": \"https://gortestacc2.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-04-16T13:50:52.0015725Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspacepremium\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspacepremium\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-10-23T10:22:10.7216809Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspacepremium.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvmtest/providers/Microsoft.Storage/storageAccounts/lvmtestspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmtestspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T16:56:41.5005505Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmtestspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmtestspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmtestspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmtestspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-eml2/providers/Microsoft.Storage/storageAccounts/rgeml2stacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"rgeml2stacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T08:00:29.8670815Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://rgeml2stacc.blob.core.windows.net/\",\r\n \"file\": \"https://rgeml2stacc.file.core.windows.net/\",\r\n \"queue\": \"https://rgeml2stacc.queue.core.windows.net/\",\r\n \"table\": \"https://rgeml2stacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/sapcalrg/providers/Microsoft.Storage/storageAccounts/sapcalrg8522\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"sapcalrg8522\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-28T06:54:16.0456896Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sapcalrg8522.blob.core.windows.net/\",\r\n \"file\": \"https://sapcalrg8522.file.core.windows.net/\",\r\n \"queue\": \"https://sapcalrg8522.queue.core.windows.net/\",\r\n \"table\": \"https://sapcalrg8522.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/saperpdemo859644\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"saperpdemo859644\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-01-26T11:02:43.8634331Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saperpdemo859644.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1prstacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1prstacc\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-12-10T17:35:29.0415914Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1prstacc.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1ststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1ststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-10T17:36:26.4810072Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1ststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saphana1ststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saphana1ststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saphana1ststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-linux-docu-tests/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saplinuxdocuststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-24T09:25:04.4473982Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-linux-docu-tests-we/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststaccwe\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saplinuxdocuststaccwe\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-25T13:11:50.5477032Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststaccwe.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststaccwe.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststaccwe.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststaccwe.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/sappseduscsape012612030\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"sappseduscsape012612030\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2016-01-26T11:03:56.0307387Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sappseduscsape012612030.blob.core.windows.net/\",\r\n \"file\": \"https://sappseduscsape012612030.file.core.windows.net/\",\r\n \"queue\": \"https://sappseduscsape012612030.queue.core.windows.net/\",\r\n \"table\": \"https://sappseduscsape012612030.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"westeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/saptesiarm/providers/Microsoft.Storage/storageAccounts/saptesiarm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saptesiarm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-08-27T12:13:00.4049179Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptesiarm.blob.core.windows.net/\",\r\n \"file\": \"https://saptesiarm.file.core.windows.net/\",\r\n \"queue\": \"https://saptesiarm.queue.core.windows.net/\",\r\n \"table\": \"https://saptesiarm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/saptestrajrg/providers/Microsoft.Storage/storageAccounts/saptestrajrg4518\",\r\n \"location\": \"westus\",\r\n \"name\": \"saptestrajrg4518\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-07-22T19:24:21.1065762Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptestrajrg4518.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Storage/storageAccounts/stocrptestps6110\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps6110\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-16T10:24:47.5385966Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps6110.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Storage/storageAccounts/stocrptestps61102\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps61102\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T10:32:33.9540784Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps61102.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps61102.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps61102.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps61102.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/temptestsap\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"temptestsap\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-10T14:03:58.3799849Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://temptestsap.blob.core.windows.net/\",\r\n \"file\": \"https://temptestsap.file.core.windows.net/\",\r\n \"queue\": \"https://temptestsap.queue.core.windows.net/\",\r\n \"table\": \"https://temptestsap.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/benolwtlz6gcrtv2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"benolwtlz6gcrtv2\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-02T15:37:42.4160913Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://benolwtlz6gcrtv2.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/sapresourcegroup/providers/Microsoft.Storage/storageAccounts/de8da241d96f400ba8791029\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"de8da241d96f400ba8791029\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-09-18T13:22:47.5628749Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://de8da241d96f400ba8791029.blob.core.windows.net/\",\r\n \"file\": \"https://de8da241d96f400ba8791029.file.core.windows.net/\",\r\n \"queue\": \"https://de8da241d96f400ba8791029.queue.core.windows.net/\",\r\n \"table\": \"https://de8da241d96f400ba8791029.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/group-4/providers/Microsoft.Storage/storageAccounts/dsdevstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"dsdevstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-22T21:10:41.790448Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://dsdevstorage.blob.core.windows.net/\",\r\n \"file\": \"https://dsdevstorage.file.core.windows.net/\",\r\n \"queue\": \"https://dsdevstorage.queue.core.windows.net/\",\r\n \"table\": \"https://dsdevstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/seduscherp/providers/Microsoft.Storage/storageAccounts/erpio6r4un3ewfnm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"erpio6r4un3ewfnm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-08T12:41:16.6105852Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://erpio6r4un3ewfnm.blob.core.windows.net/\",\r\n \"file\": \"https://erpio6r4un3ewfnm.file.core.windows.net/\",\r\n \"queue\": \"https://erpio6r4un3ewfnm.queue.core.windows.net/\",\r\n \"table\": \"https://erpio6r4un3ewfnm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/fdfdfdf/providers/Microsoft.Storage/storageAccounts/fdfdfdf2537\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"fdfdfdf2537\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-17T10:07:55.1390685Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://fdfdfdf2537.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/fdfdfdf/providers/Microsoft.Storage/storageAccounts/fdfdfdf2925\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"fdfdfdf2925\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-17T10:07:55.715138Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://fdfdfdf2925.blob.core.windows.net/\",\r\n \"file\": \"https://fdfdfdf2925.file.core.windows.net/\",\r\n \"queue\": \"https://fdfdfdf2925.queue.core.windows.net/\",\r\n \"table\": \"https://fdfdfdf2925.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/glsresgroup1/providers/Microsoft.Storage/storageAccounts/glsstoraccount1\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"glsstoraccount1\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T12:37:47.5420067Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://glsstoraccount1.blob.core.windows.net/\",\r\n \"file\": \"https://glsstoraccount1.file.core.windows.net/\",\r\n \"queue\": \"https://glsstoraccount1.queue.core.windows.net/\",\r\n \"table\": \"https://glsstoraccount1.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmpremstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmpremstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:21.7378841Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmpremstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmpremstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmpremstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmpremstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmstdstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmstdstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:22.2160008Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmstdstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmstdstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmstdstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmstdstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-clust-arm/providers/Microsoft.Storage/storageAccounts/gorclustarmstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorclustarmstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-17T14:59:23.8666219Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorclustarmstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorclustarmstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorclustarmstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorclustarmstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {\r\n \"displayName\": \"StorageAccount\"\r\n },\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-test2/providers/Microsoft.Storage/storageAccounts/gortestacc2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gortestacc2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-08T21:18:17.9028388Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gortestacc2.blob.core.windows.net/\",\r\n \"file\": \"https://gortestacc2.file.core.windows.net/\",\r\n \"queue\": \"https://gortestacc2.queue.core.windows.net/\",\r\n \"table\": \"https://gortestacc2.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-04-16T13:50:52.0015725Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspacepremium\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspacepremium\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-10-23T10:22:10.7216809Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspacepremium.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/lvmtest/providers/Microsoft.Storage/storageAccounts/lvmtestspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmtestspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T16:56:41.5005505Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmtestspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmtestspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmtestspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmtestspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-eml2/providers/Microsoft.Storage/storageAccounts/rgeml2stacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"rgeml2stacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T08:00:29.8670815Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://rgeml2stacc.blob.core.windows.net/\",\r\n \"file\": \"https://rgeml2stacc.file.core.windows.net/\",\r\n \"queue\": \"https://rgeml2stacc.queue.core.windows.net/\",\r\n \"table\": \"https://rgeml2stacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/sapcalrg/providers/Microsoft.Storage/storageAccounts/sapcalrg8522\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"sapcalrg8522\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-28T06:54:16.0456896Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sapcalrg8522.blob.core.windows.net/\",\r\n \"file\": \"https://sapcalrg8522.file.core.windows.net/\",\r\n \"queue\": \"https://sapcalrg8522.queue.core.windows.net/\",\r\n \"table\": \"https://sapcalrg8522.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/saperpdemo859644\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"saperpdemo859644\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-01-26T11:02:43.8634331Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saperpdemo859644.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1prstacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1prstacc\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-12-10T17:35:29.0415914Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1prstacc.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1ststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1ststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-10T17:36:26.4810072Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1ststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saphana1ststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saphana1ststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saphana1ststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-sap-linux-docu-tests/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saplinuxdocuststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-24T09:25:04.4473982Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-sap-linux-docu-tests-we/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststaccwe\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saplinuxdocuststaccwe\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-25T13:11:50.5477032Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststaccwe.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststaccwe.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststaccwe.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststaccwe.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/sappseduscsape012612030\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"sappseduscsape012612030\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2016-01-26T11:03:56.0307387Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sappseduscsape012612030.blob.core.windows.net/\",\r\n \"file\": \"https://sappseduscsape012612030.file.core.windows.net/\",\r\n \"queue\": \"https://sappseduscsape012612030.queue.core.windows.net/\",\r\n \"table\": \"https://sappseduscsape012612030.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"westeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/saptesiarm/providers/Microsoft.Storage/storageAccounts/saptesiarm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saptesiarm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-08-27T12:13:00.4049179Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptesiarm.blob.core.windows.net/\",\r\n \"file\": \"https://saptesiarm.file.core.windows.net/\",\r\n \"queue\": \"https://saptesiarm.queue.core.windows.net/\",\r\n \"table\": \"https://saptesiarm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/saptestrajrg/providers/Microsoft.Storage/storageAccounts/saptestrajrg4518\",\r\n \"location\": \"westus\",\r\n \"name\": \"saptestrajrg4518\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-07-22T19:24:21.1065762Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptestrajrg4518.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Storage/storageAccounts/stocrptestps1075\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps1075\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-20T14:36:47.3817483Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps1075.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/temptestsap\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"temptestsap\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-10T14:03:58.3799849Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://temptestsap.blob.core.windows.net/\",\r\n \"file\": \"https://temptestsap.file.core.windows.net/\",\r\n \"queue\": \"https://temptestsap.queue.core.windows.net/\",\r\n \"table\": \"https://temptestsap.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-ts2-test/providers/Microsoft.Storage/storageAccounts/ts2cdlko5xtxpo3k\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"ts2cdlko5xtxpo3k\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-17T14:39:15.5207487Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ts2cdlko5xtxpo3k.blob.core.windows.net/\",\r\n \"file\": \"https://ts2cdlko5xtxpo3k.file.core.windows.net/\",\r\n \"queue\": \"https://ts2cdlko5xtxpo3k.queue.core.windows.net/\",\r\n \"table\": \"https://ts2cdlko5xtxpo3k.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "15546" + "17417" ], "Content-Type": [ "application/json" @@ -3954,7 +4009,7 @@ "no-cache" ], "x-ms-request-id": [ - "d3c584ce-0ee5-4c26-a48f-9c85d9f1b242" + "444b3469-ff8d-47bf-ab1c-28743c87a0cb" ], "Cache-Control": [ "no-cache" @@ -3964,40 +4019,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14989" ], "x-ms-correlation-request-id": [ - "d3c584ce-0ee5-4c26-a48f-9c85d9f1b242" + "444b3469-ff8d-47bf-ab1c-28743c87a0cb" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T103301Z:d3c584ce-0ee5-4c26-a48f-9c85d9f1b242" + "NORTHCENTRALUS:20160220T144542Z:444b3469-ff8d-47bf-ab1c-28743c87a0cb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Feb 2016 10:33:00 GMT" + "Sat, 20 Feb 2016 14:45:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a6e162e5-b52e-4bab-be11-18cc7afceff1" + "6012e3fe-35fe-4f1a-9d33-4a1b72374c8d" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/ase/providers/Microsoft.Storage/storageAccounts/ase7745\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"ase7745\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-08-22T12:09:54.6487474Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ase7745.blob.core.windows.net/\",\r\n \"file\": \"https://ase7745.file.core.windows.net/\",\r\n \"queue\": \"https://ase7745.queue.core.windows.net/\",\r\n \"table\": \"https://ase7745.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/benolwtlz6gcrtv2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"benolwtlz6gcrtv2\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-02T15:37:42.4160913Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://benolwtlz6gcrtv2.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/sapresourcegroup/providers/Microsoft.Storage/storageAccounts/de8da241d96f400ba8791029\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"de8da241d96f400ba8791029\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-09-18T13:22:47.5628749Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://de8da241d96f400ba8791029.blob.core.windows.net/\",\r\n \"file\": \"https://de8da241d96f400ba8791029.file.core.windows.net/\",\r\n \"queue\": \"https://de8da241d96f400ba8791029.queue.core.windows.net/\",\r\n \"table\": \"https://de8da241d96f400ba8791029.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/group-4/providers/Microsoft.Storage/storageAccounts/dsdevstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"dsdevstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-22T21:10:41.790448Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://dsdevstorage.blob.core.windows.net/\",\r\n \"file\": \"https://dsdevstorage.file.core.windows.net/\",\r\n \"queue\": \"https://dsdevstorage.queue.core.windows.net/\",\r\n \"table\": \"https://dsdevstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduscherp/providers/Microsoft.Storage/storageAccounts/erpio6r4un3ewfnm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"erpio6r4un3ewfnm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-08T12:41:16.6105852Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://erpio6r4un3ewfnm.blob.core.windows.net/\",\r\n \"file\": \"https://erpio6r4un3ewfnm.file.core.windows.net/\",\r\n \"queue\": \"https://erpio6r4un3ewfnm.queue.core.windows.net/\",\r\n \"table\": \"https://erpio6r4un3ewfnm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmpremstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmpremstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:21.7378841Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmpremstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmpremstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmpremstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmpremstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmstdstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmstdstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:22.2160008Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmstdstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmstdstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmstdstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmstdstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-test2/providers/Microsoft.Storage/storageAccounts/gortestacc2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gortestacc2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-08T21:18:17.9028388Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gortestacc2.blob.core.windows.net/\",\r\n \"file\": \"https://gortestacc2.file.core.windows.net/\",\r\n \"queue\": \"https://gortestacc2.queue.core.windows.net/\",\r\n \"table\": \"https://gortestacc2.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-04-16T13:50:52.0015725Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspacepremium\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspacepremium\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-10-23T10:22:10.7216809Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspacepremium.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvmtest/providers/Microsoft.Storage/storageAccounts/lvmtestspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmtestspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T16:56:41.5005505Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmtestspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmtestspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmtestspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmtestspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-eml2/providers/Microsoft.Storage/storageAccounts/rgeml2stacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"rgeml2stacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T08:00:29.8670815Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://rgeml2stacc.blob.core.windows.net/\",\r\n \"file\": \"https://rgeml2stacc.file.core.windows.net/\",\r\n \"queue\": \"https://rgeml2stacc.queue.core.windows.net/\",\r\n \"table\": \"https://rgeml2stacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/sapcalrg/providers/Microsoft.Storage/storageAccounts/sapcalrg8522\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"sapcalrg8522\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-28T06:54:16.0456896Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sapcalrg8522.blob.core.windows.net/\",\r\n \"file\": \"https://sapcalrg8522.file.core.windows.net/\",\r\n \"queue\": \"https://sapcalrg8522.queue.core.windows.net/\",\r\n \"table\": \"https://sapcalrg8522.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/saperpdemo859644\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"saperpdemo859644\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-01-26T11:02:43.8634331Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saperpdemo859644.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1prstacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1prstacc\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-12-10T17:35:29.0415914Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1prstacc.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1ststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1ststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-10T17:36:26.4810072Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1ststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saphana1ststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saphana1ststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saphana1ststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-linux-docu-tests/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saplinuxdocuststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-24T09:25:04.4473982Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-linux-docu-tests-we/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststaccwe\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saplinuxdocuststaccwe\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-25T13:11:50.5477032Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststaccwe.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststaccwe.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststaccwe.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststaccwe.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/sappseduscsape012612030\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"sappseduscsape012612030\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2016-01-26T11:03:56.0307387Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sappseduscsape012612030.blob.core.windows.net/\",\r\n \"file\": \"https://sappseduscsape012612030.file.core.windows.net/\",\r\n \"queue\": \"https://sappseduscsape012612030.queue.core.windows.net/\",\r\n \"table\": \"https://sappseduscsape012612030.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"westeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/saptesiarm/providers/Microsoft.Storage/storageAccounts/saptesiarm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saptesiarm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-08-27T12:13:00.4049179Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptesiarm.blob.core.windows.net/\",\r\n \"file\": \"https://saptesiarm.file.core.windows.net/\",\r\n \"queue\": \"https://saptesiarm.queue.core.windows.net/\",\r\n \"table\": \"https://saptesiarm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/saptestrajrg/providers/Microsoft.Storage/storageAccounts/saptestrajrg4518\",\r\n \"location\": \"westus\",\r\n \"name\": \"saptestrajrg4518\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-07-22T19:24:21.1065762Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptestrajrg4518.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Storage/storageAccounts/stocrptestps6110\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps6110\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-16T10:24:47.5385966Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps6110.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Storage/storageAccounts/stocrptestps61102\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps61102\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T10:32:33.9540784Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps61102.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps61102.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps61102.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps61102.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/temptestsap\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"temptestsap\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-10T14:03:58.3799849Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://temptestsap.blob.core.windows.net/\",\r\n \"file\": \"https://temptestsap.file.core.windows.net/\",\r\n \"queue\": \"https://temptestsap.queue.core.windows.net/\",\r\n \"table\": \"https://temptestsap.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/benolwtlz6gcrtv2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"benolwtlz6gcrtv2\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-02T15:37:42.4160913Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://benolwtlz6gcrtv2.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/sapresourcegroup/providers/Microsoft.Storage/storageAccounts/de8da241d96f400ba8791029\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"de8da241d96f400ba8791029\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-09-18T13:22:47.5628749Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://de8da241d96f400ba8791029.blob.core.windows.net/\",\r\n \"file\": \"https://de8da241d96f400ba8791029.file.core.windows.net/\",\r\n \"queue\": \"https://de8da241d96f400ba8791029.queue.core.windows.net/\",\r\n \"table\": \"https://de8da241d96f400ba8791029.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/group-4/providers/Microsoft.Storage/storageAccounts/dsdevstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"dsdevstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-22T21:10:41.790448Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://dsdevstorage.blob.core.windows.net/\",\r\n \"file\": \"https://dsdevstorage.file.core.windows.net/\",\r\n \"queue\": \"https://dsdevstorage.queue.core.windows.net/\",\r\n \"table\": \"https://dsdevstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/seduscherp/providers/Microsoft.Storage/storageAccounts/erpio6r4un3ewfnm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"erpio6r4un3ewfnm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-08T12:41:16.6105852Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://erpio6r4un3ewfnm.blob.core.windows.net/\",\r\n \"file\": \"https://erpio6r4un3ewfnm.file.core.windows.net/\",\r\n \"queue\": \"https://erpio6r4un3ewfnm.queue.core.windows.net/\",\r\n \"table\": \"https://erpio6r4un3ewfnm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/fdfdfdf/providers/Microsoft.Storage/storageAccounts/fdfdfdf2537\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"fdfdfdf2537\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-17T10:07:55.1390685Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://fdfdfdf2537.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/fdfdfdf/providers/Microsoft.Storage/storageAccounts/fdfdfdf2925\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"fdfdfdf2925\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-17T10:07:55.715138Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://fdfdfdf2925.blob.core.windows.net/\",\r\n \"file\": \"https://fdfdfdf2925.file.core.windows.net/\",\r\n \"queue\": \"https://fdfdfdf2925.queue.core.windows.net/\",\r\n \"table\": \"https://fdfdfdf2925.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/glsresgroup1/providers/Microsoft.Storage/storageAccounts/glsstoraccount1\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"glsstoraccount1\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T12:37:47.5420067Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://glsstoraccount1.blob.core.windows.net/\",\r\n \"file\": \"https://glsstoraccount1.file.core.windows.net/\",\r\n \"queue\": \"https://glsstoraccount1.queue.core.windows.net/\",\r\n \"table\": \"https://glsstoraccount1.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmpremstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmpremstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:21.7378841Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmpremstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmpremstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmpremstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmpremstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmstdstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmstdstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:22.2160008Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmstdstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmstdstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmstdstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmstdstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-clust-arm/providers/Microsoft.Storage/storageAccounts/gorclustarmstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorclustarmstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-17T14:59:23.8666219Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorclustarmstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorclustarmstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorclustarmstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorclustarmstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {\r\n \"displayName\": \"StorageAccount\"\r\n },\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-test2/providers/Microsoft.Storage/storageAccounts/gortestacc2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gortestacc2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-08T21:18:17.9028388Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gortestacc2.blob.core.windows.net/\",\r\n \"file\": \"https://gortestacc2.file.core.windows.net/\",\r\n \"queue\": \"https://gortestacc2.queue.core.windows.net/\",\r\n \"table\": \"https://gortestacc2.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-04-16T13:50:52.0015725Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspacepremium\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspacepremium\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-10-23T10:22:10.7216809Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspacepremium.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/lvmtest/providers/Microsoft.Storage/storageAccounts/lvmtestspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmtestspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T16:56:41.5005505Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmtestspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmtestspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmtestspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmtestspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-eml2/providers/Microsoft.Storage/storageAccounts/rgeml2stacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"rgeml2stacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T08:00:29.8670815Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://rgeml2stacc.blob.core.windows.net/\",\r\n \"file\": \"https://rgeml2stacc.file.core.windows.net/\",\r\n \"queue\": \"https://rgeml2stacc.queue.core.windows.net/\",\r\n \"table\": \"https://rgeml2stacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/sapcalrg/providers/Microsoft.Storage/storageAccounts/sapcalrg8522\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"sapcalrg8522\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-28T06:54:16.0456896Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sapcalrg8522.blob.core.windows.net/\",\r\n \"file\": \"https://sapcalrg8522.file.core.windows.net/\",\r\n \"queue\": \"https://sapcalrg8522.queue.core.windows.net/\",\r\n \"table\": \"https://sapcalrg8522.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/saperpdemo859644\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"saperpdemo859644\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-01-26T11:02:43.8634331Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saperpdemo859644.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1prstacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1prstacc\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-12-10T17:35:29.0415914Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1prstacc.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1ststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1ststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-10T17:36:26.4810072Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1ststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saphana1ststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saphana1ststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saphana1ststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-sap-linux-docu-tests/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saplinuxdocuststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-24T09:25:04.4473982Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-sap-linux-docu-tests-we/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststaccwe\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saplinuxdocuststaccwe\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-25T13:11:50.5477032Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststaccwe.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststaccwe.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststaccwe.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststaccwe.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/sappseduscsape012612030\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"sappseduscsape012612030\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2016-01-26T11:03:56.0307387Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sappseduscsape012612030.blob.core.windows.net/\",\r\n \"file\": \"https://sappseduscsape012612030.file.core.windows.net/\",\r\n \"queue\": \"https://sappseduscsape012612030.queue.core.windows.net/\",\r\n \"table\": \"https://sappseduscsape012612030.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"westeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/saptesiarm/providers/Microsoft.Storage/storageAccounts/saptesiarm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saptesiarm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-08-27T12:13:00.4049179Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptesiarm.blob.core.windows.net/\",\r\n \"file\": \"https://saptesiarm.file.core.windows.net/\",\r\n \"queue\": \"https://saptesiarm.queue.core.windows.net/\",\r\n \"table\": \"https://saptesiarm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/saptestrajrg/providers/Microsoft.Storage/storageAccounts/saptestrajrg4518\",\r\n \"location\": \"westus\",\r\n \"name\": \"saptestrajrg4518\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-07-22T19:24:21.1065762Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptestrajrg4518.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Storage/storageAccounts/stocrptestps1075\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps1075\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-20T14:36:47.3817483Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps1075.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Storage/storageAccounts/stocrptestps10752\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps10752\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-20T14:45:43.6713019Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps10752.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps10752.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps10752.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps10752.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/temptestsap\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"temptestsap\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-10T14:03:58.3799849Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://temptestsap.blob.core.windows.net/\",\r\n \"file\": \"https://temptestsap.file.core.windows.net/\",\r\n \"queue\": \"https://temptestsap.queue.core.windows.net/\",\r\n \"table\": \"https://temptestsap.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-ts2-test/providers/Microsoft.Storage/storageAccounts/ts2cdlko5xtxpo3k\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"ts2cdlko5xtxpo3k\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-17T14:39:15.5207487Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ts2cdlko5xtxpo3k.blob.core.windows.net/\",\r\n \"file\": \"https://ts2cdlko5xtxpo3k.file.core.windows.net/\",\r\n \"queue\": \"https://ts2cdlko5xtxpo3k.queue.core.windows.net/\",\r\n \"table\": \"https://ts2cdlko5xtxpo3k.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "15546" + "18105" ], "Content-Type": [ "application/json" @@ -4009,7 +4064,7 @@ "no-cache" ], "x-ms-request-id": [ - "a06e3c47-97c4-4a84-ba0f-6663f1b72634" + "a49ae475-da5f-4138-8c72-dc7388a25fc4" ], "Cache-Control": [ "no-cache" @@ -4019,40 +4074,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14985" ], "x-ms-correlation-request-id": [ - "a06e3c47-97c4-4a84-ba0f-6663f1b72634" + "a49ae475-da5f-4138-8c72-dc7388a25fc4" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T103302Z:a06e3c47-97c4-4a84-ba0f-6663f1b72634" + "NORTHCENTRALUS:20160220T144610Z:a49ae475-da5f-4138-8c72-dc7388a25fc4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Feb 2016 10:33:02 GMT" + "Sat, 20 Feb 2016 14:46:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9805f5dd-10fc-4c6b-9d7e-5cd2251e8219" + "2f3d8018-3455-4e0b-9034-f50f6b1acdea" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/ase/providers/Microsoft.Storage/storageAccounts/ase7745\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"ase7745\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-08-22T12:09:54.6487474Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ase7745.blob.core.windows.net/\",\r\n \"file\": \"https://ase7745.file.core.windows.net/\",\r\n \"queue\": \"https://ase7745.queue.core.windows.net/\",\r\n \"table\": \"https://ase7745.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/benolwtlz6gcrtv2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"benolwtlz6gcrtv2\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-02T15:37:42.4160913Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://benolwtlz6gcrtv2.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/sapresourcegroup/providers/Microsoft.Storage/storageAccounts/de8da241d96f400ba8791029\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"de8da241d96f400ba8791029\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-09-18T13:22:47.5628749Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://de8da241d96f400ba8791029.blob.core.windows.net/\",\r\n \"file\": \"https://de8da241d96f400ba8791029.file.core.windows.net/\",\r\n \"queue\": \"https://de8da241d96f400ba8791029.queue.core.windows.net/\",\r\n \"table\": \"https://de8da241d96f400ba8791029.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/group-4/providers/Microsoft.Storage/storageAccounts/dsdevstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"dsdevstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-22T21:10:41.790448Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://dsdevstorage.blob.core.windows.net/\",\r\n \"file\": \"https://dsdevstorage.file.core.windows.net/\",\r\n \"queue\": \"https://dsdevstorage.queue.core.windows.net/\",\r\n \"table\": \"https://dsdevstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduscherp/providers/Microsoft.Storage/storageAccounts/erpio6r4un3ewfnm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"erpio6r4un3ewfnm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-08T12:41:16.6105852Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://erpio6r4un3ewfnm.blob.core.windows.net/\",\r\n \"file\": \"https://erpio6r4un3ewfnm.file.core.windows.net/\",\r\n \"queue\": \"https://erpio6r4un3ewfnm.queue.core.windows.net/\",\r\n \"table\": \"https://erpio6r4un3ewfnm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmpremstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmpremstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:21.7378841Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmpremstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmpremstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmpremstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmpremstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmstdstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmstdstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:22.2160008Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmstdstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmstdstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmstdstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmstdstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-test2/providers/Microsoft.Storage/storageAccounts/gortestacc2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gortestacc2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-08T21:18:17.9028388Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gortestacc2.blob.core.windows.net/\",\r\n \"file\": \"https://gortestacc2.file.core.windows.net/\",\r\n \"queue\": \"https://gortestacc2.queue.core.windows.net/\",\r\n \"table\": \"https://gortestacc2.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-04-16T13:50:52.0015725Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspacepremium\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspacepremium\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-10-23T10:22:10.7216809Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspacepremium.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvmtest/providers/Microsoft.Storage/storageAccounts/lvmtestspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmtestspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T16:56:41.5005505Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmtestspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmtestspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmtestspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmtestspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-eml2/providers/Microsoft.Storage/storageAccounts/rgeml2stacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"rgeml2stacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T08:00:29.8670815Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://rgeml2stacc.blob.core.windows.net/\",\r\n \"file\": \"https://rgeml2stacc.file.core.windows.net/\",\r\n \"queue\": \"https://rgeml2stacc.queue.core.windows.net/\",\r\n \"table\": \"https://rgeml2stacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/sapcalrg/providers/Microsoft.Storage/storageAccounts/sapcalrg8522\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"sapcalrg8522\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-28T06:54:16.0456896Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sapcalrg8522.blob.core.windows.net/\",\r\n \"file\": \"https://sapcalrg8522.file.core.windows.net/\",\r\n \"queue\": \"https://sapcalrg8522.queue.core.windows.net/\",\r\n \"table\": \"https://sapcalrg8522.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/saperpdemo859644\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"saperpdemo859644\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-01-26T11:02:43.8634331Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saperpdemo859644.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1prstacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1prstacc\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-12-10T17:35:29.0415914Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1prstacc.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1ststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1ststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-10T17:36:26.4810072Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1ststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saphana1ststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saphana1ststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saphana1ststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-linux-docu-tests/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saplinuxdocuststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-24T09:25:04.4473982Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-linux-docu-tests-we/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststaccwe\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saplinuxdocuststaccwe\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-25T13:11:50.5477032Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststaccwe.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststaccwe.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststaccwe.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststaccwe.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/sappseduscsape012612030\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"sappseduscsape012612030\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2016-01-26T11:03:56.0307387Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sappseduscsape012612030.blob.core.windows.net/\",\r\n \"file\": \"https://sappseduscsape012612030.file.core.windows.net/\",\r\n \"queue\": \"https://sappseduscsape012612030.queue.core.windows.net/\",\r\n \"table\": \"https://sappseduscsape012612030.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"westeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/saptesiarm/providers/Microsoft.Storage/storageAccounts/saptesiarm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saptesiarm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-08-27T12:13:00.4049179Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptesiarm.blob.core.windows.net/\",\r\n \"file\": \"https://saptesiarm.file.core.windows.net/\",\r\n \"queue\": \"https://saptesiarm.queue.core.windows.net/\",\r\n \"table\": \"https://saptesiarm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/saptestrajrg/providers/Microsoft.Storage/storageAccounts/saptestrajrg4518\",\r\n \"location\": \"westus\",\r\n \"name\": \"saptestrajrg4518\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-07-22T19:24:21.1065762Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptestrajrg4518.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Storage/storageAccounts/stocrptestps6110\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps6110\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-16T10:24:47.5385966Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps6110.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Storage/storageAccounts/stocrptestps61102\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps61102\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T10:32:33.9540784Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps61102.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps61102.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps61102.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps61102.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/temptestsap\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"temptestsap\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-10T14:03:58.3799849Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://temptestsap.blob.core.windows.net/\",\r\n \"file\": \"https://temptestsap.file.core.windows.net/\",\r\n \"queue\": \"https://temptestsap.queue.core.windows.net/\",\r\n \"table\": \"https://temptestsap.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/benolwtlz6gcrtv2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"benolwtlz6gcrtv2\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-02T15:37:42.4160913Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://benolwtlz6gcrtv2.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/sapresourcegroup/providers/Microsoft.Storage/storageAccounts/de8da241d96f400ba8791029\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"de8da241d96f400ba8791029\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-09-18T13:22:47.5628749Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://de8da241d96f400ba8791029.blob.core.windows.net/\",\r\n \"file\": \"https://de8da241d96f400ba8791029.file.core.windows.net/\",\r\n \"queue\": \"https://de8da241d96f400ba8791029.queue.core.windows.net/\",\r\n \"table\": \"https://de8da241d96f400ba8791029.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/group-4/providers/Microsoft.Storage/storageAccounts/dsdevstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"dsdevstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-22T21:10:41.790448Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://dsdevstorage.blob.core.windows.net/\",\r\n \"file\": \"https://dsdevstorage.file.core.windows.net/\",\r\n \"queue\": \"https://dsdevstorage.queue.core.windows.net/\",\r\n \"table\": \"https://dsdevstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/seduscherp/providers/Microsoft.Storage/storageAccounts/erpio6r4un3ewfnm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"erpio6r4un3ewfnm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-08T12:41:16.6105852Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://erpio6r4un3ewfnm.blob.core.windows.net/\",\r\n \"file\": \"https://erpio6r4un3ewfnm.file.core.windows.net/\",\r\n \"queue\": \"https://erpio6r4un3ewfnm.queue.core.windows.net/\",\r\n \"table\": \"https://erpio6r4un3ewfnm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/fdfdfdf/providers/Microsoft.Storage/storageAccounts/fdfdfdf2537\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"fdfdfdf2537\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-17T10:07:55.1390685Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://fdfdfdf2537.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/fdfdfdf/providers/Microsoft.Storage/storageAccounts/fdfdfdf2925\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"fdfdfdf2925\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-17T10:07:55.715138Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://fdfdfdf2925.blob.core.windows.net/\",\r\n \"file\": \"https://fdfdfdf2925.file.core.windows.net/\",\r\n \"queue\": \"https://fdfdfdf2925.queue.core.windows.net/\",\r\n \"table\": \"https://fdfdfdf2925.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/glsresgroup1/providers/Microsoft.Storage/storageAccounts/glsstoraccount1\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"glsstoraccount1\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T12:37:47.5420067Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://glsstoraccount1.blob.core.windows.net/\",\r\n \"file\": \"https://glsstoraccount1.file.core.windows.net/\",\r\n \"queue\": \"https://glsstoraccount1.queue.core.windows.net/\",\r\n \"table\": \"https://glsstoraccount1.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmpremstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmpremstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:21.7378841Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmpremstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmpremstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmpremstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmpremstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmstdstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmstdstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:22.2160008Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmstdstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmstdstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmstdstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmstdstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-clust-arm/providers/Microsoft.Storage/storageAccounts/gorclustarmstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorclustarmstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-17T14:59:23.8666219Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorclustarmstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorclustarmstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorclustarmstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorclustarmstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {\r\n \"displayName\": \"StorageAccount\"\r\n },\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-test2/providers/Microsoft.Storage/storageAccounts/gortestacc2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gortestacc2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-08T21:18:17.9028388Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gortestacc2.blob.core.windows.net/\",\r\n \"file\": \"https://gortestacc2.file.core.windows.net/\",\r\n \"queue\": \"https://gortestacc2.queue.core.windows.net/\",\r\n \"table\": \"https://gortestacc2.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-04-16T13:50:52.0015725Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspacepremium\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspacepremium\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-10-23T10:22:10.7216809Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspacepremium.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/lvmtest/providers/Microsoft.Storage/storageAccounts/lvmtestspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmtestspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T16:56:41.5005505Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmtestspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmtestspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmtestspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmtestspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-eml2/providers/Microsoft.Storage/storageAccounts/rgeml2stacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"rgeml2stacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T08:00:29.8670815Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://rgeml2stacc.blob.core.windows.net/\",\r\n \"file\": \"https://rgeml2stacc.file.core.windows.net/\",\r\n \"queue\": \"https://rgeml2stacc.queue.core.windows.net/\",\r\n \"table\": \"https://rgeml2stacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/sapcalrg/providers/Microsoft.Storage/storageAccounts/sapcalrg8522\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"sapcalrg8522\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-28T06:54:16.0456896Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sapcalrg8522.blob.core.windows.net/\",\r\n \"file\": \"https://sapcalrg8522.file.core.windows.net/\",\r\n \"queue\": \"https://sapcalrg8522.queue.core.windows.net/\",\r\n \"table\": \"https://sapcalrg8522.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/saperpdemo859644\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"saperpdemo859644\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-01-26T11:02:43.8634331Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saperpdemo859644.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1prstacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1prstacc\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-12-10T17:35:29.0415914Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1prstacc.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1ststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1ststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-10T17:36:26.4810072Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1ststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saphana1ststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saphana1ststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saphana1ststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-sap-linux-docu-tests/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saplinuxdocuststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-24T09:25:04.4473982Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-sap-linux-docu-tests-we/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststaccwe\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saplinuxdocuststaccwe\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-25T13:11:50.5477032Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststaccwe.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststaccwe.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststaccwe.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststaccwe.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/sappseduscsape012612030\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"sappseduscsape012612030\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2016-01-26T11:03:56.0307387Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sappseduscsape012612030.blob.core.windows.net/\",\r\n \"file\": \"https://sappseduscsape012612030.file.core.windows.net/\",\r\n \"queue\": \"https://sappseduscsape012612030.queue.core.windows.net/\",\r\n \"table\": \"https://sappseduscsape012612030.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"westeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/saptesiarm/providers/Microsoft.Storage/storageAccounts/saptesiarm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saptesiarm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-08-27T12:13:00.4049179Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptesiarm.blob.core.windows.net/\",\r\n \"file\": \"https://saptesiarm.file.core.windows.net/\",\r\n \"queue\": \"https://saptesiarm.queue.core.windows.net/\",\r\n \"table\": \"https://saptesiarm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/saptestrajrg/providers/Microsoft.Storage/storageAccounts/saptestrajrg4518\",\r\n \"location\": \"westus\",\r\n \"name\": \"saptestrajrg4518\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-07-22T19:24:21.1065762Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptestrajrg4518.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Storage/storageAccounts/stocrptestps1075\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps1075\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-20T14:36:47.3817483Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps1075.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Storage/storageAccounts/stocrptestps10752\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps10752\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-20T14:45:43.6713019Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps10752.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps10752.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps10752.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps10752.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/temptestsap\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"temptestsap\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-10T14:03:58.3799849Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://temptestsap.blob.core.windows.net/\",\r\n \"file\": \"https://temptestsap.file.core.windows.net/\",\r\n \"queue\": \"https://temptestsap.queue.core.windows.net/\",\r\n \"table\": \"https://temptestsap.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-ts2-test/providers/Microsoft.Storage/storageAccounts/ts2cdlko5xtxpo3k\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"ts2cdlko5xtxpo3k\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-17T14:39:15.5207487Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ts2cdlko5xtxpo3k.blob.core.windows.net/\",\r\n \"file\": \"https://ts2cdlko5xtxpo3k.file.core.windows.net/\",\r\n \"queue\": \"https://ts2cdlko5xtxpo3k.queue.core.windows.net/\",\r\n \"table\": \"https://ts2cdlko5xtxpo3k.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "15546" + "18105" ], "Content-Type": [ "application/json" @@ -4064,7 +4119,7 @@ "no-cache" ], "x-ms-request-id": [ - "11f2efe3-dc5b-429f-bb86-60c76d39c7dc" + "e4ca3487-a4df-4215-837e-f2108d86816b" ], "Cache-Control": [ "no-cache" @@ -4074,40 +4129,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14954" + "14984" ], "x-ms-correlation-request-id": [ - "11f2efe3-dc5b-429f-bb86-60c76d39c7dc" + "e4ca3487-a4df-4215-837e-f2108d86816b" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T103645Z:11f2efe3-dc5b-429f-bb86-60c76d39c7dc" + "NORTHCENTRALUS:20160220T144611Z:e4ca3487-a4df-4215-837e-f2108d86816b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Feb 2016 10:36:44 GMT" + "Sat, 20 Feb 2016 14:46:11 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fa7af8b3-a746-4362-85f2-55f289f8a8b6" + "4fcd0472-90b2-4584-a418-ec538e9af412" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/ase/providers/Microsoft.Storage/storageAccounts/ase7745\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"ase7745\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-08-22T12:09:54.6487474Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ase7745.blob.core.windows.net/\",\r\n \"file\": \"https://ase7745.file.core.windows.net/\",\r\n \"queue\": \"https://ase7745.queue.core.windows.net/\",\r\n \"table\": \"https://ase7745.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/benolwtlz6gcrtv2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"benolwtlz6gcrtv2\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-02T15:37:42.4160913Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://benolwtlz6gcrtv2.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/sapresourcegroup/providers/Microsoft.Storage/storageAccounts/de8da241d96f400ba8791029\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"de8da241d96f400ba8791029\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-09-18T13:22:47.5628749Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://de8da241d96f400ba8791029.blob.core.windows.net/\",\r\n \"file\": \"https://de8da241d96f400ba8791029.file.core.windows.net/\",\r\n \"queue\": \"https://de8da241d96f400ba8791029.queue.core.windows.net/\",\r\n \"table\": \"https://de8da241d96f400ba8791029.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/group-4/providers/Microsoft.Storage/storageAccounts/dsdevstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"dsdevstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-22T21:10:41.790448Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://dsdevstorage.blob.core.windows.net/\",\r\n \"file\": \"https://dsdevstorage.file.core.windows.net/\",\r\n \"queue\": \"https://dsdevstorage.queue.core.windows.net/\",\r\n \"table\": \"https://dsdevstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduscherp/providers/Microsoft.Storage/storageAccounts/erpio6r4un3ewfnm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"erpio6r4un3ewfnm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-08T12:41:16.6105852Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://erpio6r4un3ewfnm.blob.core.windows.net/\",\r\n \"file\": \"https://erpio6r4un3ewfnm.file.core.windows.net/\",\r\n \"queue\": \"https://erpio6r4un3ewfnm.queue.core.windows.net/\",\r\n \"table\": \"https://erpio6r4un3ewfnm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmpremstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmpremstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:21.7378841Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmpremstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmpremstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmpremstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmpremstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmstdstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmstdstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:22.2160008Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmstdstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmstdstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmstdstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmstdstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-test2/providers/Microsoft.Storage/storageAccounts/gortestacc2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gortestacc2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-08T21:18:17.9028388Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gortestacc2.blob.core.windows.net/\",\r\n \"file\": \"https://gortestacc2.file.core.windows.net/\",\r\n \"queue\": \"https://gortestacc2.queue.core.windows.net/\",\r\n \"table\": \"https://gortestacc2.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-04-16T13:50:52.0015725Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspacepremium\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspacepremium\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-10-23T10:22:10.7216809Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspacepremium.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvmtest/providers/Microsoft.Storage/storageAccounts/lvmtestspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmtestspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T16:56:41.5005505Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmtestspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmtestspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmtestspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmtestspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-eml2/providers/Microsoft.Storage/storageAccounts/rgeml2stacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"rgeml2stacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T08:00:29.8670815Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://rgeml2stacc.blob.core.windows.net/\",\r\n \"file\": \"https://rgeml2stacc.file.core.windows.net/\",\r\n \"queue\": \"https://rgeml2stacc.queue.core.windows.net/\",\r\n \"table\": \"https://rgeml2stacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/sapcalrg/providers/Microsoft.Storage/storageAccounts/sapcalrg8522\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"sapcalrg8522\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-28T06:54:16.0456896Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sapcalrg8522.blob.core.windows.net/\",\r\n \"file\": \"https://sapcalrg8522.file.core.windows.net/\",\r\n \"queue\": \"https://sapcalrg8522.queue.core.windows.net/\",\r\n \"table\": \"https://sapcalrg8522.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/saperpdemo859644\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"saperpdemo859644\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-01-26T11:02:43.8634331Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saperpdemo859644.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1prstacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1prstacc\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-12-10T17:35:29.0415914Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1prstacc.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1ststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1ststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-10T17:36:26.4810072Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1ststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saphana1ststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saphana1ststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saphana1ststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-linux-docu-tests/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saplinuxdocuststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-24T09:25:04.4473982Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-linux-docu-tests-we/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststaccwe\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saplinuxdocuststaccwe\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-25T13:11:50.5477032Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststaccwe.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststaccwe.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststaccwe.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststaccwe.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/sappseduscsape012612030\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"sappseduscsape012612030\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2016-01-26T11:03:56.0307387Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sappseduscsape012612030.blob.core.windows.net/\",\r\n \"file\": \"https://sappseduscsape012612030.file.core.windows.net/\",\r\n \"queue\": \"https://sappseduscsape012612030.queue.core.windows.net/\",\r\n \"table\": \"https://sappseduscsape012612030.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"westeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/saptesiarm/providers/Microsoft.Storage/storageAccounts/saptesiarm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saptesiarm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-08-27T12:13:00.4049179Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptesiarm.blob.core.windows.net/\",\r\n \"file\": \"https://saptesiarm.file.core.windows.net/\",\r\n \"queue\": \"https://saptesiarm.queue.core.windows.net/\",\r\n \"table\": \"https://saptesiarm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/saptestrajrg/providers/Microsoft.Storage/storageAccounts/saptestrajrg4518\",\r\n \"location\": \"westus\",\r\n \"name\": \"saptestrajrg4518\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-07-22T19:24:21.1065762Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptestrajrg4518.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Storage/storageAccounts/stocrptestps6110\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps6110\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-16T10:24:47.5385966Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps6110.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Storage/storageAccounts/stocrptestps61102\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps61102\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T10:32:33.9540784Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps61102.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps61102.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps61102.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps61102.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/temptestsap\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"temptestsap\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-10T14:03:58.3799849Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://temptestsap.blob.core.windows.net/\",\r\n \"file\": \"https://temptestsap.file.core.windows.net/\",\r\n \"queue\": \"https://temptestsap.queue.core.windows.net/\",\r\n \"table\": \"https://temptestsap.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/benolwtlz6gcrtv2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"benolwtlz6gcrtv2\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-02T15:37:42.4160913Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://benolwtlz6gcrtv2.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/sapresourcegroup/providers/Microsoft.Storage/storageAccounts/de8da241d96f400ba8791029\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"de8da241d96f400ba8791029\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-09-18T13:22:47.5628749Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://de8da241d96f400ba8791029.blob.core.windows.net/\",\r\n \"file\": \"https://de8da241d96f400ba8791029.file.core.windows.net/\",\r\n \"queue\": \"https://de8da241d96f400ba8791029.queue.core.windows.net/\",\r\n \"table\": \"https://de8da241d96f400ba8791029.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/group-4/providers/Microsoft.Storage/storageAccounts/dsdevstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"dsdevstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-22T21:10:41.790448Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://dsdevstorage.blob.core.windows.net/\",\r\n \"file\": \"https://dsdevstorage.file.core.windows.net/\",\r\n \"queue\": \"https://dsdevstorage.queue.core.windows.net/\",\r\n \"table\": \"https://dsdevstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/seduscherp/providers/Microsoft.Storage/storageAccounts/erpio6r4un3ewfnm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"erpio6r4un3ewfnm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-08T12:41:16.6105852Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://erpio6r4un3ewfnm.blob.core.windows.net/\",\r\n \"file\": \"https://erpio6r4un3ewfnm.file.core.windows.net/\",\r\n \"queue\": \"https://erpio6r4un3ewfnm.queue.core.windows.net/\",\r\n \"table\": \"https://erpio6r4un3ewfnm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/fdfdfdf/providers/Microsoft.Storage/storageAccounts/fdfdfdf2537\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"fdfdfdf2537\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-17T10:07:55.1390685Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://fdfdfdf2537.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/fdfdfdf/providers/Microsoft.Storage/storageAccounts/fdfdfdf2925\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"fdfdfdf2925\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-17T10:07:55.715138Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://fdfdfdf2925.blob.core.windows.net/\",\r\n \"file\": \"https://fdfdfdf2925.file.core.windows.net/\",\r\n \"queue\": \"https://fdfdfdf2925.queue.core.windows.net/\",\r\n \"table\": \"https://fdfdfdf2925.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/glsresgroup1/providers/Microsoft.Storage/storageAccounts/glsstoraccount1\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"glsstoraccount1\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T12:37:47.5420067Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://glsstoraccount1.blob.core.windows.net/\",\r\n \"file\": \"https://glsstoraccount1.file.core.windows.net/\",\r\n \"queue\": \"https://glsstoraccount1.queue.core.windows.net/\",\r\n \"table\": \"https://glsstoraccount1.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmpremstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmpremstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:21.7378841Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmpremstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmpremstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmpremstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmpremstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmstdstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmstdstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:22.2160008Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmstdstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmstdstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmstdstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmstdstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-clust-arm/providers/Microsoft.Storage/storageAccounts/gorclustarmstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorclustarmstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-17T14:59:23.8666219Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorclustarmstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorclustarmstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorclustarmstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorclustarmstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {\r\n \"displayName\": \"StorageAccount\"\r\n },\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-test2/providers/Microsoft.Storage/storageAccounts/gortestacc2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gortestacc2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-08T21:18:17.9028388Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gortestacc2.blob.core.windows.net/\",\r\n \"file\": \"https://gortestacc2.file.core.windows.net/\",\r\n \"queue\": \"https://gortestacc2.queue.core.windows.net/\",\r\n \"table\": \"https://gortestacc2.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-04-16T13:50:52.0015725Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspacepremium\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspacepremium\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-10-23T10:22:10.7216809Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspacepremium.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/lvmtest/providers/Microsoft.Storage/storageAccounts/lvmtestspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmtestspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T16:56:41.5005505Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmtestspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmtestspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmtestspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmtestspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-eml2/providers/Microsoft.Storage/storageAccounts/rgeml2stacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"rgeml2stacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T08:00:29.8670815Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://rgeml2stacc.blob.core.windows.net/\",\r\n \"file\": \"https://rgeml2stacc.file.core.windows.net/\",\r\n \"queue\": \"https://rgeml2stacc.queue.core.windows.net/\",\r\n \"table\": \"https://rgeml2stacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/sapcalrg/providers/Microsoft.Storage/storageAccounts/sapcalrg8522\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"sapcalrg8522\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-28T06:54:16.0456896Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sapcalrg8522.blob.core.windows.net/\",\r\n \"file\": \"https://sapcalrg8522.file.core.windows.net/\",\r\n \"queue\": \"https://sapcalrg8522.queue.core.windows.net/\",\r\n \"table\": \"https://sapcalrg8522.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/saperpdemo859644\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"saperpdemo859644\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-01-26T11:02:43.8634331Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saperpdemo859644.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1prstacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1prstacc\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-12-10T17:35:29.0415914Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1prstacc.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1ststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1ststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-10T17:36:26.4810072Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1ststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saphana1ststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saphana1ststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saphana1ststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-sap-linux-docu-tests/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saplinuxdocuststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-24T09:25:04.4473982Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-sap-linux-docu-tests-we/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststaccwe\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saplinuxdocuststaccwe\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-25T13:11:50.5477032Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststaccwe.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststaccwe.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststaccwe.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststaccwe.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/sappseduscsape012612030\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"sappseduscsape012612030\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2016-01-26T11:03:56.0307387Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sappseduscsape012612030.blob.core.windows.net/\",\r\n \"file\": \"https://sappseduscsape012612030.file.core.windows.net/\",\r\n \"queue\": \"https://sappseduscsape012612030.queue.core.windows.net/\",\r\n \"table\": \"https://sappseduscsape012612030.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"westeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/saptesiarm/providers/Microsoft.Storage/storageAccounts/saptesiarm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saptesiarm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-08-27T12:13:00.4049179Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptesiarm.blob.core.windows.net/\",\r\n \"file\": \"https://saptesiarm.file.core.windows.net/\",\r\n \"queue\": \"https://saptesiarm.queue.core.windows.net/\",\r\n \"table\": \"https://saptesiarm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/saptestrajrg/providers/Microsoft.Storage/storageAccounts/saptestrajrg4518\",\r\n \"location\": \"westus\",\r\n \"name\": \"saptestrajrg4518\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-07-22T19:24:21.1065762Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptestrajrg4518.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Storage/storageAccounts/stocrptestps1075\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps1075\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-20T14:36:47.3817483Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps1075.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Storage/storageAccounts/stocrptestps10752\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps10752\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-20T14:45:43.6713019Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps10752.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps10752.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps10752.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps10752.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/temptestsap\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"temptestsap\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-10T14:03:58.3799849Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://temptestsap.blob.core.windows.net/\",\r\n \"file\": \"https://temptestsap.file.core.windows.net/\",\r\n \"queue\": \"https://temptestsap.queue.core.windows.net/\",\r\n \"table\": \"https://temptestsap.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-ts2-test/providers/Microsoft.Storage/storageAccounts/ts2cdlko5xtxpo3k\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"ts2cdlko5xtxpo3k\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-17T14:39:15.5207487Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ts2cdlko5xtxpo3k.blob.core.windows.net/\",\r\n \"file\": \"https://ts2cdlko5xtxpo3k.file.core.windows.net/\",\r\n \"queue\": \"https://ts2cdlko5xtxpo3k.queue.core.windows.net/\",\r\n \"table\": \"https://ts2cdlko5xtxpo3k.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "15546" + "18105" ], "Content-Type": [ "application/json" @@ -4119,7 +4174,7 @@ "no-cache" ], "x-ms-request-id": [ - "cc78ce2d-6783-4e0a-8b47-107002f632c3" + "a9e4c834-65d8-43b1-bbc9-219787b5612a" ], "Cache-Control": [ "no-cache" @@ -4129,26 +4184,26 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14953" + "14954" ], "x-ms-correlation-request-id": [ - "cc78ce2d-6783-4e0a-8b47-107002f632c3" + "a9e4c834-65d8-43b1-bbc9-219787b5612a" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T103646Z:cc78ce2d-6783-4e0a-8b47-107002f632c3" + "NORTHCENTRALUS:20160220T145001Z:a9e4c834-65d8-43b1-bbc9-219787b5612a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Feb 2016 10:36:45 GMT" + "Sat, 20 Feb 2016 14:50:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Storage/storageAccounts/stocrptestps61102?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM2MTEwMj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Storage/storageAccounts/stocrptestps10752?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHMxMDc1Mj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\"\r\n }\r\n}", "RequestHeaders": { @@ -4159,7 +4214,7 @@ "89" ], "x-ms-client-request-id": [ - "f8822ede-6a89-4c04-a595-11a151797824" + "05dbaeb9-4f81-4fe4-ac45-1e96ac8771a1" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" @@ -4180,44 +4235,44 @@ "25" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1195" ], "x-ms-request-id": [ - "18f34124-7f5d-4ed9-ad7a-40d3eca13852" + "8c16697e-e1f6-4927-83e4-559af546d3aa" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Storage/operations/71608dc6-7f11-466e-bec8-0fec5b3d76bc?monitor=true&api-version=2015-06-15" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Storage/operations/3b2b33d0-f93e-4ef0-af80-a7f1f7eef848?monitor=true&api-version=2015-06-15" ], "Server": [ "Microsoft-Azure-Storage-Resource-Provider/1.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "18f34124-7f5d-4ed9-ad7a-40d3eca13852" + "8c16697e-e1f6-4927-83e4-559af546d3aa" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T103234Z:18f34124-7f5d-4ed9-ad7a-40d3eca13852" + "NORTHCENTRALUS:20160220T144544Z:8c16697e-e1f6-4927-83e4-559af546d3aa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Feb 2016 10:32:34 GMT" + "Sat, 20 Feb 2016 14:45:44 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Storage/operations/71608dc6-7f11-466e-bec8-0fec5b3d76bc?monitor=true&api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzcxNjA4ZGM2LTdmMTEtNDY2ZS1iZWM4LTBmZWM1YjNkNzZiYz9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Storage/operations/3b2b33d0-f93e-4ef0-af80-a7f1f7eef848?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzNiMmIzM2QwLWY5M2UtNGVmMC1hZjgwLWE3ZjFmN2VlZjg0OD9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d87cec55-d42c-4cf3-b997-540b5d60f0f1" + "c65224bc-87bb-461a-a603-40a673905073" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" @@ -4238,44 +4293,44 @@ "25" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14988" ], "x-ms-request-id": [ - "ffc94490-9069-496b-aa47-84c92d9ac279" + "cb6e205e-d35d-471d-93c6-d26c08511583" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Storage/operations/71608dc6-7f11-466e-bec8-0fec5b3d76bc?monitor=true&api-version=2015-06-15" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Storage/operations/3b2b33d0-f93e-4ef0-af80-a7f1f7eef848?monitor=true&api-version=2015-06-15" ], "Server": [ "Microsoft-Azure-Storage-Resource-Provider/1.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "ffc94490-9069-496b-aa47-84c92d9ac279" + "cb6e205e-d35d-471d-93c6-d26c08511583" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T103235Z:ffc94490-9069-496b-aa47-84c92d9ac279" + "NORTHCENTRALUS:20160220T144545Z:cb6e205e-d35d-471d-93c6-d26c08511583" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Feb 2016 10:32:34 GMT" + "Sat, 20 Feb 2016 14:45:44 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Storage/operations/71608dc6-7f11-466e-bec8-0fec5b3d76bc?monitor=true&api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzcxNjA4ZGM2LTdmMTEtNDY2ZS1iZWM4LTBmZWM1YjNkNzZiYz9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Storage/operations/3b2b33d0-f93e-4ef0-af80-a7f1f7eef848?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzNiMmIzM2QwLWY5M2UtNGVmMC1hZjgwLWE3ZjFmN2VlZjg0OD9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "95017a10-b141-4fe9-a487-32d62f82ba93" + "4caef958-1173-47bf-86da-d98ef6c93985" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" @@ -4296,7 +4351,7 @@ "no-cache" ], "x-ms-request-id": [ - "24057174-1db5-4a9e-9bc6-a944d63ac1e2" + "a7a7baeb-7fc0-4cab-9c86-1c234d7a3906" ], "Cache-Control": [ "no-cache" @@ -4306,37 +4361,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14987" ], "x-ms-correlation-request-id": [ - "24057174-1db5-4a9e-9bc6-a944d63ac1e2" + "a7a7baeb-7fc0-4cab-9c86-1c234d7a3906" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T103300Z:24057174-1db5-4a9e-9bc6-a944d63ac1e2" + "NORTHCENTRALUS:20160220T144610Z:a7a7baeb-7fc0-4cab-9c86-1c234d7a3906" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Feb 2016 10:33:00 GMT" + "Sat, 20 Feb 2016 14:46:09 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Storage/storageAccounts/stocrptestps61102?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM2MTEwMj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Storage/storageAccounts/stocrptestps10752?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHMxMDc1Mj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6f4605f3-321a-42e5-9e36-57b374fa7a6b" + "0cc2832a-c7ca-4633-9a28-78fdfe93fcb8" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Storage/storageAccounts/stocrptestps61102\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps61102\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T10:32:33.9540784Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps61102.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps61102.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps61102.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps61102.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Storage/storageAccounts/stocrptestps10752\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps10752\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-20T14:45:43.6713019Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps10752.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps10752.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps10752.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps10752.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "688" @@ -4351,7 +4406,7 @@ "no-cache" ], "x-ms-request-id": [ - "4c91d069-04d7-41a9-a619-bea04832911a" + "d0c074f1-2824-4b01-8b09-8606c6039478" ], "Cache-Control": [ "no-cache" @@ -4361,37 +4416,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14986" ], "x-ms-correlation-request-id": [ - "4c91d069-04d7-41a9-a619-bea04832911a" + "d0c074f1-2824-4b01-8b09-8606c6039478" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T103300Z:4c91d069-04d7-41a9-a619-bea04832911a" + "NORTHCENTRALUS:20160220T144610Z:d0c074f1-2824-4b01-8b09-8606c6039478" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Feb 2016 10:33:00 GMT" + "Sat, 20 Feb 2016 14:46:09 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Storage/storageAccounts/stocrptestps61102/listKeys?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM2MTEwMi9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Storage/storageAccounts/stocrptestps10752/listKeys?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHMxMDc1Mi9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5d5a3bf3-ddcd-434d-a0fb-61d30d67bcef" + "c6aa7087-80d5-4782-a637-746787dd3fcf" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"key1\": \"DAwcej5z4h3UHbygYGFRbwR9FYxd2K50h3L1lpSpKvYV7nVJ0KqEgJR+iK3OWuRVcx0+MLy1IauSToh8kWNXzw==\",\r\n \"key2\": \"b02fmH5tsJqjHetvugiHDfUxyEb7VLetyRqx2k9W/ANeoZWw8rc2IlPDDvBSgYTJF8N2Sebz3KyJha8QlhcOlA==\"\r\n}", + "ResponseBody": "{\r\n \"key1\": \"NlNYYCnKJTPzCHCVBOwejww3sSAsegU2IIsUvfSmeGC6w2LStboQaJ3VVbSylM83qyJasuiquMIinzGm/VqWmw==\",\r\n \"key2\": \"afmMsEJlI99bhJqNJn4mtdfyRZMrMzJzgDrHnspwof8Cn2UdEVQCEgQ4VZ1z1UO9ThMuKynubgvw5sMGSEoRAg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "198" @@ -4406,7 +4461,7 @@ "no-cache" ], "x-ms-request-id": [ - "b03f9b46-d549-411a-85f2-95ec8b609e47" + "7647caa7-4ce1-4f6e-ae37-09749eb19261" ], "Cache-Control": [ "no-cache" @@ -4416,83 +4471,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1192" ], "x-ms-correlation-request-id": [ - "b03f9b46-d549-411a-85f2-95ec8b609e47" + "7647caa7-4ce1-4f6e-ae37-09749eb19261" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T103302Z:b03f9b46-d549-411a-85f2-95ec8b609e47" + "NORTHCENTRALUS:20160220T144612Z:7647caa7-4ce1-4f6e-ae37-09749eb19261" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Feb 2016 10:33:02 GMT" + "Sat, 20 Feb 2016 14:46:11 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Storage/storageAccounts/stocrptestps61102/listKeys?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM2MTEwMi9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", - "RequestMethod": "POST", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6476d109-6af9-458c-8092-93107b9a25cb" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"key1\": \"DAwcej5z4h3UHbygYGFRbwR9FYxd2K50h3L1lpSpKvYV7nVJ0KqEgJR+iK3OWuRVcx0+MLy1IauSToh8kWNXzw==\",\r\n \"key2\": \"b02fmH5tsJqjHetvugiHDfUxyEb7VLetyRqx2k9W/ANeoZWw8rc2IlPDDvBSgYTJF8N2Sebz3KyJha8QlhcOlA==\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "198" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "8402716f-fb88-4bf2-9108-0369b7c08a64" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" - ], - "x-ms-correlation-request-id": [ - "8402716f-fb88-4bf2-9108-0369b7c08a64" - ], - "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T103646Z:8402716f-fb88-4bf2-9108-0369b7c08a64" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Date": [ - "Tue, 16 Feb 2016 10:36:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110/extensions/IaaSDiagnostics?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczYxMTAvZXh0ZW5zaW9ucy9JYWFTRGlhZ25vc3RpY3M/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Azure.Diagnostics\",\r\n \"type\": \"IaaSDiagnostics\",\r\n \"typeHandlerVersion\": \"1.5\",\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yKF9Ub3RhbClcJSBQcm9jZXNzb3IgVGltZSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yIEluZm9ybWF0aW9uKF9Ub3RhbClcUHJvY2Vzc29yIEZyZXF1ZW5jeSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XEF2YWlsYWJsZSBCeXRlcyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcVENQdjZcU2VnbWVudHMgUmV0cmFuc21pdHRlZC9zZWMiIHNhbXBsZVJhdGU9IlBUMU0iIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFRDUHY0XFNlZ21lbnRzIFJldHJhbnNtaXR0ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrIEludGVyZmFjZSgqKVxCeXRlcyBTZW50L3NlYyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29yayBJbnRlcmZhY2UoKilcQnl0ZXMgUmVjZWl2ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"protectedSettings\": {\r\n \"storageAccountName\": \"stocrptestps61102\",\r\n \"storageAccountKey\": \"DAwcej5z4h3UHbygYGFRbwR9FYxd2K50h3L1lpSpKvYV7nVJ0KqEgJR+iK3OWuRVcx0+MLy1IauSToh8kWNXzw==\",\r\n \"storageAccountEndPoint\": \"https://core.windows.net\"\r\n }\r\n }\r\n}", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Compute/virtualMachines/vmcrptestps1075/extensions/IaaSDiagnostics?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczEwNzUvZXh0ZW5zaW9ucy9JYWFTRGlhZ25vc3RpY3M/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Azure.Diagnostics\",\r\n \"type\": \"IaaSDiagnostics\",\r\n \"typeHandlerVersion\": \"1.5\",\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yKF9Ub3RhbClcJSBQcm9jZXNzb3IgVGltZSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yIEluZm9ybWF0aW9uKF9Ub3RhbClcUHJvY2Vzc29yIEZyZXF1ZW5jeSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XEF2YWlsYWJsZSBCeXRlcyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcVENQdjZcU2VnbWVudHMgUmV0cmFuc21pdHRlZC9zZWMiIHNhbXBsZVJhdGU9IlBUMU0iIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFRDUHY0XFNlZ21lbnRzIFJldHJhbnNtaXR0ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrIEludGVyZmFjZSgqKVxCeXRlcyBTZW50L3NlYyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29yayBJbnRlcmZhY2UoKilcQnl0ZXMgUmVjZWl2ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"protectedSettings\": {\r\n \"storageAccountName\": \"stocrptestps10752\",\r\n \"storageAccountKey\": \"NlNYYCnKJTPzCHCVBOwejww3sSAsegU2IIsUvfSmeGC6w2LStboQaJ3VVbSylM83qyJasuiquMIinzGm/VqWmw==\",\r\n \"storageAccountEndPoint\": \"https://core.windows.net\"\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -4501,7 +4501,7 @@ "1736" ], "x-ms-client-request-id": [ - "1beb077c-9966-40a5-8779-d719ec7858a7" + "978ffae5-fdff-445b-acb3-998c94fee2d2" ], "accept-language": [ "en-US" @@ -4510,7 +4510,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Azure.Diagnostics\",\r\n \"type\": \"IaaSDiagnostics\",\r\n \"typeHandlerVersion\": \"1.5\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yKF9Ub3RhbClcJSBQcm9jZXNzb3IgVGltZSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yIEluZm9ybWF0aW9uKF9Ub3RhbClcUHJvY2Vzc29yIEZyZXF1ZW5jeSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XEF2YWlsYWJsZSBCeXRlcyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcVENQdjZcU2VnbWVudHMgUmV0cmFuc21pdHRlZC9zZWMiIHNhbXBsZVJhdGU9IlBUMU0iIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFRDUHY0XFNlZ21lbnRzIFJldHJhbnNtaXR0ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrIEludGVyZmFjZSgqKVxCeXRlcyBTZW50L3NlYyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29yayBJbnRlcmZhY2UoKilcQnl0ZXMgUmVjZWl2ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110/extensions/IaaSDiagnostics\",\r\n \"name\": \"IaaSDiagnostics\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Azure.Diagnostics\",\r\n \"type\": \"IaaSDiagnostics\",\r\n \"typeHandlerVersion\": \"1.5\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yKF9Ub3RhbClcJSBQcm9jZXNzb3IgVGltZSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yIEluZm9ybWF0aW9uKF9Ub3RhbClcUHJvY2Vzc29yIEZyZXF1ZW5jeSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XEF2YWlsYWJsZSBCeXRlcyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcVENQdjZcU2VnbWVudHMgUmV0cmFuc21pdHRlZC9zZWMiIHNhbXBsZVJhdGU9IlBUMU0iIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFRDUHY0XFNlZ21lbnRzIFJldHJhbnNtaXR0ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrIEludGVyZmFjZSgqKVxCeXRlcyBTZW50L3NlYyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29yayBJbnRlcmZhY2UoKilcQnl0ZXMgUmVjZWl2ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Compute/virtualMachines/vmcrptestps1075/extensions/IaaSDiagnostics\",\r\n \"name\": \"IaaSDiagnostics\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1801" @@ -4525,16 +4525,16 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/48091f46-d550-40bb-8243-0dc34b8318c0?api-version=2015-06-15" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/2380e604-8c57-4e8f-9385-20c643697212?api-version=2015-06-15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "48091f46-d550-40bb-8243-0dc34b8318c0" + "2380e604-8c57-4e8f-9385-20c643697212" ], "Cache-Control": [ "no-cache" @@ -4547,20 +4547,20 @@ "1193" ], "x-ms-correlation-request-id": [ - "04afc1b4-e591-403f-bd4d-311c46a51ef9" + "46281281-b205-496d-af5e-2e0796912342" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T103304Z:04afc1b4-e591-403f-bd4d-311c46a51ef9" + "NORTHCENTRALUS:20160220T144622Z:46281281-b205-496d-af5e-2e0796912342" ], "Date": [ - "Tue, 16 Feb 2016 10:33:04 GMT" + "Sat, 20 Feb 2016 14:46:22 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/48091f46-d550-40bb-8243-0dc34b8318c0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNDgwOTFmNDYtZDU1MC00MGJiLTgyNDMtMGRjMzRiODMxOGMwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/2380e604-8c57-4e8f-9385-20c643697212?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMjM4MGU2MDQtOGM1Ny00ZThmLTkzODUtMjBjNjQzNjk3MjEyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4568,7 +4568,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"48091f46-d550-40bb-8243-0dc34b8318c0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T11:33:03.8237734+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"2380e604-8c57-4e8f-9385-20c643697212\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-20T15:46:22.0696721+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -4586,10 +4586,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "aae53141-bdbf-4b20-be12-3a32c452a275" + "3ce29b78-1e2a-4312-92fa-74ab4c8b1bdd" ], "Cache-Control": [ "no-cache" @@ -4599,23 +4599,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14933" + "14928" ], "x-ms-correlation-request-id": [ - "444c190e-fce9-48ff-a450-1e1a26a4a37c" + "dc9c4b54-f879-4e8e-a7bd-cffa7fcdd2d3" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T103334Z:444c190e-fce9-48ff-a450-1e1a26a4a37c" + "NORTHCENTRALUS:20160220T144653Z:dc9c4b54-f879-4e8e-a7bd-cffa7fcdd2d3" ], "Date": [ - "Tue, 16 Feb 2016 10:33:34 GMT" + "Sat, 20 Feb 2016 14:46:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/48091f46-d550-40bb-8243-0dc34b8318c0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNDgwOTFmNDYtZDU1MC00MGJiLTgyNDMtMGRjMzRiODMxOGMwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/2380e604-8c57-4e8f-9385-20c643697212?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMjM4MGU2MDQtOGM1Ny00ZThmLTkzODUtMjBjNjQzNjk3MjEyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4623,7 +4623,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"48091f46-d550-40bb-8243-0dc34b8318c0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T11:33:03.8237734+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"2380e604-8c57-4e8f-9385-20c643697212\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-20T15:46:22.0696721+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -4641,10 +4641,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "7fa8fff6-a1f3-40b7-b67d-458f8ad8e137" + "847cefef-1674-4d69-a6bf-ae2caa3ba327" ], "Cache-Control": [ "no-cache" @@ -4654,23 +4654,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14932" + "14927" ], "x-ms-correlation-request-id": [ - "ca00f434-9df6-4e89-834c-fbc12bc77b87" + "0f7d724e-dd90-4a9a-ac4d-e86664527b24" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T103404Z:ca00f434-9df6-4e89-834c-fbc12bc77b87" + "NORTHCENTRALUS:20160220T144723Z:0f7d724e-dd90-4a9a-ac4d-e86664527b24" ], "Date": [ - "Tue, 16 Feb 2016 10:34:04 GMT" + "Sat, 20 Feb 2016 14:47:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/48091f46-d550-40bb-8243-0dc34b8318c0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNDgwOTFmNDYtZDU1MC00MGJiLTgyNDMtMGRjMzRiODMxOGMwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/2380e604-8c57-4e8f-9385-20c643697212?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMjM4MGU2MDQtOGM1Ny00ZThmLTkzODUtMjBjNjQzNjk3MjEyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4678,7 +4678,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"48091f46-d550-40bb-8243-0dc34b8318c0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T11:33:03.8237734+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"2380e604-8c57-4e8f-9385-20c643697212\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-20T15:46:22.0696721+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -4696,10 +4696,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "f32456bc-f63a-4444-b167-0a9f175a8f8a" + "96aaaa75-3292-4da4-8eaa-24633413bd54" ], "Cache-Control": [ "no-cache" @@ -4709,23 +4709,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14931" + "14926" ], "x-ms-correlation-request-id": [ - "1a1d374c-dc7a-4bbb-a710-e30d4dd9006d" + "e24af826-6286-4693-819d-5dbf1d578904" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T103435Z:1a1d374c-dc7a-4bbb-a710-e30d4dd9006d" + "NORTHCENTRALUS:20160220T144753Z:e24af826-6286-4693-819d-5dbf1d578904" ], "Date": [ - "Tue, 16 Feb 2016 10:34:34 GMT" + "Sat, 20 Feb 2016 14:47:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/48091f46-d550-40bb-8243-0dc34b8318c0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNDgwOTFmNDYtZDU1MC00MGJiLTgyNDMtMGRjMzRiODMxOGMwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/2380e604-8c57-4e8f-9385-20c643697212?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMjM4MGU2MDQtOGM1Ny00ZThmLTkzODUtMjBjNjQzNjk3MjEyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4733,7 +4733,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"48091f46-d550-40bb-8243-0dc34b8318c0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T11:33:03.8237734+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"2380e604-8c57-4e8f-9385-20c643697212\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-20T15:46:22.0696721+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -4751,10 +4751,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "90a2721e-4760-4354-a453-9dc70111f119" + "325eb994-7480-4dd1-a28e-20f6d0512183" ], "Cache-Control": [ "no-cache" @@ -4764,23 +4764,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14931" + "14925" ], "x-ms-correlation-request-id": [ - "4b61409d-905d-40cb-be25-67bdea90c651" + "a9212e81-ad7b-4aea-a058-de98f2895279" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T103505Z:4b61409d-905d-40cb-be25-67bdea90c651" + "NORTHCENTRALUS:20160220T144823Z:a9212e81-ad7b-4aea-a058-de98f2895279" ], "Date": [ - "Tue, 16 Feb 2016 10:35:04 GMT" + "Sat, 20 Feb 2016 14:48:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/48091f46-d550-40bb-8243-0dc34b8318c0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNDgwOTFmNDYtZDU1MC00MGJiLTgyNDMtMGRjMzRiODMxOGMwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/2380e604-8c57-4e8f-9385-20c643697212?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMjM4MGU2MDQtOGM1Ny00ZThmLTkzODUtMjBjNjQzNjk3MjEyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4788,7 +4788,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"48091f46-d550-40bb-8243-0dc34b8318c0\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-02-16T11:33:03.8237734+01:00\",\r\n \"endTime\": \"2016-02-16T11:35:13.9956478+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"2380e604-8c57-4e8f-9385-20c643697212\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-02-20T15:46:22.0696721+01:00\",\r\n \"endTime\": \"2016-02-20T15:48:33.8198755+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "191" @@ -4806,10 +4806,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "da183bba-b1bd-4f75-aa86-a7bc9250b192" + "d07861b8-7268-49f9-b124-9221586308d3" ], "Cache-Control": [ "no-cache" @@ -4819,23 +4819,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14930" + "14924" ], "x-ms-correlation-request-id": [ - "9376a7c6-d9ad-45f5-94c7-a5fddf74e961" + "9eccbc32-6b12-46a5-9cfb-259a79fbefd9" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T103535Z:9376a7c6-d9ad-45f5-94c7-a5fddf74e961" + "NORTHCENTRALUS:20160220T144853Z:9eccbc32-6b12-46a5-9cfb-259a79fbefd9" ], "Date": [ - "Tue, 16 Feb 2016 10:35:35 GMT" + "Sat, 20 Feb 2016 14:48:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110/extensions/IaaSDiagnostics?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczYxMTAvZXh0ZW5zaW9ucy9JYWFTRGlhZ25vc3RpY3M/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Compute/virtualMachines/vmcrptestps1075/extensions/IaaSDiagnostics?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczEwNzUvZXh0ZW5zaW9ucy9JYWFTRGlhZ25vc3RpY3M/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4843,7 +4843,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Azure.Diagnostics\",\r\n \"type\": \"IaaSDiagnostics\",\r\n \"typeHandlerVersion\": \"1.5\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yKF9Ub3RhbClcJSBQcm9jZXNzb3IgVGltZSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yIEluZm9ybWF0aW9uKF9Ub3RhbClcUHJvY2Vzc29yIEZyZXF1ZW5jeSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XEF2YWlsYWJsZSBCeXRlcyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcVENQdjZcU2VnbWVudHMgUmV0cmFuc21pdHRlZC9zZWMiIHNhbXBsZVJhdGU9IlBUMU0iIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFRDUHY0XFNlZ21lbnRzIFJldHJhbnNtaXR0ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrIEludGVyZmFjZSgqKVxCeXRlcyBTZW50L3NlYyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29yayBJbnRlcmZhY2UoKilcQnl0ZXMgUmVjZWl2ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110/extensions/IaaSDiagnostics\",\r\n \"name\": \"IaaSDiagnostics\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Azure.Diagnostics\",\r\n \"type\": \"IaaSDiagnostics\",\r\n \"typeHandlerVersion\": \"1.5\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yKF9Ub3RhbClcJSBQcm9jZXNzb3IgVGltZSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yIEluZm9ybWF0aW9uKF9Ub3RhbClcUHJvY2Vzc29yIEZyZXF1ZW5jeSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XEF2YWlsYWJsZSBCeXRlcyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcVENQdjZcU2VnbWVudHMgUmV0cmFuc21pdHRlZC9zZWMiIHNhbXBsZVJhdGU9IlBUMU0iIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFRDUHY0XFNlZ21lbnRzIFJldHJhbnNtaXR0ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrIEludGVyZmFjZSgqKVxCeXRlcyBTZW50L3NlYyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29yayBJbnRlcmZhY2UoKilcQnl0ZXMgUmVjZWl2ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Compute/virtualMachines/vmcrptestps1075/extensions/IaaSDiagnostics\",\r\n \"name\": \"IaaSDiagnostics\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1802" @@ -4861,10 +4861,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "0686e84f-d0b1-4d3c-bac2-737acbc7fb01" + "60306b34-c7ee-499e-97c2-f29528417487" ], "Cache-Control": [ "no-cache" @@ -4874,25 +4874,25 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14929" + "14923" ], "x-ms-correlation-request-id": [ - "84329501-fc9c-4890-938e-3592f7792110" + "f9124beb-1895-43c0-b91f-eb3a20fb8c32" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T103535Z:84329501-fc9c-4890-938e-3592f7792110" + "NORTHCENTRALUS:20160220T144854Z:f9124beb-1895-43c0-b91f-eb3a20fb8c32" ], "Date": [ - "Tue, 16 Feb 2016 10:35:35 GMT" + "Sat, 20 Feb 2016 14:48:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110/extensions/AzureCATExtensionHandler?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczYxMTAvZXh0ZW5zaW9ucy9BenVyZUNBVEV4dGVuc2lvbkhhbmRsZXI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Compute/virtualMachines/vmcrptestps1075/extensions/AzureCATExtensionHandler?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczEwNzUvZXh0ZW5zaW9ucy9BenVyZUNBVEV4dGVuc2lvbkhhbmRsZXI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"type\": \"AzureCATExtensionHandler\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_DS2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.2\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.2\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"stocrptestps6110.hour.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"stocrptestps6110.minute.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps61102\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps61102.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"protectedSettings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"wad.key\",\r\n \"value\": \"DAwcej5z4h3UHbygYGFRbwR9FYxd2K50h3L1lpSpKvYV7nVJ0KqEgJR+iK3OWuRVcx0+MLy1IauSToh8kWNXzw==\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"type\": \"AzureCATExtensionHandler\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_DS2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.2\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.2\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"stocrptestps1075.hour.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"stocrptestps1075.minute.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps10752\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps10752.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"protectedSettings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"wad.key\",\r\n \"value\": \"NlNYYCnKJTPzCHCVBOwejww3sSAsegU2IIsUvfSmeGC6w2LStboQaJ3VVbSylM83qyJasuiquMIinzGm/VqWmw==\"\r\n }\r\n ]\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -4901,7 +4901,7 @@ "3219" ], "x-ms-client-request-id": [ - "089eaad3-d696-4a65-b9ec-fab40d3b90f9" + "b6c5dbc2-6f5b-418e-ae4b-91ad00cec171" ], "accept-language": [ "en-US" @@ -4910,7 +4910,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"type\": \"AzureCATExtensionHandler\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_DS2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.2\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.2\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"stocrptestps6110.hour.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"stocrptestps6110.minute.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps61102\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps61102.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110/extensions/AzureCATExtensionHandler\",\r\n \"name\": \"AzureCATExtensionHandler\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"type\": \"AzureCATExtensionHandler\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_DS2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.2\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.2\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"stocrptestps1075.hour.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"stocrptestps1075.minute.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps10752\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps10752.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Compute/virtualMachines/vmcrptestps1075/extensions/AzureCATExtensionHandler\",\r\n \"name\": \"AzureCATExtensionHandler\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1918" @@ -4925,16 +4925,16 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/c8ff7fc6-5500-4748-a400-2b2a54137a55?api-version=2015-06-15" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/c6915fd3-1534-44cc-b61c-c1ca5a24e7c4?api-version=2015-06-15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "c8ff7fc6-5500-4748-a400-2b2a54137a55" + "c6915fd3-1534-44cc-b61c-c1ca5a24e7c4" ], "Cache-Control": [ "no-cache" @@ -4947,20 +4947,20 @@ "1192" ], "x-ms-correlation-request-id": [ - "269d3016-bc3a-4bff-9ac9-ff003595630e" + "1d8f3849-d01e-4335-a078-bd09cdcfeb87" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T103541Z:269d3016-bc3a-4bff-9ac9-ff003595630e" + "NORTHCENTRALUS:20160220T144859Z:1d8f3849-d01e-4335-a078-bd09cdcfeb87" ], "Date": [ - "Tue, 16 Feb 2016 10:35:41 GMT" + "Sat, 20 Feb 2016 14:48:58 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/c8ff7fc6-5500-4748-a400-2b2a54137a55?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYzhmZjdmYzYtNTUwMC00NzQ4LWE0MDAtMmIyYTU0MTM3YTU1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/c6915fd3-1534-44cc-b61c-c1ca5a24e7c4?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYzY5MTVmZDMtMTUzNC00NGNjLWI2MWMtYzFjYTVhMjRlN2M0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4968,7 +4968,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"c8ff7fc6-5500-4748-a400-2b2a54137a55\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T11:35:40.7456485+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"c6915fd3-1534-44cc-b61c-c1ca5a24e7c4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-20T15:48:57.9292354+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -4986,10 +4986,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "a35dc835-f403-4d08-8a3e-7b6e31b45b8f" + "5d5c6895-7b0e-4952-af4f-94c59f8c5edb" ], "Cache-Control": [ "no-cache" @@ -4999,23 +4999,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14927" + "14921" ], "x-ms-correlation-request-id": [ - "6008016c-a360-4731-a999-09ddc1e06b78" + "ef964220-cae0-4bf7-b38a-b14292220aab" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T103612Z:6008016c-a360-4731-a999-09ddc1e06b78" + "NORTHCENTRALUS:20160220T144929Z:ef964220-cae0-4bf7-b38a-b14292220aab" ], "Date": [ - "Tue, 16 Feb 2016 10:36:11 GMT" + "Sat, 20 Feb 2016 14:49:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/c8ff7fc6-5500-4748-a400-2b2a54137a55?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYzhmZjdmYzYtNTUwMC00NzQ4LWE0MDAtMmIyYTU0MTM3YTU1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/c6915fd3-1534-44cc-b61c-c1ca5a24e7c4?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYzY5MTVmZDMtMTUzNC00NGNjLWI2MWMtYzFjYTVhMjRlN2M0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5023,7 +5023,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"c8ff7fc6-5500-4748-a400-2b2a54137a55\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-02-16T11:35:40.7456485+01:00\",\r\n \"endTime\": \"2016-02-16T11:36:27.1675278+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"c6915fd3-1534-44cc-b61c-c1ca5a24e7c4\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-02-20T15:48:57.9292354+01:00\",\r\n \"endTime\": \"2016-02-20T15:49:51.8668583+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "191" @@ -5041,10 +5041,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "8fc532e6-a6f5-4363-a0bb-884a78d53853" + "5b56e3d2-97ce-46a4-9840-a4315e7e6979" ], "Cache-Control": [ "no-cache" @@ -5054,23 +5054,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14926" + "14920" ], "x-ms-correlation-request-id": [ - "778ff851-0bd5-4b86-8bef-223bbfb037a8" + "4d8da826-7663-4f12-8484-8698209e33b3" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T103642Z:778ff851-0bd5-4b86-8bef-223bbfb037a8" + "NORTHCENTRALUS:20160220T144959Z:4d8da826-7663-4f12-8484-8698209e33b3" ], "Date": [ - "Tue, 16 Feb 2016 10:36:42 GMT" + "Sat, 20 Feb 2016 14:49:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110/extensions/AzureCATExtensionHandler?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczYxMTAvZXh0ZW5zaW9ucy9BenVyZUNBVEV4dGVuc2lvbkhhbmRsZXI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Compute/virtualMachines/vmcrptestps1075/extensions/AzureCATExtensionHandler?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczEwNzUvZXh0ZW5zaW9ucy9BenVyZUNBVEV4dGVuc2lvbkhhbmRsZXI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5078,7 +5078,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"type\": \"AzureCATExtensionHandler\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_DS2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.2\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.2\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"stocrptestps6110.hour.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"stocrptestps6110.minute.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps61102\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps61102.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110/extensions/AzureCATExtensionHandler\",\r\n \"name\": \"AzureCATExtensionHandler\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"type\": \"AzureCATExtensionHandler\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_DS2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.2\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.2\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"stocrptestps1075.hour.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"stocrptestps1075.minute.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps10752\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps10752.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Compute/virtualMachines/vmcrptestps1075/extensions/AzureCATExtensionHandler\",\r\n \"name\": \"AzureCATExtensionHandler\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1919" @@ -5096,10 +5096,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "3ab2c84e-4a23-4820-b82f-333525be98ed" + "70caeb84-0eea-49c2-9818-f538fba35128" ], "Cache-Control": [ "no-cache" @@ -5109,28 +5109,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14925" + "14919" ], "x-ms-correlation-request-id": [ - "670715a8-4d03-4f76-87e6-a81dae705182" + "1e0ed0b0-b95d-4935-bd77-4eb298d9e3bd" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T103642Z:670715a8-4d03-4f76-87e6-a81dae705182" + "NORTHCENTRALUS:20160220T144959Z:1e0ed0b0-b95d-4935-bd77-4eb298d9e3bd" ], "Date": [ - "Tue, 16 Feb 2016 10:36:42 GMT" + "Sat, 20 Feb 2016 14:49:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110/extensions/AzureCATExtensionHandler?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczYxMTAvZXh0ZW5zaW9ucy9BenVyZUNBVEV4dGVuc2lvbkhhbmRsZXI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Compute/virtualMachines/vmcrptestps1075/extensions/AzureCATExtensionHandler?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczEwNzUvZXh0ZW5zaW9ucy9BenVyZUNBVEV4dGVuc2lvbkhhbmRsZXI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "48cf2f24-7b6f-4752-888d-65ed96a86030" + "457adb45-ecf8-49a3-8a7f-1191d2e33222" ], "accept-language": [ "en-US" @@ -5139,7 +5139,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"type\": \"AzureCATExtensionHandler\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_DS2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.2\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.2\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"stocrptestps6110.hour.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"stocrptestps6110.minute.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps61102\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps61102.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110/extensions/AzureCATExtensionHandler\",\r\n \"name\": \"AzureCATExtensionHandler\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"type\": \"AzureCATExtensionHandler\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_DS2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.2\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.2\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"key\": \"stocrptestps1075.hour.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"stocrptestps1075.minute.ispremium\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps10752\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps10752.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Compute/virtualMachines/vmcrptestps1075/extensions/AzureCATExtensionHandler\",\r\n \"name\": \"AzureCATExtensionHandler\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1919" @@ -5157,10 +5157,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "aa65225b-7514-40db-9fe7-aebd656b34ed" + "fed2270a-f9a1-4e19-a9d0-a31f5b515535" ], "Cache-Control": [ "no-cache" @@ -5170,28 +5170,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14923" + "14917" ], "x-ms-correlation-request-id": [ - "1037e41c-7002-4dd4-acd5-08c070b47363" + "0536e57f-abf6-48ca-9b85-b45e67059db0" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T103644Z:1037e41c-7002-4dd4-acd5-08c070b47363" + "NORTHCENTRALUS:20160220T145000Z:0536e57f-abf6-48ca-9b85-b45e67059db0" ], "Date": [ - "Tue, 16 Feb 2016 10:36:43 GMT" + "Sat, 20 Feb 2016 14:49:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps6110/providers/Microsoft.Compute/virtualMachines/vmcrptestps6110/extensions/AzureCATExtensionHandler?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczYxMTAvZXh0ZW5zaW9ucy9BenVyZUNBVEV4dGVuc2lvbkhhbmRsZXI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps1075/providers/Microsoft.Compute/virtualMachines/vmcrptestps1075/extensions/AzureCATExtensionHandler?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczEwNzUvZXh0ZW5zaW9ucy9BenVyZUNBVEV4dGVuc2lvbkhhbmRsZXI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d6b44fde-016d-4985-96dc-4d4327362e3e" + "d6b152ea-ebf7-49db-b406-3fa51487f768" ], "accept-language": [ "en-US" @@ -5212,22 +5212,22 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/bc4a9e88-2e7d-4e4f-a728-7e9d41ec782a?api-version=2015-06-15" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/07e0aeb7-6f1b-4f0b-9807-287b6753c4c5?api-version=2015-06-15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "bc4a9e88-2e7d-4e4f-a728-7e9d41ec782a" + "07e0aeb7-6f1b-4f0b-9807-287b6753c4c5" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/bc4a9e88-2e7d-4e4f-a728-7e9d41ec782a?monitor=true&api-version=2015-06-15" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/07e0aeb7-6f1b-4f0b-9807-287b6753c4c5?monitor=true&api-version=2015-06-15" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -5237,20 +5237,20 @@ "1191" ], "x-ms-correlation-request-id": [ - "c1969e40-bf0c-451c-899c-c3eb43c578a4" + "bdb456fb-35eb-4a21-8dbc-34aadcf4230d" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T103651Z:c1969e40-bf0c-451c-899c-c3eb43c578a4" + "NORTHCENTRALUS:20160220T145003Z:bdb456fb-35eb-4a21-8dbc-34aadcf4230d" ], "Date": [ - "Tue, 16 Feb 2016 10:36:50 GMT" + "Sat, 20 Feb 2016 14:50:03 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/bc4a9e88-2e7d-4e4f-a728-7e9d41ec782a?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYmM0YTllODgtMmU3ZC00ZTRmLWE3MjgtN2U5ZDQxZWM3ODJhP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/07e0aeb7-6f1b-4f0b-9807-287b6753c4c5?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMDdlMGFlYjctNmYxYi00ZjBiLTk4MDctMjg3YjY3NTNjNGM1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5258,7 +5258,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"bc4a9e88-2e7d-4e4f-a728-7e9d41ec782a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T11:36:51.0269011+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"07e0aeb7-6f1b-4f0b-9807-287b6753c4c5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-20T15:50:02.7574504+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -5276,10 +5276,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "b90b4d2f-fbb8-4b39-82eb-6362f79219b8" + "ee60d108-007d-43e3-bbec-c8cfc3f6733b" ], "Cache-Control": [ "no-cache" @@ -5289,23 +5289,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14919" + "14911" ], "x-ms-correlation-request-id": [ - "34a65099-91f8-4a0c-bf52-c9db44a04cc3" + "a6ac2f42-f652-4560-bc8b-473b1e098bd4" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T103721Z:34a65099-91f8-4a0c-bf52-c9db44a04cc3" + "NORTHCENTRALUS:20160220T145033Z:a6ac2f42-f652-4560-bc8b-473b1e098bd4" ], "Date": [ - "Tue, 16 Feb 2016 10:37:21 GMT" + "Sat, 20 Feb 2016 14:50:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/bc4a9e88-2e7d-4e4f-a728-7e9d41ec782a?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYmM0YTllODgtMmU3ZC00ZTRmLWE3MjgtN2U5ZDQxZWM3ODJhP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/07e0aeb7-6f1b-4f0b-9807-287b6753c4c5?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMDdlMGFlYjctNmYxYi00ZjBiLTk4MDctMjg3YjY3NTNjNGM1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5313,10 +5313,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"bc4a9e88-2e7d-4e4f-a728-7e9d41ec782a\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-02-16T11:36:51.0269011+01:00\",\r\n \"endTime\": \"2016-02-16T11:37:46.995629+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"07e0aeb7-6f1b-4f0b-9807-287b6753c4c5\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-02-20T15:50:02.7574504+01:00\",\r\n \"endTime\": \"2016-02-20T15:50:55.7418451+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "190" + "191" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5331,10 +5331,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "0212ff92-1710-4cf7-afec-8a78200ee821" + "4064de13-10eb-41e1-8636-ea1947820248" ], "Cache-Control": [ "no-cache" @@ -5344,23 +5344,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14918" + "14909" ], "x-ms-correlation-request-id": [ - "bae2c683-d570-47a2-b18a-cfbe9cbc5f97" + "7492c15b-2ad2-4798-89c3-60cb961377d4" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T103751Z:bae2c683-d570-47a2-b18a-cfbe9cbc5f97" + "NORTHCENTRALUS:20160220T145103Z:7492c15b-2ad2-4798-89c3-60cb961377d4" ], "Date": [ - "Tue, 16 Feb 2016 10:37:51 GMT" + "Sat, 20 Feb 2016 14:51:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourcegroups/crptestps6110?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczYxMTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourcegroups/crptestps1075?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczEwNzU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -5383,448 +5383,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" - ], - "x-ms-request-id": [ - "0c025ba2-36b6-4bbe-9252-87c74d1629cd" - ], - "x-ms-correlation-request-id": [ - "0c025ba2-36b6-4bbe-9252-87c74d1629cd" - ], - "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T103753Z:0c025ba2-36b6-4bbe-9252-87c74d1629cd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 16 Feb 2016 10:37:53 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yTVRFd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ - "14936" - ], - "x-ms-request-id": [ - "59150404-8599-4f64-98b7-6bebd3ae17bf" - ], - "x-ms-correlation-request-id": [ - "59150404-8599-4f64-98b7-6bebd3ae17bf" - ], - "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T103753Z:59150404-8599-4f64-98b7-6bebd3ae17bf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 16 Feb 2016 10:37:53 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yTVRFd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ - "14934" - ], - "x-ms-request-id": [ - "b376da91-9705-472c-b9a1-91430bd0a424" - ], - "x-ms-correlation-request-id": [ - "b376da91-9705-472c-b9a1-91430bd0a424" - ], - "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T103809Z:b376da91-9705-472c-b9a1-91430bd0a424" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 16 Feb 2016 10:38:08 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yTVRFd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ - "14933" - ], - "x-ms-request-id": [ - "15cb00e8-aead-4437-83a5-dbee651cfb5d" - ], - "x-ms-correlation-request-id": [ - "15cb00e8-aead-4437-83a5-dbee651cfb5d" - ], - "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T103824Z:15cb00e8-aead-4437-83a5-dbee651cfb5d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 16 Feb 2016 10:38:23 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yTVRFd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ - "14932" - ], - "x-ms-request-id": [ - "905ad168-1b80-413b-8793-5a755d6c7578" - ], - "x-ms-correlation-request-id": [ - "905ad168-1b80-413b-8793-5a755d6c7578" - ], - "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T103840Z:905ad168-1b80-413b-8793-5a755d6c7578" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 16 Feb 2016 10:38:40 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yTVRFd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ - "14930" - ], - "x-ms-request-id": [ - "35a49926-0dd3-49fe-8e1e-bece233208f0" - ], - "x-ms-correlation-request-id": [ - "35a49926-0dd3-49fe-8e1e-bece233208f0" - ], - "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T103855Z:35a49926-0dd3-49fe-8e1e-bece233208f0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 16 Feb 2016 10:38:54 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yTVRFd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ - "14929" - ], - "x-ms-request-id": [ - "9f9a5f48-03fb-4d14-ae1e-32a27cb9f9ee" - ], - "x-ms-correlation-request-id": [ - "9f9a5f48-03fb-4d14-ae1e-32a27cb9f9ee" - ], - "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T103910Z:9f9a5f48-03fb-4d14-ae1e-32a27cb9f9ee" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 16 Feb 2016 10:39:09 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yTVRFd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ - "14928" - ], - "x-ms-request-id": [ - "b748bedf-7f38-4e8a-90e8-2c1d481a3ec0" - ], - "x-ms-correlation-request-id": [ - "b748bedf-7f38-4e8a-90e8-2c1d481a3ec0" - ], - "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T103925Z:b748bedf-7f38-4e8a-90e8-2c1d481a3ec0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 16 Feb 2016 10:39:25 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yTVRFd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/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": [ - "14927" + "1198" ], "x-ms-request-id": [ - "605ac294-c654-483a-950b-9a715aa9af4a" + "dc049774-7caf-4435-9a55-2614a27f772b" ], "x-ms-correlation-request-id": [ - "605ac294-c654-483a-950b-9a715aa9af4a" + "dc049774-7caf-4435-9a55-2614a27f772b" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T103941Z:605ac294-c654-483a-950b-9a715aa9af4a" + "NORTHCENTRALUS:20160220T145106Z:dc049774-7caf-4435-9a55-2614a27f772b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5833,17 +5401,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 10:39:40 GMT" + "Sat, 20 Feb 2016 14:51:05 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMDc1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yTVRFd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMDc1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TURjMUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5869,16 +5437,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14926" + "14955" ], "x-ms-request-id": [ - "513b5ee3-6a27-4d72-9cce-6e6d9b116055" + "87470445-e781-41cd-9fbb-ccb5924fda8d" ], "x-ms-correlation-request-id": [ - "513b5ee3-6a27-4d72-9cce-6e6d9b116055" + "87470445-e781-41cd-9fbb-ccb5924fda8d" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T103956Z:513b5ee3-6a27-4d72-9cce-6e6d9b116055" + "NORTHCENTRALUS:20160220T145106Z:87470445-e781-41cd-9fbb-ccb5924fda8d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5887,17 +5455,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 10:39:56 GMT" + "Sat, 20 Feb 2016 14:51:05 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMDc1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yTVRFd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMDc1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TURjMUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5923,16 +5491,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14925" + "14954" ], "x-ms-request-id": [ - "28128428-d8f3-4f7f-bf37-b74861189c54" + "359b8799-009a-45db-91b9-a8c5b0e6d3ff" ], "x-ms-correlation-request-id": [ - "28128428-d8f3-4f7f-bf37-b74861189c54" + "359b8799-009a-45db-91b9-a8c5b0e6d3ff" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T104011Z:28128428-d8f3-4f7f-bf37-b74861189c54" + "NORTHCENTRALUS:20160220T145121Z:359b8799-009a-45db-91b9-a8c5b0e6d3ff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5941,17 +5509,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 10:40:10 GMT" + "Sat, 20 Feb 2016 14:51:21 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMDc1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yTVRFd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMDc1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TURjMUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5977,16 +5545,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14924" + "14953" ], "x-ms-request-id": [ - "7916de52-003f-4ffb-a3c1-0084f54fc207" + "55adcc69-370c-40d6-9afd-50d30179c358" ], "x-ms-correlation-request-id": [ - "7916de52-003f-4ffb-a3c1-0084f54fc207" + "55adcc69-370c-40d6-9afd-50d30179c358" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T104026Z:7916de52-003f-4ffb-a3c1-0084f54fc207" + "NORTHCENTRALUS:20160220T145137Z:55adcc69-370c-40d6-9afd-50d30179c358" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5995,17 +5563,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 10:40:26 GMT" + "Sat, 20 Feb 2016 14:51:37 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMDc1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yTVRFd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMDc1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TURjMUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6031,16 +5599,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14923" + "14952" ], "x-ms-request-id": [ - "57c7eccf-3053-47e4-af4c-64b3d8e15c08" + "1a81bb6c-43bb-4e17-8490-f79d4ba152eb" ], "x-ms-correlation-request-id": [ - "57c7eccf-3053-47e4-af4c-64b3d8e15c08" + "1a81bb6c-43bb-4e17-8490-f79d4ba152eb" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T104041Z:57c7eccf-3053-47e4-af4c-64b3d8e15c08" + "NORTHCENTRALUS:20160220T145153Z:1a81bb6c-43bb-4e17-8490-f79d4ba152eb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6049,17 +5617,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 10:40:41 GMT" + "Sat, 20 Feb 2016 14:51:52 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMDc1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yTVRFd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMDc1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TURjMUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6085,16 +5653,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14922" + "14951" ], "x-ms-request-id": [ - "09c6ae90-b2f6-4ae3-9037-786eff42e11e" + "c03fc70a-068d-4340-961f-3d52ba68da84" ], "x-ms-correlation-request-id": [ - "09c6ae90-b2f6-4ae3-9037-786eff42e11e" + "c03fc70a-068d-4340-961f-3d52ba68da84" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T104057Z:09c6ae90-b2f6-4ae3-9037-786eff42e11e" + "NORTHCENTRALUS:20160220T145208Z:c03fc70a-068d-4340-961f-3d52ba68da84" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6103,17 +5671,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 10:40:56 GMT" + "Sat, 20 Feb 2016 14:52:08 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMDc1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yTVRFd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMDc1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TURjMUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6139,16 +5707,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14921" + "14950" ], "x-ms-request-id": [ - "0bb7ef45-d5c2-4e5f-a586-661510621593" + "4d354539-e809-4439-934e-8b099e35c755" ], "x-ms-correlation-request-id": [ - "0bb7ef45-d5c2-4e5f-a586-661510621593" + "4d354539-e809-4439-934e-8b099e35c755" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T104112Z:0bb7ef45-d5c2-4e5f-a586-661510621593" + "NORTHCENTRALUS:20160220T145223Z:4d354539-e809-4439-934e-8b099e35c755" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6157,17 +5725,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 10:41:12 GMT" + "Sat, 20 Feb 2016 14:52:23 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMDc1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yTVRFd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMDc1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TURjMUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6193,16 +5761,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14920" + "14949" ], "x-ms-request-id": [ - "841b350e-67e9-4442-9a20-e8f87012de1d" + "86c22928-df64-4d01-a8c1-73f88d79aa5e" ], "x-ms-correlation-request-id": [ - "841b350e-67e9-4442-9a20-e8f87012de1d" + "86c22928-df64-4d01-a8c1-73f88d79aa5e" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T104128Z:841b350e-67e9-4442-9a20-e8f87012de1d" + "NORTHCENTRALUS:20160220T145239Z:86c22928-df64-4d01-a8c1-73f88d79aa5e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6211,17 +5779,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 10:41:27 GMT" + "Sat, 20 Feb 2016 14:52:38 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMDc1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yTVRFd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMDc1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TURjMUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6247,16 +5815,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14919" + "14946" ], "x-ms-request-id": [ - "e56c29bc-ceb9-4ab5-a565-6497e69a0f63" + "22e4c699-c43f-4d55-b54d-22613cdf5386" ], "x-ms-correlation-request-id": [ - "e56c29bc-ceb9-4ab5-a565-6497e69a0f63" + "22e4c699-c43f-4d55-b54d-22613cdf5386" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T104143Z:e56c29bc-ceb9-4ab5-a565-6497e69a0f63" + "NORTHCENTRALUS:20160220T145254Z:22e4c699-c43f-4d55-b54d-22613cdf5386" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6265,17 +5833,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 10:41:43 GMT" + "Sat, 20 Feb 2016 14:52:54 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMDc1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yTVRFd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMDc1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TURjMUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6301,16 +5869,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14918" + "14945" ], "x-ms-request-id": [ - "77a51781-6c4e-4845-a88e-e49944b97b30" + "f6cc9a4f-2912-4032-ba8a-4d9b32020f2b" ], "x-ms-correlation-request-id": [ - "77a51781-6c4e-4845-a88e-e49944b97b30" + "f6cc9a4f-2912-4032-ba8a-4d9b32020f2b" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T104159Z:77a51781-6c4e-4845-a88e-e49944b97b30" + "NORTHCENTRALUS:20160220T145309Z:f6cc9a4f-2912-4032-ba8a-4d9b32020f2b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6319,17 +5887,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 10:41:59 GMT" + "Sat, 20 Feb 2016 14:53:09 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMDc1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yTVRFd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMDc1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TURjMUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6355,16 +5923,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14917" + "14943" ], "x-ms-request-id": [ - "b9cc0287-ac9e-44df-adfc-c806e9e7690e" + "11e06b84-2b7d-427f-a1de-6b36b491f0d2" ], "x-ms-correlation-request-id": [ - "b9cc0287-ac9e-44df-adfc-c806e9e7690e" + "11e06b84-2b7d-427f-a1de-6b36b491f0d2" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T104214Z:b9cc0287-ac9e-44df-adfc-c806e9e7690e" + "NORTHCENTRALUS:20160220T145325Z:11e06b84-2b7d-427f-a1de-6b36b491f0d2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6373,17 +5941,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 10:42:14 GMT" + "Sat, 20 Feb 2016 14:53:24 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMDc1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yTVRFd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMDc1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TURjMUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6409,16 +5977,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14916" + "14942" ], "x-ms-request-id": [ - "bb7ad7f1-7461-4603-90a2-371feeb2538c" + "739540e1-413d-45a6-bfb0-fe005dff9daf" ], "x-ms-correlation-request-id": [ - "bb7ad7f1-7461-4603-90a2-371feeb2538c" + "739540e1-413d-45a6-bfb0-fe005dff9daf" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T104229Z:bb7ad7f1-7461-4603-90a2-371feeb2538c" + "NORTHCENTRALUS:20160220T145341Z:739540e1-413d-45a6-bfb0-fe005dff9daf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6427,17 +5995,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 10:42:29 GMT" + "Sat, 20 Feb 2016 14:53:41 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMDc1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yTVRFd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMDc1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TURjMUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6463,16 +6031,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14915" + "14941" ], "x-ms-request-id": [ - "340ef7e2-beb6-4ca4-b22a-6237ff2d6ba4" + "85f4976d-8722-4b42-b5b1-05d3d70fc1f8" ], "x-ms-correlation-request-id": [ - "340ef7e2-beb6-4ca4-b22a-6237ff2d6ba4" + "85f4976d-8722-4b42-b5b1-05d3d70fc1f8" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T104245Z:340ef7e2-beb6-4ca4-b22a-6237ff2d6ba4" + "NORTHCENTRALUS:20160220T145356Z:85f4976d-8722-4b42-b5b1-05d3d70fc1f8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6481,17 +6049,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 10:42:44 GMT" + "Sat, 20 Feb 2016 14:53:56 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMDc1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yTVRFd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMDc1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TURjMUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6517,16 +6085,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14914" + "14940" ], "x-ms-request-id": [ - "50b35405-18c8-45bb-b7e5-5e41de5330bb" + "e6700e42-6f57-409e-a89e-59bea8bc2db8" ], "x-ms-correlation-request-id": [ - "50b35405-18c8-45bb-b7e5-5e41de5330bb" + "e6700e42-6f57-409e-a89e-59bea8bc2db8" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T104300Z:50b35405-18c8-45bb-b7e5-5e41de5330bb" + "NORTHCENTRALUS:20160220T145412Z:e6700e42-6f57-409e-a89e-59bea8bc2db8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6535,17 +6103,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 10:42:59 GMT" + "Sat, 20 Feb 2016 14:54:12 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMDc1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yTVRFd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMDc1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TURjMUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6571,16 +6139,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14912" + "14939" ], "x-ms-request-id": [ - "2a1c826e-9070-46a9-8259-34409fb331bf" + "9792a94c-3f54-41e9-91d7-d899820fa605" ], "x-ms-correlation-request-id": [ - "2a1c826e-9070-46a9-8259-34409fb331bf" + "9792a94c-3f54-41e9-91d7-d899820fa605" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T104315Z:2a1c826e-9070-46a9-8259-34409fb331bf" + "NORTHCENTRALUS:20160220T145427Z:9792a94c-3f54-41e9-91d7-d899820fa605" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6589,17 +6157,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 10:43:15 GMT" + "Sat, 20 Feb 2016 14:54:26 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMDc1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yTVRFd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMDc1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TURjMUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6625,16 +6193,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14911" + "14938" ], "x-ms-request-id": [ - "3dbd4a7b-90be-413d-b3cf-b69f4c526e70" + "70e2c8a4-292b-4d13-9666-77a03ab481d1" ], "x-ms-correlation-request-id": [ - "3dbd4a7b-90be-413d-b3cf-b69f4c526e70" + "70e2c8a4-292b-4d13-9666-77a03ab481d1" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T104330Z:3dbd4a7b-90be-413d-b3cf-b69f4c526e70" + "NORTHCENTRALUS:20160220T145443Z:70e2c8a4-292b-4d13-9666-77a03ab481d1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6643,17 +6211,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 10:43:30 GMT" + "Sat, 20 Feb 2016 14:54:43 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMDc1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yTVRFd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMDc1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TURjMUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6679,16 +6247,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14909" + "14937" ], "x-ms-request-id": [ - "6b6c3a9a-e695-456c-8605-9c1cd56e76ce" + "5bd4da05-a8d0-4add-a0dc-0ec18d6a4295" ], "x-ms-correlation-request-id": [ - "6b6c3a9a-e695-456c-8605-9c1cd56e76ce" + "5bd4da05-a8d0-4add-a0dc-0ec18d6a4295" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T104345Z:6b6c3a9a-e695-456c-8605-9c1cd56e76ce" + "NORTHCENTRALUS:20160220T145459Z:5bd4da05-a8d0-4add-a0dc-0ec18d6a4295" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6697,17 +6265,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 10:43:45 GMT" + "Sat, 20 Feb 2016 14:54:58 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMDc1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yTVRFd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMDc1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TURjMUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6733,16 +6301,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14908" + "14936" ], "x-ms-request-id": [ - "729dfc04-0627-493e-8377-26948427fc76" + "91e03632-1658-4429-8fd3-08f4d609e233" ], "x-ms-correlation-request-id": [ - "729dfc04-0627-493e-8377-26948427fc76" + "91e03632-1658-4429-8fd3-08f4d609e233" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T104401Z:729dfc04-0627-493e-8377-26948427fc76" + "NORTHCENTRALUS:20160220T145518Z:91e03632-1658-4429-8fd3-08f4d609e233" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6751,17 +6319,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 10:44:00 GMT" + "Sat, 20 Feb 2016 14:55:17 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMDc1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yTVRFd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMDc1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TURjMUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6787,16 +6355,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14907" + "14935" ], "x-ms-request-id": [ - "5923e465-06aa-4c70-9c48-25b16daa8a83" + "462a616e-e240-4def-99a8-b0a0340445c7" ], "x-ms-correlation-request-id": [ - "5923e465-06aa-4c70-9c48-25b16daa8a83" + "462a616e-e240-4def-99a8-b0a0340445c7" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T104416Z:5923e465-06aa-4c70-9c48-25b16daa8a83" + "NORTHCENTRALUS:20160220T145534Z:462a616e-e240-4def-99a8-b0a0340445c7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6805,17 +6373,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 10:44:16 GMT" + "Sat, 20 Feb 2016 14:55:33 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMDc1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTEwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yTVRFd0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMDc1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TURjMUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6838,16 +6406,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14906" + "14934" ], "x-ms-request-id": [ - "ad62cf85-89b0-4ce1-b327-e55c76ab4ba6" + "bcd11a3a-3a0f-40bb-aeda-5c517c3c1730" ], "x-ms-correlation-request-id": [ - "ad62cf85-89b0-4ce1-b327-e55c76ab4ba6" + "bcd11a3a-3a0f-40bb-aeda-5c517c3c1730" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T104431Z:ad62cf85-89b0-4ce1-b327-e55c76ab4ba6" + "NORTHCENTRALUS:20160220T145549Z:bcd11a3a-3a0f-40bb-aeda-5c517c3c1730" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6856,7 +6424,7 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 10:44:30 GMT" + "Sat, 20 Feb 2016 14:55:49 GMT" ] }, "StatusCode": 200 @@ -6864,10 +6432,10 @@ ], "Names": { "Test-AEMExtensionAdvancedWindows": [ - "crptestps6110" + "crptestps1075" ] }, "Variables": { - "SubscriptionId": "acf8322c-ac5c-4cbd-8907-5f5920784774" + "SubscriptionId": "e663cc2d-722b-4be1-b636-bbd9e4c60fd9" } } \ No newline at end of file diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.AEMExtensionTests/TestAEMExtensionBasicLinux.json b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.AEMExtensionTests/TestAEMExtensionBasicLinux.json index 11ffabe238be..0b9106ee09aa 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.AEMExtensionTests/TestAEMExtensionBasicLinux.json +++ b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.AEMExtensionTests/TestAEMExtensionBasicLinux.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute?api-version=2014-04-01-preview", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute?api-version=2014-04-01-preview", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", @@ -10,7 +10,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Length": [ "5199" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14870" + "14939" ], "x-ms-request-id": [ - "59c9167a-5d4a-41b8-9702-5d473de34443" + "31d61b58-44b6-4cd9-a094-88eb63b5a3c0" ], "x-ms-correlation-request-id": [ - "59c9167a-5d4a-41b8-9702-5d473de34443" + "31d61b58-44b6-4cd9-a094-88eb63b5a3c0" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T131833Z:59c9167a-5d4a-41b8-9702-5d473de34443" + "NORTHCENTRALUS:20160220T145949Z:31d61b58-44b6-4cd9-a094-88eb63b5a3c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,14 +43,14 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 13:18:33 GMT" + "Sat, 20 Feb 2016 14:59:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourcegroups/crptestps3457?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczM0NTc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourcegroups/crptestps8777?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlZ3JvdXBzL2NycHRlc3Rwczg3Nzc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -76,16 +76,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14869" + "14938" ], "x-ms-request-id": [ - "4a0a346d-591d-4f36-a4b9-e045b0b78b68" + "6704cb82-8cb7-478e-aad7-6a347ef15594" ], "x-ms-correlation-request-id": [ - "4a0a346d-591d-4f36-a4b9-e045b0b78b68" + "6704cb82-8cb7-478e-aad7-6a347ef15594" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T131834Z:4a0a346d-591d-4f36-a4b9-e045b0b78b68" + "NORTHCENTRALUS:20160220T145949Z:6704cb82-8cb7-478e-aad7-6a347ef15594" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -94,14 +94,14 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 13:18:33 GMT" + "Sat, 20 Feb 2016 14:59:49 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourcegroups/crptestps3457?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczM0NTc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourcegroups/crptestps8777?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlZ3JvdXBzL2NycHRlc3Rwczg3Nzc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -121,16 +121,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14837" + "14937" ], "x-ms-request-id": [ - "871268a8-33a1-4f1a-806d-54b9c24e2b70" + "7d535daa-2128-452e-924d-a1ee068c2e72" ], "x-ms-correlation-request-id": [ - "871268a8-33a1-4f1a-806d-54b9c24e2b70" + "7d535daa-2128-452e-924d-a1ee068c2e72" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T140257Z:871268a8-33a1-4f1a-806d-54b9c24e2b70" + "NORTHCENTRALUS:20160220T151713Z:7d535daa-2128-452e-924d-a1ee068c2e72" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -139,14 +139,14 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 14:02:56 GMT" + "Sat, 20 Feb 2016 15:17:12 GMT" ] }, "StatusCode": 204 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourcegroups/crptestps3457?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczM0NTc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourcegroups/crptestps8777?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlZ3JvdXBzL2NycHRlc3Rwczg3Nzc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { @@ -160,7 +160,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457\",\r\n \"name\": \"crptestps3457\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777\",\r\n \"name\": \"crptestps8777\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "179" @@ -175,16 +175,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1197" ], "x-ms-request-id": [ - "8c0fea75-3f2f-46ae-b1cc-0b6c10cde101" + "687349af-4080-4f06-8683-cdc04beacb0a" ], "x-ms-correlation-request-id": [ - "8c0fea75-3f2f-46ae-b1cc-0b6c10cde101" + "687349af-4080-4f06-8683-cdc04beacb0a" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T131835Z:8c0fea75-3f2f-46ae-b1cc-0b6c10cde101" + "NORTHCENTRALUS:20160220T145951Z:687349af-4080-4f06-8683-cdc04beacb0a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -193,14 +193,14 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 13:18:34 GMT" + "Sat, 20 Feb 2016 14:59:50 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM0NTcvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg3NzcvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -223,16 +223,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14868" + "14937" ], "x-ms-request-id": [ - "851d37ce-9724-4bd2-a2c2-3ec0013bc95d" + "838e4152-d621-43d7-88b9-99074efa13b6" ], "x-ms-correlation-request-id": [ - "851d37ce-9724-4bd2-a2c2-3ec0013bc95d" + "838e4152-d621-43d7-88b9-99074efa13b6" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T131835Z:851d37ce-9724-4bd2-a2c2-3ec0013bc95d" + "NORTHCENTRALUS:20160220T145951Z:838e4152-d621-43d7-88b9-99074efa13b6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -241,19 +241,19 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 13:18:34 GMT" + "Sat, 20 Feb 2016 14:59:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/virtualnetworks/vnetcrptestps3457?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM0NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzMzQ1Nz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Network/virtualnetworks/vnetcrptestps8777?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg3NzcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzODc3Nz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "819d1955-b4ee-4ee9-904c-e877c3e21107" + "11a08ee3-49f2-480e-9397-a26ba50b61c8" ], "accept-language": [ "en-US" @@ -262,7 +262,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/vnetcrptestps3457' under resource group 'crptestps3457' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/vnetcrptestps8777' under resource group 'crptestps8777' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "168" @@ -280,13 +280,13 @@ "gateway" ], "x-ms-request-id": [ - "1e58af6d-1fe5-4b9c-8dad-86dc6cadb8b4" + "6f68ace7-6dac-4fbf-83e2-0322495635be" ], "x-ms-correlation-request-id": [ - "1e58af6d-1fe5-4b9c-8dad-86dc6cadb8b4" + "6f68ace7-6dac-4fbf-83e2-0322495635be" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T131836Z:1e58af6d-1fe5-4b9c-8dad-86dc6cadb8b4" + "NORTHCENTRALUS:20160220T145953Z:6f68ace7-6dac-4fbf-83e2-0322495635be" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -295,14 +295,14 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 13:18:35 GMT" + "Sat, 20 Feb 2016 14:59:53 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/virtualnetworks/vnetcrptestps3457?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM0NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzMzQ1Nz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Network/virtualnetworks/vnetcrptestps8777?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg3NzcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzODc3Nz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -310,7 +310,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetcrptestps3457\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/virtualNetworks/vnetcrptestps3457\",\r\n \"etag\": \"W/\\\"5738a143-e648-444e-a9cd-031ce9723ae5\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"51769e48-b3c6-45e1-94e0-0506c8439e88\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps3457\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/virtualNetworks/vnetcrptestps3457/subnets/subnetcrptestps3457\",\r\n \"etag\": \"W/\\\"5738a143-e648-444e-a9cd-031ce9723ae5\\\"\",\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}", + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps8777\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8777\",\r\n \"etag\": \"W/\\\"d4ad580e-517e-45fa-9bb6-f8b53249aead\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a5ecba9d-4321-447b-ab7e-7b47f3b9adfd\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps8777\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8777/subnets/subnetcrptestps8777\",\r\n \"etag\": \"W/\\\"d4ad580e-517e-45fa-9bb6-f8b53249aead\\\"\",\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}", "ResponseHeaders": { "Content-Length": [ "994" @@ -325,7 +325,7 @@ "no-cache" ], "x-ms-request-id": [ - "208d7a9d-cb8e-4c1c-912f-038c34469b02" + "89f86e06-4269-4345-9524-35f18d0fe83f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,35 +334,35 @@ "no-cache" ], "ETag": [ - "W/\"5738a143-e648-444e-a9cd-031ce9723ae5\"" + "W/\"d4ad580e-517e-45fa-9bb6-f8b53249aead\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14809" + "14980" ], "x-ms-correlation-request-id": [ - "ff7c14a1-965f-4a25-b581-7923657c5a2d" + "109724d6-fd0b-4c81-ace3-8b9e13041b66" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T131848Z:ff7c14a1-965f-4a25-b581-7923657c5a2d" + "NORTHCENTRALUS:20160220T150025Z:109724d6-fd0b-4c81-ace3-8b9e13041b66" ], "Date": [ - "Tue, 16 Feb 2016 13:18:47 GMT" + "Sat, 20 Feb 2016 15:00:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/virtualnetworks/vnetcrptestps3457?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM0NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzMzQ1Nz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Network/virtualnetworks/vnetcrptestps8777?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg3NzcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzODc3Nz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f120c71e-9662-4965-8b2c-536e12e51e48" + "7c5f255f-2171-4367-a70b-8e35bb127968" ], "accept-language": [ "en-US" @@ -371,7 +371,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetcrptestps3457\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/virtualNetworks/vnetcrptestps3457\",\r\n \"etag\": \"W/\\\"5738a143-e648-444e-a9cd-031ce9723ae5\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"51769e48-b3c6-45e1-94e0-0506c8439e88\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps3457\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/virtualNetworks/vnetcrptestps3457/subnets/subnetcrptestps3457\",\r\n \"etag\": \"W/\\\"5738a143-e648-444e-a9cd-031ce9723ae5\\\"\",\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}", + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps8777\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8777\",\r\n \"etag\": \"W/\\\"d4ad580e-517e-45fa-9bb6-f8b53249aead\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a5ecba9d-4321-447b-ab7e-7b47f3b9adfd\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps8777\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8777/subnets/subnetcrptestps8777\",\r\n \"etag\": \"W/\\\"d4ad580e-517e-45fa-9bb6-f8b53249aead\\\"\",\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}", "ResponseHeaders": { "Content-Length": [ "994" @@ -386,7 +386,7 @@ "no-cache" ], "x-ms-request-id": [ - "67d27ef6-d8a3-4efa-a7dc-242abd7ddac3" + "3856bde9-a113-4127-9b1a-015747dc17e0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -395,35 +395,35 @@ "no-cache" ], "ETag": [ - "W/\"5738a143-e648-444e-a9cd-031ce9723ae5\"" + "W/\"d4ad580e-517e-45fa-9bb6-f8b53249aead\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14808" + "14979" ], "x-ms-correlation-request-id": [ - "2ee21894-a184-4fe9-a77a-d85c902dd840" + "bdc86dae-8e66-4682-8c6b-107684b5c976" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T131849Z:2ee21894-a184-4fe9-a77a-d85c902dd840" + "NORTHCENTRALUS:20160220T150025Z:bdc86dae-8e66-4682-8c6b-107684b5c976" ], "Date": [ - "Tue, 16 Feb 2016 13:18:48 GMT" + "Sat, 20 Feb 2016 15:00:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/virtualnetworks/vnetcrptestps3457?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM0NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzMzQ1Nz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Network/virtualnetworks/vnetcrptestps8777?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg3NzcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzODc3Nz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ab36af47-48ed-4514-b602-ae6274ba2da5" + "e5269a5a-8322-4871-940a-5446ba192673" ], "accept-language": [ "en-US" @@ -432,7 +432,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetcrptestps3457\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/virtualNetworks/vnetcrptestps3457\",\r\n \"etag\": \"W/\\\"5738a143-e648-444e-a9cd-031ce9723ae5\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"51769e48-b3c6-45e1-94e0-0506c8439e88\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps3457\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/virtualNetworks/vnetcrptestps3457/subnets/subnetcrptestps3457\",\r\n \"etag\": \"W/\\\"5738a143-e648-444e-a9cd-031ce9723ae5\\\"\",\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}", + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps8777\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8777\",\r\n \"etag\": \"W/\\\"d4ad580e-517e-45fa-9bb6-f8b53249aead\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a5ecba9d-4321-447b-ab7e-7b47f3b9adfd\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps8777\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8777/subnets/subnetcrptestps8777\",\r\n \"etag\": \"W/\\\"d4ad580e-517e-45fa-9bb6-f8b53249aead\\\"\",\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}", "ResponseHeaders": { "Content-Length": [ "994" @@ -447,7 +447,7 @@ "no-cache" ], "x-ms-request-id": [ - "ca3441bb-ce7b-4877-b185-9a9cea210117" + "462cd409-8048-4989-865c-00c82503bd56" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -456,32 +456,32 @@ "no-cache" ], "ETag": [ - "W/\"5738a143-e648-444e-a9cd-031ce9723ae5\"" + "W/\"d4ad580e-517e-45fa-9bb6-f8b53249aead\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14807" + "14978" ], "x-ms-correlation-request-id": [ - "6119ad60-9bab-49e4-838f-1bb3c67164f5" + "4657d2f3-7f86-4302-abca-ca46eebebaa1" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T131849Z:6119ad60-9bab-49e4-838f-1bb3c67164f5" + "NORTHCENTRALUS:20160220T150025Z:4657d2f3-7f86-4302-abca-ca46eebebaa1" ], "Date": [ - "Tue, 16 Feb 2016 13:18:48 GMT" + "Sat, 20 Feb 2016 15:00:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/virtualnetworks/vnetcrptestps3457?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM0NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzMzQ1Nz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Network/virtualnetworks/vnetcrptestps8777?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg3NzcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzODc3Nz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps3457\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps8777\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -490,7 +490,7 @@ "341" ], "x-ms-client-request-id": [ - "fd650371-d325-479d-8dee-5e5e9928d037" + "979b51e1-fa90-4378-846a-4678374d98a1" ], "accept-language": [ "en-US" @@ -499,7 +499,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetcrptestps3457\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/virtualNetworks/vnetcrptestps3457\",\r\n \"etag\": \"W/\\\"697de0bb-d262-4cb4-aaa0-802991f79b74\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"51769e48-b3c6-45e1-94e0-0506c8439e88\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps3457\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/virtualNetworks/vnetcrptestps3457/subnets/subnetcrptestps3457\",\r\n \"etag\": \"W/\\\"697de0bb-d262-4cb4-aaa0-802991f79b74\\\"\",\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}", + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps8777\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8777\",\r\n \"etag\": \"W/\\\"9bb7e0b0-69de-48d5-928f-9a2b21203bef\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"a5ecba9d-4321-447b-ab7e-7b47f3b9adfd\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps8777\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8777/subnets/subnetcrptestps8777\",\r\n \"etag\": \"W/\\\"9bb7e0b0-69de-48d5-928f-9a2b21203bef\\\"\",\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}", "ResponseHeaders": { "Content-Length": [ "992" @@ -517,10 +517,10 @@ "10" ], "x-ms-request-id": [ - "43996328-be62-4b27-9915-9378e992650b" + "2594a67f-030c-42ff-960b-147a5d853ec0" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Network/locations/eastus/operations/43996328-be62-4b27-9915-9378e992650b?api-version=2015-06-15" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Network/locations/eastus/operations/2594a67f-030c-42ff-960b-147a5d853ec0?api-version=2015-06-15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -536,20 +536,20 @@ "1199" ], "x-ms-correlation-request-id": [ - "cba57b26-6d5c-4923-9b5f-50abb9e7f183" + "2efd50ce-6084-45e0-b72e-586b1fee5793" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T131838Z:cba57b26-6d5c-4923-9b5f-50abb9e7f183" + "NORTHCENTRALUS:20160220T145954Z:2efd50ce-6084-45e0-b72e-586b1fee5793" ], "Date": [ - "Tue, 16 Feb 2016 13:18:37 GMT" + "Sat, 20 Feb 2016 14:59:54 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Network/locations/eastus/operations/43996328-be62-4b27-9915-9378e992650b?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNDM5OTYzMjgtYmU2Mi00YjI3LTk5MTUtOTM3OGU5OTI2NTBiP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Network/locations/eastus/operations/2594a67f-030c-42ff-960b-147a5d853ec0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMjU5NGE2N2YtMDMwYy00MmZmLTk2MGItMTQ3YTVkODUzZWMwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -572,7 +572,7 @@ "no-cache" ], "x-ms-request-id": [ - "4846a70e-3b2f-442e-be25-3b2e4d965bcb" + "5b9c9611-6998-45cf-ad57-ff5f27b15de2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -585,28 +585,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14810" + "14981" ], "x-ms-correlation-request-id": [ - "13da502e-4767-4039-a0f0-a82b5ec54714" + "2f81f076-f632-41fd-adba-2d1798ab208e" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T131848Z:13da502e-4767-4039-a0f0-a82b5ec54714" + "NORTHCENTRALUS:20160220T150025Z:2f81f076-f632-41fd-adba-2d1798ab208e" ], "Date": [ - "Tue, 16 Feb 2016 13:18:47 GMT" + "Sat, 20 Feb 2016 15:00:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps3457?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM0NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzMzQ1Nz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8777?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg3NzcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzODc3Nz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "82b3744c-0ea4-4850-9f1f-6f789f599a8a" + "b6c2c046-da04-4d45-98a4-20c79bc50b7d" ], "accept-language": [ "en-US" @@ -615,7 +615,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/pubipcrptestps3457' under resource group 'crptestps3457' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/pubipcrptestps8777' under resource group 'crptestps8777' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "171" @@ -633,13 +633,13 @@ "gateway" ], "x-ms-request-id": [ - "989e1661-024b-456c-a776-b411bc85e3c1" + "af5de6fc-7341-4fe0-a15e-987eccb98dbb" ], "x-ms-correlation-request-id": [ - "989e1661-024b-456c-a776-b411bc85e3c1" + "af5de6fc-7341-4fe0-a15e-987eccb98dbb" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T131849Z:989e1661-024b-456c-a776-b411bc85e3c1" + "NORTHCENTRALUS:20160220T150026Z:af5de6fc-7341-4fe0-a15e-987eccb98dbb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -648,14 +648,14 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 13:18:48 GMT" + "Sat, 20 Feb 2016 15:00:25 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps3457?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM0NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzMzQ1Nz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8777?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg3NzcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzODc3Nz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -663,7 +663,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pubipcrptestps3457\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps3457\",\r\n \"etag\": \"W/\\\"a3c5b3c4-6284-4fcb-ad35-dd49876c5e3b\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"20c40cf7-9f29-4c94-a6db-998fa8d09727\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps3457\",\r\n \"fqdn\": \"pubipcrptestps3457.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps8777\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8777\",\r\n \"etag\": \"W/\\\"41cd7ec1-6ecd-48f9-b68b-9986af674f4c\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"158b634e-c678-468b-964b-5ae6e1734711\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps8777\",\r\n \"fqdn\": \"pubipcrptestps8777.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "666" @@ -678,7 +678,7 @@ "no-cache" ], "x-ms-request-id": [ - "f621e4e2-e8ce-4b7d-9506-4e40d0b45403" + "d8aa3bcc-ed51-4cc8-8d47-29571ddd7a6b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -687,35 +687,35 @@ "no-cache" ], "ETag": [ - "W/\"a3c5b3c4-6284-4fcb-ad35-dd49876c5e3b\"" + "W/\"41cd7ec1-6ecd-48f9-b68b-9986af674f4c\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14804" + "14974" ], "x-ms-correlation-request-id": [ - "09abddb1-00de-42e9-82da-ee5f651a7b06" + "29c70cac-88d3-405e-8f75-f6ed56e4d0cc" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T131903Z:09abddb1-00de-42e9-82da-ee5f651a7b06" + "NORTHCENTRALUS:20160220T150058Z:29c70cac-88d3-405e-8f75-f6ed56e4d0cc" ], "Date": [ - "Tue, 16 Feb 2016 13:19:02 GMT" + "Sat, 20 Feb 2016 15:00:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps3457?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM0NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzMzQ1Nz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8777?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg3NzcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzODc3Nz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "49924940-0bb6-4caa-b86b-e5fb397c64aa" + "76843d4a-14b0-43cd-b765-d22cf9268938" ], "accept-language": [ "en-US" @@ -724,7 +724,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pubipcrptestps3457\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps3457\",\r\n \"etag\": \"W/\\\"a3c5b3c4-6284-4fcb-ad35-dd49876c5e3b\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"20c40cf7-9f29-4c94-a6db-998fa8d09727\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps3457\",\r\n \"fqdn\": \"pubipcrptestps3457.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps8777\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8777\",\r\n \"etag\": \"W/\\\"41cd7ec1-6ecd-48f9-b68b-9986af674f4c\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"158b634e-c678-468b-964b-5ae6e1734711\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps8777\",\r\n \"fqdn\": \"pubipcrptestps8777.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "666" @@ -739,7 +739,7 @@ "no-cache" ], "x-ms-request-id": [ - "cdc22c92-1a42-45e3-ae60-6144be9ae686" + "aca5696c-7d47-4cd2-ba0f-5f52c1d8ab4b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -748,35 +748,35 @@ "no-cache" ], "ETag": [ - "W/\"a3c5b3c4-6284-4fcb-ad35-dd49876c5e3b\"" + "W/\"41cd7ec1-6ecd-48f9-b68b-9986af674f4c\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14803" + "14973" ], "x-ms-correlation-request-id": [ - "aebdd777-0098-4af1-9b57-cffc92822725" + "51b52bdd-4195-48e6-8bdf-8dfa0fc29fc0" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T131903Z:aebdd777-0098-4af1-9b57-cffc92822725" + "NORTHCENTRALUS:20160220T150058Z:51b52bdd-4195-48e6-8bdf-8dfa0fc29fc0" ], "Date": [ - "Tue, 16 Feb 2016 13:19:02 GMT" + "Sat, 20 Feb 2016 15:00:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps3457?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM0NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzMzQ1Nz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8777?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg3NzcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzODc3Nz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "aa256199-24f1-4d91-abd1-93a72dcd2249" + "2a5af787-1591-4e41-a985-35564ccbb8ed" ], "accept-language": [ "en-US" @@ -785,7 +785,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pubipcrptestps3457\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps3457\",\r\n \"etag\": \"W/\\\"a3c5b3c4-6284-4fcb-ad35-dd49876c5e3b\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"20c40cf7-9f29-4c94-a6db-998fa8d09727\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps3457\",\r\n \"fqdn\": \"pubipcrptestps3457.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps8777\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8777\",\r\n \"etag\": \"W/\\\"41cd7ec1-6ecd-48f9-b68b-9986af674f4c\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"158b634e-c678-468b-964b-5ae6e1734711\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps8777\",\r\n \"fqdn\": \"pubipcrptestps8777.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "666" @@ -800,7 +800,7 @@ "no-cache" ], "x-ms-request-id": [ - "5ad9f4da-b896-447e-a490-e874ef9f8394" + "a58de66c-08f8-4b99-ad8f-ea76a87747c1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -809,32 +809,32 @@ "no-cache" ], "ETag": [ - "W/\"a3c5b3c4-6284-4fcb-ad35-dd49876c5e3b\"" + "W/\"41cd7ec1-6ecd-48f9-b68b-9986af674f4c\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14802" + "14972" ], "x-ms-correlation-request-id": [ - "5f7773d6-6fcf-47e0-b9cb-8b748ab288ea" + "bd0d3e73-a33f-4f76-99fa-6c4ec976614d" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T131903Z:5f7773d6-6fcf-47e0-b9cb-8b748ab288ea" + "NORTHCENTRALUS:20160220T150059Z:bd0d3e73-a33f-4f76-99fa-6c4ec976614d" ], "Date": [ - "Tue, 16 Feb 2016 13:19:02 GMT" + "Sat, 20 Feb 2016 15:00:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps3457?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM0NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzMzQ1Nz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8777?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg3NzcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzODc3Nz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps3457\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps8777\"\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -843,7 +843,7 @@ "174" ], "x-ms-client-request-id": [ - "a570946d-be54-4b43-80ad-fd4c434aeb7b" + "98dc31eb-a3d9-4ba6-856d-a22df4d2d8e1" ], "accept-language": [ "en-US" @@ -852,7 +852,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pubipcrptestps3457\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps3457\",\r\n \"etag\": \"W/\\\"f19821a2-a662-46fd-b4b4-253f47da949e\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"20c40cf7-9f29-4c94-a6db-998fa8d09727\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps3457\",\r\n \"fqdn\": \"pubipcrptestps3457.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps8777\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8777\",\r\n \"etag\": \"W/\\\"818c6bc2-962f-4ec5-be07-e121dd07d9f1\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"158b634e-c678-468b-964b-5ae6e1734711\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps8777\",\r\n \"fqdn\": \"pubipcrptestps8777.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "665" @@ -870,10 +870,10 @@ "10" ], "x-ms-request-id": [ - "77cf0744-6d17-4780-813e-e42d85d0ef84" + "2b93c7cb-6943-4e2b-8522-4e638c8bacea" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Network/locations/eastus/operations/77cf0744-6d17-4780-813e-e42d85d0ef84?api-version=2015-06-15" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Network/locations/eastus/operations/2b93c7cb-6943-4e2b-8522-4e638c8bacea?api-version=2015-06-15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -889,20 +889,20 @@ "1198" ], "x-ms-correlation-request-id": [ - "fec9d2e8-1204-4a97-9e71-720bd405cd12" + "d0c49a46-0714-4d9c-9847-f6752df4830c" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T131851Z:fec9d2e8-1204-4a97-9e71-720bd405cd12" + "NORTHCENTRALUS:20160220T150027Z:d0c49a46-0714-4d9c-9847-f6752df4830c" ], "Date": [ - "Tue, 16 Feb 2016 13:18:51 GMT" + "Sat, 20 Feb 2016 15:00:27 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Network/locations/eastus/operations/77cf0744-6d17-4780-813e-e42d85d0ef84?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNzdjZjA3NDQtNmQxNy00NzgwLTgxM2UtZTQyZDg1ZDBlZjg0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Network/locations/eastus/operations/2b93c7cb-6943-4e2b-8522-4e638c8bacea?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMmI5M2M3Y2ItNjk0My00ZTJiLTg1MjItNGU2MzhjOGJhY2VhP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -925,7 +925,7 @@ "no-cache" ], "x-ms-request-id": [ - "0a0f6ebc-3ae5-4882-b3e3-90b8cc7d146b" + "6276aa3e-efa7-40ba-8f7f-8974ffd1e501" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -938,28 +938,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14805" + "14975" ], "x-ms-correlation-request-id": [ - "4b094ea5-eb64-4650-bc3c-fd7152fee39e" + "293ab5a5-dd5f-4277-832d-3d4d355ee65a" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T131902Z:4b094ea5-eb64-4650-bc3c-fd7152fee39e" + "NORTHCENTRALUS:20160220T150058Z:293ab5a5-dd5f-4277-832d-3d4d355ee65a" ], "Date": [ - "Tue, 16 Feb 2016 13:19:01 GMT" + "Sat, 20 Feb 2016 15:00:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/networkInterfaces/nic0crptestps3457?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM0NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzBjcnB0ZXN0cHMzNDU3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Network/networkInterfaces/nic0crptestps8777?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg3NzcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzBjcnB0ZXN0cHM4Nzc3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "32597f5b-e590-42a6-8ceb-b218e0ac9d16" + "91944f2e-1b70-41b4-b098-5d6ceff2e6bb" ], "accept-language": [ "en-US" @@ -968,7 +968,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/nic0crptestps3457' under resource group 'crptestps3457' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/nic0crptestps8777' under resource group 'crptestps8777' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "170" @@ -986,13 +986,13 @@ "gateway" ], "x-ms-request-id": [ - "5b3d2367-af6b-4d4a-8e82-0cfef93bbd89" + "81df67eb-eca7-4e57-ae00-44939fe1c2fd" ], "x-ms-correlation-request-id": [ - "5b3d2367-af6b-4d4a-8e82-0cfef93bbd89" + "81df67eb-eca7-4e57-ae00-44939fe1c2fd" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T131903Z:5b3d2367-af6b-4d4a-8e82-0cfef93bbd89" + "NORTHCENTRALUS:20160220T150059Z:81df67eb-eca7-4e57-ae00-44939fe1c2fd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1001,19 +1001,19 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 13:19:02 GMT" + "Sat, 20 Feb 2016 15:00:59 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/networkInterfaces/nic0crptestps3457?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM0NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzBjcnB0ZXN0cHMzNDU3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Network/networkInterfaces/nic0crptestps8777?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg3NzcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzBjcnB0ZXN0cHM4Nzc3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7246ee94-e37b-4b90-9673-9f90f3e520fb" + "96c16d4e-b947-472b-a207-e9f358ce9b76" ], "accept-language": [ "en-US" @@ -1022,7 +1022,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"nic0crptestps3457\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/networkInterfaces/nic0crptestps3457\",\r\n \"etag\": \"W/\\\"add95c97-ee56-4a4a-ad49-d1c97f0baad9\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ad78bbb7-8f90-4587-8c9c-7116a2f6e546\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/networkInterfaces/nic0crptestps3457/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"add95c97-ee56-4a4a-ad49-d1c97f0baad9\\\"\",\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/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps3457\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/virtualNetworks/vnetcrptestps3457/subnets/subnetcrptestps3457\"\r\n },\r\n \"primary\": true\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic0crptestps8777\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Network/networkInterfaces/nic0crptestps8777\",\r\n \"etag\": \"W/\\\"f6925e41-2a19-4107-ac23-d4c6cc3eb0c2\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c0986b7e-ff8d-42b5-9bdf-b21163e69085\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Network/networkInterfaces/nic0crptestps8777/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"f6925e41-2a19-4107-ac23-d4c6cc3eb0c2\\\"\",\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/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8777\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8777/subnets/subnetcrptestps8777\"\r\n },\r\n \"primary\": true\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1548" @@ -1037,7 +1037,7 @@ "no-cache" ], "x-ms-request-id": [ - "7911b45d-dbbb-411d-8df6-83f55b3fa2b6" + "5582a6e1-a67b-4dce-886c-9b877faca48d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1046,35 +1046,35 @@ "no-cache" ], "ETag": [ - "W/\"add95c97-ee56-4a4a-ad49-d1c97f0baad9\"" + "W/\"f6925e41-2a19-4107-ac23-d4c6cc3eb0c2\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14800" + "14970" ], "x-ms-correlation-request-id": [ - "fe68615a-93ad-4062-a2d7-7d3c8ff98e50" + "426c3455-3ef2-40db-ad35-53fb98e9c8f4" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T131905Z:fe68615a-93ad-4062-a2d7-7d3c8ff98e50" + "NORTHCENTRALUS:20160220T150104Z:426c3455-3ef2-40db-ad35-53fb98e9c8f4" ], "Date": [ - "Tue, 16 Feb 2016 13:19:05 GMT" + "Sat, 20 Feb 2016 15:01:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/networkInterfaces/nic0crptestps3457?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM0NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzBjcnB0ZXN0cHMzNDU3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Network/networkInterfaces/nic0crptestps8777?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg3NzcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzBjcnB0ZXN0cHM4Nzc3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "58edb4e9-2e49-4745-82e5-5b753f988f89" + "846f0368-16b6-4c0c-9dec-b885ec6f6cd4" ], "accept-language": [ "en-US" @@ -1083,7 +1083,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"nic0crptestps3457\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/networkInterfaces/nic0crptestps3457\",\r\n \"etag\": \"W/\\\"add95c97-ee56-4a4a-ad49-d1c97f0baad9\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ad78bbb7-8f90-4587-8c9c-7116a2f6e546\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/networkInterfaces/nic0crptestps3457/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"add95c97-ee56-4a4a-ad49-d1c97f0baad9\\\"\",\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/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps3457\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/virtualNetworks/vnetcrptestps3457/subnets/subnetcrptestps3457\"\r\n },\r\n \"primary\": true\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic0crptestps8777\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Network/networkInterfaces/nic0crptestps8777\",\r\n \"etag\": \"W/\\\"f6925e41-2a19-4107-ac23-d4c6cc3eb0c2\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c0986b7e-ff8d-42b5-9bdf-b21163e69085\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Network/networkInterfaces/nic0crptestps8777/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"f6925e41-2a19-4107-ac23-d4c6cc3eb0c2\\\"\",\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/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8777\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8777/subnets/subnetcrptestps8777\"\r\n },\r\n \"primary\": true\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1548" @@ -1098,7 +1098,7 @@ "no-cache" ], "x-ms-request-id": [ - "aea5198c-0738-4229-ae5c-2708ada6e610" + "06924de0-452f-46bb-954c-1320bc3b2d86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1107,32 +1107,32 @@ "no-cache" ], "ETag": [ - "W/\"add95c97-ee56-4a4a-ad49-d1c97f0baad9\"" + "W/\"f6925e41-2a19-4107-ac23-d4c6cc3eb0c2\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14799" + "14969" ], "x-ms-correlation-request-id": [ - "b1ad8b1f-53be-4e67-b388-c997bf424676" + "a5b17726-831c-4e3b-87c3-ec6098f887f6" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T131906Z:b1ad8b1f-53be-4e67-b388-c997bf424676" + "NORTHCENTRALUS:20160220T150104Z:a5b17726-831c-4e3b-87c3-ec6098f887f6" ], "Date": [ - "Tue, 16 Feb 2016 13:19:05 GMT" + "Sat, 20 Feb 2016 15:01:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/networkInterfaces/nic0crptestps3457?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM0NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzBjcnB0ZXN0cHMzNDU3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Network/networkInterfaces/nic0crptestps8777?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg3NzcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzBjcnB0ZXN0cHM4Nzc3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"properties\": {\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": [],\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/virtualNetworks/vnetcrptestps3457/subnets/subnetcrptestps3457\",\r\n \"properties\": {\r\n \"ipConfigurations\": []\r\n }\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps3457\"\r\n }\r\n }\r\n }\r\n ],\r\n \"primary\": false,\r\n \"enableIPForwarding\": false\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"properties\": {\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": [],\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8777/subnets/subnetcrptestps8777\",\r\n \"properties\": {\r\n \"ipConfigurations\": []\r\n }\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8777\"\r\n }\r\n }\r\n }\r\n ],\r\n \"primary\": false,\r\n \"enableIPForwarding\": false\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1141,7 +1141,7 @@ "900" ], "x-ms-client-request-id": [ - "2e0c2961-2a38-4742-b1f3-1aa4db45bfb8" + "7e810797-4ba6-489e-9e1c-07c68f04a9ab" ], "accept-language": [ "en-US" @@ -1150,7 +1150,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"nic0crptestps3457\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/networkInterfaces/nic0crptestps3457\",\r\n \"etag\": \"W/\\\"add95c97-ee56-4a4a-ad49-d1c97f0baad9\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ad78bbb7-8f90-4587-8c9c-7116a2f6e546\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/networkInterfaces/nic0crptestps3457/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"add95c97-ee56-4a4a-ad49-d1c97f0baad9\\\"\",\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/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps3457\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/virtualNetworks/vnetcrptestps3457/subnets/subnetcrptestps3457\"\r\n },\r\n \"primary\": true\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic0crptestps8777\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Network/networkInterfaces/nic0crptestps8777\",\r\n \"etag\": \"W/\\\"f6925e41-2a19-4107-ac23-d4c6cc3eb0c2\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c0986b7e-ff8d-42b5-9bdf-b21163e69085\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Network/networkInterfaces/nic0crptestps8777/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"f6925e41-2a19-4107-ac23-d4c6cc3eb0c2\\\"\",\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/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8777\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8777/subnets/subnetcrptestps8777\"\r\n },\r\n \"primary\": true\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1548" @@ -1165,10 +1165,10 @@ "no-cache" ], "x-ms-request-id": [ - "406da2c9-9f2c-40de-ba51-6fc2d8ffbd34" + "479258e0-e33a-4acc-8aaa-82b4d86f6a60" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Network/locations/eastus/operations/406da2c9-9f2c-40de-ba51-6fc2d8ffbd34?api-version=2015-06-15" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Network/locations/eastus/operations/479258e0-e33a-4acc-8aaa-82b4d86f6a60?api-version=2015-06-15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1184,20 +1184,20 @@ "1197" ], "x-ms-correlation-request-id": [ - "16b1906d-2105-45ee-a12b-68e4fda80497" + "fc38e8d2-8690-4a31-b16b-83d225db502c" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T131905Z:16b1906d-2105-45ee-a12b-68e4fda80497" + "NORTHCENTRALUS:20160220T150104Z:fc38e8d2-8690-4a31-b16b-83d225db502c" ], "Date": [ - "Tue, 16 Feb 2016 13:19:05 GMT" + "Sat, 20 Feb 2016 15:01:03 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Storage/storageAccounts/stocrptestps3457?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM0NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHMzNDU3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Storage/storageAccounts/stocrptestps8777?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg3NzcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM4Nzc3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\"\r\n }\r\n}", "RequestHeaders": { @@ -1208,7 +1208,7 @@ "89" ], "x-ms-client-request-id": [ - "fa9d2427-bb51-41cd-8e25-0f0911ef4b2a" + "e2d055a4-0fb4-4e65-a2a5-d1160a46c0d7" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" @@ -1229,44 +1229,44 @@ "25" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-request-id": [ - "2ace2f28-871e-4653-bbb1-27420527db5c" + "2049b660-4e13-41b0-a266-7644b01cfc9f" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Storage/operations/2c10430d-08b0-4bf1-9a71-7ae9ddbeed78?monitor=true&api-version=2015-06-15" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Storage/operations/93490a2c-97df-4092-8556-34bafec2366e?monitor=true&api-version=2015-06-15" ], "Server": [ "Microsoft-Azure-Storage-Resource-Provider/1.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "2ace2f28-871e-4653-bbb1-27420527db5c" + "2049b660-4e13-41b0-a266-7644b01cfc9f" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T131908Z:2ace2f28-871e-4653-bbb1-27420527db5c" + "NORTHCENTRALUS:20160220T150108Z:2049b660-4e13-41b0-a266-7644b01cfc9f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Feb 2016 13:19:08 GMT" + "Sat, 20 Feb 2016 15:01:08 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Storage/operations/2c10430d-08b0-4bf1-9a71-7ae9ddbeed78?monitor=true&api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzJjMTA0MzBkLTA4YjAtNGJmMS05YTcxLTdhZTlkZGJlZWQ3OD9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Storage/operations/93490a2c-97df-4092-8556-34bafec2366e?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzkzNDkwYTJjLTk3ZGYtNDA5Mi04NTU2LTM0YmFmZWMyMzY2ZT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5132bf21-80ca-46ab-b668-a0d9a0dad667" + "4d822e08-295c-4c7e-b9d2-9819fece54b5" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" @@ -1287,44 +1287,44 @@ "25" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14782" + "14980" ], "x-ms-request-id": [ - "69e1afc9-cf6e-492f-b050-f1f682c1932b" + "e3895459-c511-4531-bef8-61affbf9d673" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Storage/operations/2c10430d-08b0-4bf1-9a71-7ae9ddbeed78?monitor=true&api-version=2015-06-15" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Storage/operations/93490a2c-97df-4092-8556-34bafec2366e?monitor=true&api-version=2015-06-15" ], "Server": [ "Microsoft-Azure-Storage-Resource-Provider/1.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "69e1afc9-cf6e-492f-b050-f1f682c1932b" + "e3895459-c511-4531-bef8-61affbf9d673" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T131908Z:69e1afc9-cf6e-492f-b050-f1f682c1932b" + "NORTHCENTRALUS:20160220T150109Z:e3895459-c511-4531-bef8-61affbf9d673" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Feb 2016 13:19:08 GMT" + "Sat, 20 Feb 2016 15:01:09 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Storage/operations/2c10430d-08b0-4bf1-9a71-7ae9ddbeed78?monitor=true&api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzJjMTA0MzBkLTA4YjAtNGJmMS05YTcxLTdhZTlkZGJlZWQ3OD9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Storage/operations/93490a2c-97df-4092-8556-34bafec2366e?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzkzNDkwYTJjLTk3ZGYtNDA5Mi04NTU2LTM0YmFmZWMyMzY2ZT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "752c9401-3986-426f-8e7e-d7fe07755d91" + "6cb7082e-6655-486d-b14c-79e3f792051d" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" @@ -1345,7 +1345,7 @@ "no-cache" ], "x-ms-request-id": [ - "c6257ced-59bd-491f-82bb-fc22cba1fcfd" + "807d9131-7f68-45de-86c5-7fedde901786" ], "Cache-Control": [ "no-cache" @@ -1355,37 +1355,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14780" + "14979" ], "x-ms-correlation-request-id": [ - "c6257ced-59bd-491f-82bb-fc22cba1fcfd" + "807d9131-7f68-45de-86c5-7fedde901786" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T131934Z:c6257ced-59bd-491f-82bb-fc22cba1fcfd" + "NORTHCENTRALUS:20160220T150134Z:807d9131-7f68-45de-86c5-7fedde901786" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Feb 2016 13:19:34 GMT" + "Sat, 20 Feb 2016 15:01:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Storage/storageAccounts/stocrptestps3457?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM0NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHMzNDU3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Storage/storageAccounts/stocrptestps8777?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg3NzcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM4Nzc3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "752537a6-c029-484e-b008-4f023a28818a" + "c5a5be81-1865-4e46-9b7a-c4d91a775da6" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Storage/storageAccounts/stocrptestps3457\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps3457\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T13:19:07.5618762Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps3457.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps3457.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps3457.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps3457.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Storage/storageAccounts/stocrptestps8777\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps8777\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-20T15:01:07.3660071Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps8777.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps8777.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps8777.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps8777.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "682" @@ -1400,7 +1400,7 @@ "no-cache" ], "x-ms-request-id": [ - "5a2e4d2e-502c-4566-bec7-e47cea949d13" + "c3e95731-e2cd-47ac-9e7c-f7f9b882649c" ], "Cache-Control": [ "no-cache" @@ -1410,37 +1410,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14779" + "14978" ], "x-ms-correlation-request-id": [ - "5a2e4d2e-502c-4566-bec7-e47cea949d13" + "c3e95731-e2cd-47ac-9e7c-f7f9b882649c" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T131934Z:5a2e4d2e-502c-4566-bec7-e47cea949d13" + "NORTHCENTRALUS:20160220T150134Z:c3e95731-e2cd-47ac-9e7c-f7f9b882649c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Feb 2016 13:19:34 GMT" + "Sat, 20 Feb 2016 15:01:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Storage/storageAccounts/stocrptestps3457?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM0NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHMzNDU3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Storage/storageAccounts/stocrptestps8777?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg3NzcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM4Nzc3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7d7f9074-34b4-4ad5-b55a-19b90a57af11" + "1bdf76a5-50ba-42f5-b174-e47b776f2eba" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Storage/storageAccounts/stocrptestps3457\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps3457\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T13:19:07.5618762Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps3457.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps3457.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps3457.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps3457.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Storage/storageAccounts/stocrptestps8777\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps8777\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-20T15:01:07.3660071Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps8777.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps8777.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps8777.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps8777.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "682" @@ -1455,7 +1455,7 @@ "no-cache" ], "x-ms-request-id": [ - "566ced8a-8a88-44b5-a382-4eb6ce51e50f" + "d0378ea9-3587-4896-b344-17fb580f9fda" ], "Cache-Control": [ "no-cache" @@ -1465,37 +1465,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14778" + "14977" ], "x-ms-correlation-request-id": [ - "566ced8a-8a88-44b5-a382-4eb6ce51e50f" + "d0378ea9-3587-4896-b344-17fb580f9fda" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T131934Z:566ced8a-8a88-44b5-a382-4eb6ce51e50f" + "NORTHCENTRALUS:20160220T150135Z:d0378ea9-3587-4896-b344-17fb580f9fda" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Feb 2016 13:19:34 GMT" + "Sat, 20 Feb 2016 15:01:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Storage/storageAccounts/stocrptestps3457/listKeys?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM0NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHMzNDU3L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Storage/storageAccounts/stocrptestps8777/listKeys?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg3NzcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM4Nzc3L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8375af87-9166-46f2-acf9-e47832184562" + "eeef4abd-2afe-4ddd-a95a-88bb08682a6b" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"key1\": \"drNk94kdlVm8VdcXAYBrEWgh1d4NM+8N46tOxAUMKTV6PpZjmYlkb/DB5UG75cj8PUvD4kK6ssxByIyMgNcSyA==\",\r\n \"key2\": \"Owc4SIPgSEluG7ruzgzHf8AVmuvqCV1EQjeuW97+IwsKTwKWYfNgE5fuqnwRWvXOhyg4WTgekW2ot0POlUT8Vg==\"\r\n}", + "ResponseBody": "{\r\n \"key1\": \"N76GG10+itCJvMCwX6IfvEQyGjQonBcdwDFFjVWVPK63A8OwO7tJrZLgsXbohOfHY4+0pvbdUSxjXEihGDaSdQ==\",\r\n \"key2\": \"wVohj4XgdjmJZBwq7LJZXkjOMJKDKoe7DbArsfxdBxJgKgKh4slzopXGKV9ytHEJ11rkn2WA3KaqYzllfIDKcw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "198" @@ -1510,7 +1510,7 @@ "no-cache" ], "x-ms-request-id": [ - "9bccb660-4c68-4b02-ba56-6f51cb893f46" + "1ed6e0c7-b281-4bf9-8af1-6ed41ef65b55" ], "Cache-Control": [ "no-cache" @@ -1520,37 +1520,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1197" ], "x-ms-correlation-request-id": [ - "9bccb660-4c68-4b02-ba56-6f51cb893f46" + "1ed6e0c7-b281-4bf9-8af1-6ed41ef65b55" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T131934Z:9bccb660-4c68-4b02-ba56-6f51cb893f46" + "NORTHCENTRALUS:20160220T150135Z:1ed6e0c7-b281-4bf9-8af1-6ed41ef65b55" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Feb 2016 13:19:34 GMT" + "Sat, 20 Feb 2016 15:01:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Storage/storageAccounts/stocrptestps3457/listKeys?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM0NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHMzNDU3L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Storage/storageAccounts/stocrptestps8777/listKeys?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg3NzcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM4Nzc3L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d22a2c28-e0f2-4e3c-b9a9-f642798faf97" + "f773dbbf-c1d5-4bd9-a7ee-8679302fd62b" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"key1\": \"drNk94kdlVm8VdcXAYBrEWgh1d4NM+8N46tOxAUMKTV6PpZjmYlkb/DB5UG75cj8PUvD4kK6ssxByIyMgNcSyA==\",\r\n \"key2\": \"Owc4SIPgSEluG7ruzgzHf8AVmuvqCV1EQjeuW97+IwsKTwKWYfNgE5fuqnwRWvXOhyg4WTgekW2ot0POlUT8Vg==\"\r\n}", + "ResponseBody": "{\r\n \"key1\": \"N76GG10+itCJvMCwX6IfvEQyGjQonBcdwDFFjVWVPK63A8OwO7tJrZLgsXbohOfHY4+0pvbdUSxjXEihGDaSdQ==\",\r\n \"key2\": \"wVohj4XgdjmJZBwq7LJZXkjOMJKDKoe7DbArsfxdBxJgKgKh4slzopXGKV9ytHEJ11rkn2WA3KaqYzllfIDKcw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "198" @@ -1565,7 +1565,7 @@ "no-cache" ], "x-ms-request-id": [ - "24e9b25f-f5df-465d-a7cc-9151f77c4b95" + "333c1e13-a0d0-4d24-9e37-9e198b103681" ], "Cache-Control": [ "no-cache" @@ -1575,37 +1575,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1199" ], "x-ms-correlation-request-id": [ - "24e9b25f-f5df-465d-a7cc-9151f77c4b95" + "333c1e13-a0d0-4d24-9e37-9e198b103681" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T132442Z:24e9b25f-f5df-465d-a7cc-9151f77c4b95" + "NORTHCENTRALUS:20160220T150738Z:333c1e13-a0d0-4d24-9e37-9e198b103681" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Feb 2016 13:24:41 GMT" + "Sat, 20 Feb 2016 15:07:38 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Storage/storageAccounts/stocrptestps3457/listKeys?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM0NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHMzNDU3L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Storage/storageAccounts/stocrptestps8777/listKeys?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg3NzcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM4Nzc3L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b2b34f58-12e5-4f1b-8126-9f39fa733b16" + "9c694a8c-7469-4b26-a0ee-bb808989428d" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"key1\": \"drNk94kdlVm8VdcXAYBrEWgh1d4NM+8N46tOxAUMKTV6PpZjmYlkb/DB5UG75cj8PUvD4kK6ssxByIyMgNcSyA==\",\r\n \"key2\": \"Owc4SIPgSEluG7ruzgzHf8AVmuvqCV1EQjeuW97+IwsKTwKWYfNgE5fuqnwRWvXOhyg4WTgekW2ot0POlUT8Vg==\"\r\n}", + "ResponseBody": "{\r\n \"key1\": \"N76GG10+itCJvMCwX6IfvEQyGjQonBcdwDFFjVWVPK63A8OwO7tJrZLgsXbohOfHY4+0pvbdUSxjXEihGDaSdQ==\",\r\n \"key2\": \"wVohj4XgdjmJZBwq7LJZXkjOMJKDKoe7DbArsfxdBxJgKgKh4slzopXGKV9ytHEJ11rkn2WA3KaqYzllfIDKcw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "198" @@ -1620,7 +1620,7 @@ "no-cache" ], "x-ms-request-id": [ - "86701aba-4e21-4171-b002-fcdf604845c1" + "1997165c-7b5b-4af9-a892-b4e947be4c0c" ], "Cache-Control": [ "no-cache" @@ -1630,37 +1630,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1198" ], "x-ms-correlation-request-id": [ - "86701aba-4e21-4171-b002-fcdf604845c1" + "1997165c-7b5b-4af9-a892-b4e947be4c0c" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T132443Z:86701aba-4e21-4171-b002-fcdf604845c1" + "NORTHCENTRALUS:20160220T150743Z:1997165c-7b5b-4af9-a892-b4e947be4c0c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Feb 2016 13:24:43 GMT" + "Sat, 20 Feb 2016 15:07:43 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Storage/storageAccounts/stocrptestps3457/listKeys?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM0NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHMzNDU3L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Storage/storageAccounts/stocrptestps8777/listKeys?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg3NzcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM4Nzc3L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2364051d-8370-4cdf-9e0b-fb3374b61cc4" + "f8cf3cae-27ee-4a96-9f20-31cde65f86ea" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"key1\": \"drNk94kdlVm8VdcXAYBrEWgh1d4NM+8N46tOxAUMKTV6PpZjmYlkb/DB5UG75cj8PUvD4kK6ssxByIyMgNcSyA==\",\r\n \"key2\": \"Owc4SIPgSEluG7ruzgzHf8AVmuvqCV1EQjeuW97+IwsKTwKWYfNgE5fuqnwRWvXOhyg4WTgekW2ot0POlUT8Vg==\"\r\n}", + "ResponseBody": "{\r\n \"key1\": \"N76GG10+itCJvMCwX6IfvEQyGjQonBcdwDFFjVWVPK63A8OwO7tJrZLgsXbohOfHY4+0pvbdUSxjXEihGDaSdQ==\",\r\n \"key2\": \"wVohj4XgdjmJZBwq7LJZXkjOMJKDKoe7DbArsfxdBxJgKgKh4slzopXGKV9ytHEJ11rkn2WA3KaqYzllfIDKcw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "198" @@ -1675,7 +1675,7 @@ "no-cache" ], "x-ms-request-id": [ - "ac42dac0-734f-46a5-b53d-6cb250d7842a" + "b9817c5b-6c1e-4b73-bb5d-6c0f53c20b0c" ], "Cache-Control": [ "no-cache" @@ -1685,37 +1685,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1197" ], "x-ms-correlation-request-id": [ - "ac42dac0-734f-46a5-b53d-6cb250d7842a" + "b9817c5b-6c1e-4b73-bb5d-6c0f53c20b0c" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T132751Z:ac42dac0-734f-46a5-b53d-6cb250d7842a" + "NORTHCENTRALUS:20160220T151223Z:b9817c5b-6c1e-4b73-bb5d-6c0f53c20b0c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Feb 2016 13:27:50 GMT" + "Sat, 20 Feb 2016 15:12:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Storage/storageAccounts/stocrptestps3457/listKeys?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM0NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHMzNDU3L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Storage/storageAccounts/stocrptestps8777/listKeys?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg3NzcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM4Nzc3L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dd5fe59a-6412-41c8-93e1-366f6fc1d8a6" + "9321e06f-0e8d-4b45-937d-49c32439bef1" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"key1\": \"drNk94kdlVm8VdcXAYBrEWgh1d4NM+8N46tOxAUMKTV6PpZjmYlkb/DB5UG75cj8PUvD4kK6ssxByIyMgNcSyA==\",\r\n \"key2\": \"Owc4SIPgSEluG7ruzgzHf8AVmuvqCV1EQjeuW97+IwsKTwKWYfNgE5fuqnwRWvXOhyg4WTgekW2ot0POlUT8Vg==\"\r\n}", + "ResponseBody": "{\r\n \"key1\": \"N76GG10+itCJvMCwX6IfvEQyGjQonBcdwDFFjVWVPK63A8OwO7tJrZLgsXbohOfHY4+0pvbdUSxjXEihGDaSdQ==\",\r\n \"key2\": \"wVohj4XgdjmJZBwq7LJZXkjOMJKDKoe7DbArsfxdBxJgKgKh4slzopXGKV9ytHEJ11rkn2WA3KaqYzllfIDKcw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "198" @@ -1730,7 +1730,7 @@ "no-cache" ], "x-ms-request-id": [ - "50f10ab3-6745-45e9-88be-a1ceeea4da64" + "4f7fa183-c832-41f7-bbcd-7c99fa1d7ba2" ], "Cache-Control": [ "no-cache" @@ -1740,28 +1740,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1196" ], "x-ms-correlation-request-id": [ - "50f10ab3-6745-45e9-88be-a1ceeea4da64" + "4f7fa183-c832-41f7-bbcd-7c99fa1d7ba2" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T132824Z:50f10ab3-6745-45e9-88be-a1ceeea4da64" + "NORTHCENTRALUS:20160220T151351Z:4f7fa183-c832-41f7-bbcd-7c99fa1d7ba2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Feb 2016 13:28:24 GMT" + "Sat, 20 Feb 2016 15:13:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM0NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczM0NTc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Compute/virtualMachines/vmcrptestps8777?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg3NzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczg3Nzc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3457.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 \"name\": \"testDataDisk1\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3457.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"Empty\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3457.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"Empty\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123crptestps3457\",\r\n \"linuxConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/networkInterfaces/nic0crptestps3457\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8777.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 \"name\": \"testDataDisk1\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8777.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"Empty\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8777.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"Empty\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123crptestps8777\",\r\n \"linuxConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Network/networkInterfaces/nic0crptestps8777\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1770,7 +1770,7 @@ "1752" ], "x-ms-client-request-id": [ - "4b5d8442-5f46-4dbf-ab03-9d9f9350e73b" + "77a21baa-d407-4217-a12e-e6b3c5763fa8" ], "accept-language": [ "en-US" @@ -1779,7 +1779,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"f0450819-1af8-4bd4-a847-3c3fa9d49689\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3457.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3457.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3457.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/networkInterfaces/nic0crptestps3457\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457\",\r\n \"name\": \"vmcrptestps3457\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"237c5912-4cc5-491c-b086-214d45bbabbc\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8777.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8777.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8777.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Network/networkInterfaces/nic0crptestps8777\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Compute/virtualMachines/vmcrptestps8777\",\r\n \"name\": \"vmcrptestps8777\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "2035" @@ -1794,16 +1794,16 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/929dff68-2815-4f1c-b4cb-6bdc5db945e0?api-version=2015-06-15" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/83c829e4-5196-4d01-88e2-e0864561e7fe?api-version=2015-06-15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "929dff68-2815-4f1c-b4cb-6bdc5db945e0" + "83c829e4-5196-4d01-88e2-e0864561e7fe" ], "Cache-Control": [ "no-cache" @@ -1813,23 +1813,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1191" ], "x-ms-correlation-request-id": [ - "07dbf534-cc32-479a-a2a4-3acf8a384574" + "eecf5ebc-f363-49d0-b4db-448b1bf80bc8" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T131937Z:07dbf534-cc32-479a-a2a4-3acf8a384574" + "NORTHCENTRALUS:20160220T150138Z:eecf5ebc-f363-49d0-b4db-448b1bf80bc8" ], "Date": [ - "Tue, 16 Feb 2016 13:19:36 GMT" + "Sat, 20 Feb 2016 15:01:38 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/929dff68-2815-4f1c-b4cb-6bdc5db945e0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOTI5ZGZmNjgtMjgxNS00ZjFjLWI0Y2ItNmJkYzVkYjk0NWUwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/83c829e4-5196-4d01-88e2-e0864561e7fe?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvODNjODI5ZTQtNTE5Ni00ZDAxLTg4ZTItZTA4NjQ1NjFlN2ZlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1837,7 +1837,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"929dff68-2815-4f1c-b4cb-6bdc5db945e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T14:19:36.6206493+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"83c829e4-5196-4d01-88e2-e0864561e7fe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-20T16:01:37.6019109+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1855,10 +1855,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "ef2f4be8-d027-49e4-8820-c27875f72935" + "490a53de-a023-4f73-8a9e-bf70c1a1799e" ], "Cache-Control": [ "no-cache" @@ -1868,23 +1868,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14895" + "14973" ], "x-ms-correlation-request-id": [ - "db08d485-d18b-493e-abb5-e3e9134f6e95" + "bbabcc36-69e0-4b7d-8d2e-59fe77a7c0da" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T132007Z:db08d485-d18b-493e-abb5-e3e9134f6e95" + "NORTHCENTRALUS:20160220T150209Z:bbabcc36-69e0-4b7d-8d2e-59fe77a7c0da" ], "Date": [ - "Tue, 16 Feb 2016 13:20:06 GMT" + "Sat, 20 Feb 2016 15:02:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/929dff68-2815-4f1c-b4cb-6bdc5db945e0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOTI5ZGZmNjgtMjgxNS00ZjFjLWI0Y2ItNmJkYzVkYjk0NWUwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/83c829e4-5196-4d01-88e2-e0864561e7fe?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvODNjODI5ZTQtNTE5Ni00ZDAxLTg4ZTItZTA4NjQ1NjFlN2ZlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1892,7 +1892,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"929dff68-2815-4f1c-b4cb-6bdc5db945e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T14:19:36.6206493+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"83c829e4-5196-4d01-88e2-e0864561e7fe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-20T16:01:37.6019109+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1910,10 +1910,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "f2b969c5-b181-48be-9e88-fdebec1aedee" + "15487ae2-5f49-4182-8f79-bfffc92f2365" ], "Cache-Control": [ "no-cache" @@ -1923,23 +1923,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14893" + "14972" ], "x-ms-correlation-request-id": [ - "e8a9a86b-f231-446c-991c-f3015f5e98c9" + "3fb7b0d2-acba-4935-9115-2ef57ee081a4" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T132037Z:e8a9a86b-f231-446c-991c-f3015f5e98c9" + "NORTHCENTRALUS:20160220T150239Z:3fb7b0d2-acba-4935-9115-2ef57ee081a4" ], "Date": [ - "Tue, 16 Feb 2016 13:20:37 GMT" + "Sat, 20 Feb 2016 15:02:39 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/929dff68-2815-4f1c-b4cb-6bdc5db945e0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOTI5ZGZmNjgtMjgxNS00ZjFjLWI0Y2ItNmJkYzVkYjk0NWUwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/83c829e4-5196-4d01-88e2-e0864561e7fe?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvODNjODI5ZTQtNTE5Ni00ZDAxLTg4ZTItZTA4NjQ1NjFlN2ZlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1947,7 +1947,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"929dff68-2815-4f1c-b4cb-6bdc5db945e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T14:19:36.6206493+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"83c829e4-5196-4d01-88e2-e0864561e7fe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-20T16:01:37.6019109+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1965,10 +1965,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "0412e0d5-f056-4911-a417-b7a8956799b9" + "9afc4cdc-8a91-49f8-bae4-8495e243fe43" ], "Cache-Control": [ "no-cache" @@ -1978,23 +1978,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14889" + "14971" ], "x-ms-correlation-request-id": [ - "92e6ad81-486d-4153-b44d-abcf97b155fd" + "8634ba3c-b970-4e0d-8a9c-7ac1ac747252" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T132107Z:92e6ad81-486d-4153-b44d-abcf97b155fd" + "NORTHCENTRALUS:20160220T150309Z:8634ba3c-b970-4e0d-8a9c-7ac1ac747252" ], "Date": [ - "Tue, 16 Feb 2016 13:21:07 GMT" + "Sat, 20 Feb 2016 15:03:09 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/929dff68-2815-4f1c-b4cb-6bdc5db945e0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOTI5ZGZmNjgtMjgxNS00ZjFjLWI0Y2ItNmJkYzVkYjk0NWUwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/83c829e4-5196-4d01-88e2-e0864561e7fe?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvODNjODI5ZTQtNTE5Ni00ZDAxLTg4ZTItZTA4NjQ1NjFlN2ZlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2002,7 +2002,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"929dff68-2815-4f1c-b4cb-6bdc5db945e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T14:19:36.6206493+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"83c829e4-5196-4d01-88e2-e0864561e7fe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-20T16:01:37.6019109+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2020,10 +2020,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "5e0d2cfa-9191-473f-88ce-afcf4fe8d8aa" + "62ed5f06-45fb-4ca5-baa1-15c0ee81ac62" ], "Cache-Control": [ "no-cache" @@ -2033,23 +2033,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14887" + "14970" ], "x-ms-correlation-request-id": [ - "20806bf5-5219-475d-b577-95719bcda8b9" + "dd1e6a67-b285-4b8b-afe1-6deae42ff29b" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T132138Z:20806bf5-5219-475d-b577-95719bcda8b9" + "NORTHCENTRALUS:20160220T150339Z:dd1e6a67-b285-4b8b-afe1-6deae42ff29b" ], "Date": [ - "Tue, 16 Feb 2016 13:21:38 GMT" + "Sat, 20 Feb 2016 15:03:39 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/929dff68-2815-4f1c-b4cb-6bdc5db945e0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOTI5ZGZmNjgtMjgxNS00ZjFjLWI0Y2ItNmJkYzVkYjk0NWUwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/83c829e4-5196-4d01-88e2-e0864561e7fe?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvODNjODI5ZTQtNTE5Ni00ZDAxLTg4ZTItZTA4NjQ1NjFlN2ZlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2057,7 +2057,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"929dff68-2815-4f1c-b4cb-6bdc5db945e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T14:19:36.6206493+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"83c829e4-5196-4d01-88e2-e0864561e7fe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-20T16:01:37.6019109+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2075,10 +2075,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "c8b06b7a-bf16-435a-98f4-78f1635d79d5" + "7cd7a302-2a02-482f-b713-16472fb5250b" ], "Cache-Control": [ "no-cache" @@ -2088,23 +2088,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14885" + "14969" ], "x-ms-correlation-request-id": [ - "deba7e2d-33da-46f0-9601-1829ddf9a2cb" + "a1684ea7-1934-4b3a-aa29-96ec0feb6cdf" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T132208Z:deba7e2d-33da-46f0-9601-1829ddf9a2cb" + "NORTHCENTRALUS:20160220T150409Z:a1684ea7-1934-4b3a-aa29-96ec0feb6cdf" ], "Date": [ - "Tue, 16 Feb 2016 13:22:07 GMT" + "Sat, 20 Feb 2016 15:04:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/929dff68-2815-4f1c-b4cb-6bdc5db945e0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOTI5ZGZmNjgtMjgxNS00ZjFjLWI0Y2ItNmJkYzVkYjk0NWUwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/83c829e4-5196-4d01-88e2-e0864561e7fe?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvODNjODI5ZTQtNTE5Ni00ZDAxLTg4ZTItZTA4NjQ1NjFlN2ZlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2112,7 +2112,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"929dff68-2815-4f1c-b4cb-6bdc5db945e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T14:19:36.6206493+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"83c829e4-5196-4d01-88e2-e0864561e7fe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-20T16:01:37.6019109+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2130,10 +2130,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "ea1cee68-da32-4e57-97e7-85facd451c3f" + "07bab2f9-544c-477b-a894-2cb78fb0f244" ], "Cache-Control": [ "no-cache" @@ -2143,23 +2143,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14879" + "14968" ], "x-ms-correlation-request-id": [ - "e78c0cbc-4bd6-4a8a-a424-4e339e00670e" + "65a23d34-acbc-4269-a3a9-19e58d2bef53" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T132238Z:e78c0cbc-4bd6-4a8a-a424-4e339e00670e" + "NORTHCENTRALUS:20160220T150439Z:65a23d34-acbc-4269-a3a9-19e58d2bef53" ], "Date": [ - "Tue, 16 Feb 2016 13:22:38 GMT" + "Sat, 20 Feb 2016 15:04:39 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/929dff68-2815-4f1c-b4cb-6bdc5db945e0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOTI5ZGZmNjgtMjgxNS00ZjFjLWI0Y2ItNmJkYzVkYjk0NWUwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/83c829e4-5196-4d01-88e2-e0864561e7fe?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvODNjODI5ZTQtNTE5Ni00ZDAxLTg4ZTItZTA4NjQ1NjFlN2ZlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2167,7 +2167,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"929dff68-2815-4f1c-b4cb-6bdc5db945e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T14:19:36.6206493+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"83c829e4-5196-4d01-88e2-e0864561e7fe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-20T16:01:37.6019109+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2185,10 +2185,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "3cae2716-532b-450c-8a79-6bc1931835ea" + "b5e8e60b-be73-47a0-822b-78bf8ba4ef96" ], "Cache-Control": [ "no-cache" @@ -2198,23 +2198,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14877" + "14967" ], "x-ms-correlation-request-id": [ - "8f20c2e0-adf2-4691-93b4-42675b06b2ee" + "3449191e-e70f-44e7-b76f-4543bc5a7e50" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T132308Z:8f20c2e0-adf2-4691-93b4-42675b06b2ee" + "NORTHCENTRALUS:20160220T150510Z:3449191e-e70f-44e7-b76f-4543bc5a7e50" ], "Date": [ - "Tue, 16 Feb 2016 13:23:08 GMT" + "Sat, 20 Feb 2016 15:05:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/929dff68-2815-4f1c-b4cb-6bdc5db945e0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOTI5ZGZmNjgtMjgxNS00ZjFjLWI0Y2ItNmJkYzVkYjk0NWUwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/83c829e4-5196-4d01-88e2-e0864561e7fe?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvODNjODI5ZTQtNTE5Ni00ZDAxLTg4ZTItZTA4NjQ1NjFlN2ZlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2222,7 +2222,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"929dff68-2815-4f1c-b4cb-6bdc5db945e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T14:19:36.6206493+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"83c829e4-5196-4d01-88e2-e0864561e7fe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-20T16:01:37.6019109+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2240,10 +2240,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "1db3adf1-3fda-47f1-9543-47dbdb46a521" + "9b36231f-b917-4eb8-8b9d-23316be9c046" ], "Cache-Control": [ "no-cache" @@ -2253,23 +2253,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14875" + "14965" ], "x-ms-correlation-request-id": [ - "3f532ed7-6b87-4316-b03e-c7613fcf4a4f" + "9c612dbc-8e05-42be-9f7d-76d814bd4ffe" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T132338Z:3f532ed7-6b87-4316-b03e-c7613fcf4a4f" + "NORTHCENTRALUS:20160220T150540Z:9c612dbc-8e05-42be-9f7d-76d814bd4ffe" ], "Date": [ - "Tue, 16 Feb 2016 13:23:38 GMT" + "Sat, 20 Feb 2016 15:05:39 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/929dff68-2815-4f1c-b4cb-6bdc5db945e0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOTI5ZGZmNjgtMjgxNS00ZjFjLWI0Y2ItNmJkYzVkYjk0NWUwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/83c829e4-5196-4d01-88e2-e0864561e7fe?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvODNjODI5ZTQtNTE5Ni00ZDAxLTg4ZTItZTA4NjQ1NjFlN2ZlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2277,7 +2277,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"929dff68-2815-4f1c-b4cb-6bdc5db945e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T14:19:36.6206493+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"83c829e4-5196-4d01-88e2-e0864561e7fe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-20T16:01:37.6019109+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2295,10 +2295,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "5a4e0e07-2c49-4a16-a51a-9e6e00fe02fa" + "78232b4c-4e0e-49d8-bacd-be5d0fc1869c" ], "Cache-Control": [ "no-cache" @@ -2308,23 +2308,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14873" + "14964" ], "x-ms-correlation-request-id": [ - "9cbf66d4-6e20-40b6-ab2d-75119f924006" + "9d45d005-2cce-4c17-b5d4-4a4d8726dd2e" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T132409Z:9cbf66d4-6e20-40b6-ab2d-75119f924006" + "NORTHCENTRALUS:20160220T150610Z:9d45d005-2cce-4c17-b5d4-4a4d8726dd2e" ], "Date": [ - "Tue, 16 Feb 2016 13:24:08 GMT" + "Sat, 20 Feb 2016 15:06:09 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/929dff68-2815-4f1c-b4cb-6bdc5db945e0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOTI5ZGZmNjgtMjgxNS00ZjFjLWI0Y2ItNmJkYzVkYjk0NWUwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/83c829e4-5196-4d01-88e2-e0864561e7fe?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvODNjODI5ZTQtNTE5Ni00ZDAxLTg4ZTItZTA4NjQ1NjFlN2ZlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2332,7 +2332,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"929dff68-2815-4f1c-b4cb-6bdc5db945e0\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-02-16T14:19:36.6206493+01:00\",\r\n \"endTime\": \"2016-02-16T14:24:21.0112539+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"83c829e4-5196-4d01-88e2-e0864561e7fe\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-02-20T16:01:37.6019109+01:00\",\r\n \"endTime\": \"2016-02-20T16:06:39.1490849+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "191" @@ -2350,10 +2350,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "5df8bd8a-6656-4964-8fdf-1e89634860ec" + "5c0eb446-2946-4efb-9351-155b9313688b" ], "Cache-Control": [ "no-cache" @@ -2363,23 +2363,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14872" + "14963" ], "x-ms-correlation-request-id": [ - "d8cb416c-bfc8-400a-9fd8-35336cffd436" + "84b0ba44-fb64-47c1-9a91-3c81c2ce1de2" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T132439Z:d8cb416c-bfc8-400a-9fd8-35336cffd436" + "NORTHCENTRALUS:20160220T150640Z:84b0ba44-fb64-47c1-9a91-3c81c2ce1de2" ], "Date": [ - "Tue, 16 Feb 2016 13:24:38 GMT" + "Sat, 20 Feb 2016 15:06:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM0NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczM0NTc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Compute/virtualMachines/vmcrptestps8777?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg3NzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczg3Nzc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2387,7 +2387,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"f0450819-1af8-4bd4-a847-3c3fa9d49689\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3457.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3457.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3457.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/networkInterfaces/nic0crptestps3457\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457\",\r\n \"name\": \"vmcrptestps3457\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"237c5912-4cc5-491c-b086-214d45bbabbc\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8777.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8777.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8777.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Network/networkInterfaces/nic0crptestps8777\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Compute/virtualMachines/vmcrptestps8777\",\r\n \"name\": \"vmcrptestps8777\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "2036" @@ -2405,10 +2405,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "d8633246-0c74-4fce-9d85-a47a5e37fa91" + "70d69f75-cd05-4224-84c8-3e9076113b7a" ], "Cache-Control": [ "no-cache" @@ -2418,28 +2418,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14871" + "14962" ], "x-ms-correlation-request-id": [ - "98429f9b-5250-40d3-882c-e34426c80dd9" + "1a200f4b-2380-4214-93b5-8529564f1b5a" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T132439Z:98429f9b-5250-40d3-882c-e34426c80dd9" + "NORTHCENTRALUS:20160220T150640Z:1a200f4b-2380-4214-93b5-8529564f1b5a" ], "Date": [ - "Tue, 16 Feb 2016 13:24:38 GMT" + "Sat, 20 Feb 2016 15:06:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM0NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczM0NTc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Compute/virtualMachines/vmcrptestps8777?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg3NzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczg3Nzc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a40ecbfd-0fc9-42b9-89b1-13467a776836" + "91428aae-cf6f-4895-90ee-96f05e16523e" ], "accept-language": [ "en-US" @@ -2448,7 +2448,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"f0450819-1af8-4bd4-a847-3c3fa9d49689\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3457.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3457.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3457.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/networkInterfaces/nic0crptestps3457\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457\",\r\n \"name\": \"vmcrptestps3457\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"237c5912-4cc5-491c-b086-214d45bbabbc\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8777.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8777.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8777.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Network/networkInterfaces/nic0crptestps8777\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Compute/virtualMachines/vmcrptestps8777\",\r\n \"name\": \"vmcrptestps8777\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "2036" @@ -2466,10 +2466,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "580846c8-5924-46e7-99de-aac88328ae2f" + "a86fd7a7-46b9-4607-96bc-ab0cd5305a3a" ], "Cache-Control": [ "no-cache" @@ -2479,28 +2479,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14870" + "14961" ], "x-ms-correlation-request-id": [ - "7788d5fd-a244-4eba-a6ed-828f35410449" + "a9c11917-258a-4b8e-8785-3224d55b217c" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T132439Z:7788d5fd-a244-4eba-a6ed-828f35410449" + "NORTHCENTRALUS:20160220T150641Z:a9c11917-258a-4b8e-8785-3224d55b217c" ], "Date": [ - "Tue, 16 Feb 2016 13:24:38 GMT" + "Sat, 20 Feb 2016 15:06:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM0NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczM0NTc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Compute/virtualMachines/vmcrptestps8777?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg3NzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczg3Nzc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "af3d6b34-63fe-4b37-9f7f-4f92b0431100" + "fabdab2d-69ac-4067-9a9b-3c426c684c61" ], "accept-language": [ "en-US" @@ -2509,7 +2509,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"f0450819-1af8-4bd4-a847-3c3fa9d49689\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3457.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3457.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3457.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/networkInterfaces/nic0crptestps3457\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457\",\r\n \"name\": \"vmcrptestps3457\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"237c5912-4cc5-491c-b086-214d45bbabbc\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8777.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8777.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8777.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Network/networkInterfaces/nic0crptestps8777\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Compute/virtualMachines/vmcrptestps8777\",\r\n \"name\": \"vmcrptestps8777\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "2036" @@ -2527,10 +2527,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "a20e1536-71f7-4add-8b6c-d740340cf53b" + "cea8398e-9af6-42a9-857e-db18e0749b82" ], "Cache-Control": [ "no-cache" @@ -2540,28 +2540,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14869" + "14960" ], "x-ms-correlation-request-id": [ - "dbc45459-8f6b-453e-81a1-ed543946dffc" + "16e1f697-b71a-4ad6-ab70-5a933bf62962" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T132439Z:dbc45459-8f6b-453e-81a1-ed543946dffc" + "NORTHCENTRALUS:20160220T150641Z:16e1f697-b71a-4ad6-ab70-5a933bf62962" ], "Date": [ - "Tue, 16 Feb 2016 13:24:39 GMT" + "Sat, 20 Feb 2016 15:06:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM0NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczM0NTc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Compute/virtualMachines/vmcrptestps8777?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg3NzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczg3Nzc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9e1f8afb-b346-4e63-a762-9c251918eabb" + "d0af6182-585e-48ba-aa02-0210a631d656" ], "accept-language": [ "en-US" @@ -2570,7 +2570,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"f0450819-1af8-4bd4-a847-3c3fa9d49689\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3457.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3457.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3457.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/networkInterfaces/nic0crptestps3457\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457\",\r\n \"name\": \"vmcrptestps3457\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"237c5912-4cc5-491c-b086-214d45bbabbc\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8777.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8777.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8777.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Network/networkInterfaces/nic0crptestps8777\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Compute/virtualMachines/vmcrptestps8777\",\r\n \"name\": \"vmcrptestps8777\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "2036" @@ -2588,10 +2588,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "7cd9a905-0ee7-4831-bba5-f83321e24711" + "05a5e94d-bd44-4a6d-a163-e4952341224d" ], "Cache-Control": [ "no-cache" @@ -2601,28 +2601,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14868" + "14959" ], "x-ms-correlation-request-id": [ - "fcbd5786-827f-43f7-afb4-87f20181b6fe" + "0bc8f5a7-8778-4a3b-96cc-7290ba157c04" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T132439Z:fcbd5786-827f-43f7-afb4-87f20181b6fe" + "NORTHCENTRALUS:20160220T150649Z:0bc8f5a7-8778-4a3b-96cc-7290ba157c04" ], "Date": [ - "Tue, 16 Feb 2016 13:24:39 GMT" + "Sat, 20 Feb 2016 15:06:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM0NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczM0NTc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Compute/virtualMachines/vmcrptestps8777?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg3NzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczg3Nzc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c5902ad4-7772-4c7e-8564-d8e76c77d29c" + "18609724-4beb-419c-b334-48d6cc082c70" ], "accept-language": [ "en-US" @@ -2631,7 +2631,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"f0450819-1af8-4bd4-a847-3c3fa9d49689\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3457.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3457.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3457.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/networkInterfaces/nic0crptestps3457\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457\",\r\n \"name\": \"vmcrptestps3457\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"237c5912-4cc5-491c-b086-214d45bbabbc\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8777.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8777.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8777.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Network/networkInterfaces/nic0crptestps8777\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Compute/virtualMachines/vmcrptestps8777\",\r\n \"name\": \"vmcrptestps8777\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "2036" @@ -2649,10 +2649,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "6133db2e-91ce-4afe-8b35-603a98a95eca" + "c985a1c0-37d2-4c38-89e7-de5e8e32f68f" ], "Cache-Control": [ "no-cache" @@ -2662,28 +2662,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14866" + "14956" ], "x-ms-correlation-request-id": [ - "dcfa5b6f-06bd-491f-92d3-7fedb97abeaf" + "7584c9e3-0599-489c-8e2d-20d388955d57" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T132442Z:dcfa5b6f-06bd-491f-92d3-7fedb97abeaf" + "NORTHCENTRALUS:20160220T150742Z:7584c9e3-0599-489c-8e2d-20d388955d57" ], "Date": [ - "Tue, 16 Feb 2016 13:24:42 GMT" + "Sat, 20 Feb 2016 15:07:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM0NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczM0NTc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Compute/virtualMachines/vmcrptestps8777?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg3NzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczg3Nzc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ee1788db-90ad-47a1-ad4d-4b3296b8bd18" + "1775c3a3-1190-46e7-b41e-4b7bbf9ee65d" ], "accept-language": [ "en-US" @@ -2692,7 +2692,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"f0450819-1af8-4bd4-a847-3c3fa9d49689\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3457.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3457.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3457.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/networkInterfaces/nic0crptestps3457\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRQcm9jZXNzb3JUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRJZGxlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50UHJpdmlsZWdlZFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudEludGVycnVwdFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudERQQ1RpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudFVzZXJUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnROaWNlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50SU9XYWl0VGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZE1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxVc2VkTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRBdmFpbGFibGVNZW1vcnkiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRVc2VkQnlDYWNoZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcVXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1BlclNlYyIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1JlYWRQZXJTZWMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcUGFnZXNXcml0dGVuUGVyU2VjIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VUcmFuc2ZlclRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQXZlcmFnZVJlYWRUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VXcml0ZVRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcVHJhbnNmZXJzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFJlYWRzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFdyaXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xCeXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xXcml0ZUJ5dGVzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VEaXNrUXVldWVMZW5ndGgiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVG90YWwiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVHJhbnNtaXR0ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzUmVjZWl2ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXFBhY2tldHNUcmFuc21pdHRlZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcUGFja2V0c1JlY2VpdmVkIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFJ4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFR4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbENvbGxpc2lvbnMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457/extensions/LinuxDiagnostic\",\r\n \"name\": \"LinuxDiagnostic\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457\",\r\n \"name\": \"vmcrptestps3457\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"237c5912-4cc5-491c-b086-214d45bbabbc\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8777.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8777.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8777.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Network/networkInterfaces/nic0crptestps8777\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRQcm9jZXNzb3JUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRJZGxlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50UHJpdmlsZWdlZFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudEludGVycnVwdFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudERQQ1RpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudFVzZXJUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnROaWNlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50SU9XYWl0VGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZE1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxVc2VkTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRBdmFpbGFibGVNZW1vcnkiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRVc2VkQnlDYWNoZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcVXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1BlclNlYyIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1JlYWRQZXJTZWMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcUGFnZXNXcml0dGVuUGVyU2VjIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VUcmFuc2ZlclRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQXZlcmFnZVJlYWRUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VXcml0ZVRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcVHJhbnNmZXJzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFJlYWRzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFdyaXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xCeXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xXcml0ZUJ5dGVzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VEaXNrUXVldWVMZW5ndGgiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVG90YWwiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVHJhbnNtaXR0ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzUmVjZWl2ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXFBhY2tldHNUcmFuc21pdHRlZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcUGFja2V0c1JlY2VpdmVkIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFJ4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFR4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbENvbGxpc2lvbnMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Compute/virtualMachines/vmcrptestps8777/extensions/LinuxDiagnostic\",\r\n \"name\": \"LinuxDiagnostic\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Compute/virtualMachines/vmcrptestps8777\",\r\n \"name\": \"vmcrptestps8777\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "7801" @@ -2710,10 +2710,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "70271a30-1077-4216-925c-0ba8711d418f" + "562bb247-2385-47f1-b6f1-5b39dedc13da" ], "Cache-Control": [ "no-cache" @@ -2723,28 +2723,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14867" + "14945" ], "x-ms-correlation-request-id": [ - "649bf65a-32e8-47b8-be3e-10120d8c0200" + "b9c8db6f-7031-4c49-890e-f0d4754d2a8c" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T132617Z:649bf65a-32e8-47b8-be3e-10120d8c0200" + "NORTHCENTRALUS:20160220T151048Z:b9c8db6f-7031-4c49-890e-f0d4754d2a8c" ], "Date": [ - "Tue, 16 Feb 2016 13:26:16 GMT" + "Sat, 20 Feb 2016 15:10:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM0NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczM0NTc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Compute/virtualMachines/vmcrptestps8777?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg3NzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczg3Nzc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "29746c05-3ba3-4901-bb15-4814356f9e7f" + "d7ca4a3a-c458-4241-89f2-f84b5328162f" ], "accept-language": [ "en-US" @@ -2753,7 +2753,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"f0450819-1af8-4bd4-a847-3c3fa9d49689\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3457.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3457.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3457.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/networkInterfaces/nic0crptestps3457\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_A2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"osdisk.connminute\",\r\n \"value\": \"stocrptestps3457.minute\"\r\n },\r\n {\r\n \"key\": \"osdisk.connhour\",\r\n \"value\": \"stocrptestps3457.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.1\",\r\n \"value\": \"stocrptestps3457.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.1\",\r\n \"value\": \"stocrptestps3457.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.2\",\r\n \"value\": \"stocrptestps3457.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.2\",\r\n \"value\": \"stocrptestps3457.hour\"\r\n },\r\n {\r\n \"key\": \"stocrptestps3457.hour.uri\",\r\n \"value\": \"https://stocrptestps3457.table.core.windows.net/$MetricsHourPrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps3457.minute.uri\",\r\n \"value\": \"https://stocrptestps3457.table.core.windows.net/$MetricsMinutePrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps3457.hour.name\",\r\n \"value\": \"stocrptestps3457\"\r\n },\r\n {\r\n \"key\": \"stocrptestps3457.minute.name\",\r\n \"value\": \"stocrptestps3457\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps3457\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps3457.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457/extensions/AzureEnhancedMonitorForLinux\",\r\n \"name\": \"AzureEnhancedMonitorForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRQcm9jZXNzb3JUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRJZGxlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50UHJpdmlsZWdlZFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudEludGVycnVwdFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudERQQ1RpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudFVzZXJUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnROaWNlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50SU9XYWl0VGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZE1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxVc2VkTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRBdmFpbGFibGVNZW1vcnkiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRVc2VkQnlDYWNoZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcVXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1BlclNlYyIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1JlYWRQZXJTZWMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcUGFnZXNXcml0dGVuUGVyU2VjIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VUcmFuc2ZlclRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQXZlcmFnZVJlYWRUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VXcml0ZVRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcVHJhbnNmZXJzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFJlYWRzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFdyaXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xCeXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xXcml0ZUJ5dGVzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VEaXNrUXVldWVMZW5ndGgiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVG90YWwiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVHJhbnNtaXR0ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzUmVjZWl2ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXFBhY2tldHNUcmFuc21pdHRlZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcUGFja2V0c1JlY2VpdmVkIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFJ4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFR4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbENvbGxpc2lvbnMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457/extensions/LinuxDiagnostic\",\r\n \"name\": \"LinuxDiagnostic\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457\",\r\n \"name\": \"vmcrptestps3457\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"237c5912-4cc5-491c-b086-214d45bbabbc\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8777.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8777.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8777.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Network/networkInterfaces/nic0crptestps8777\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_A2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"osdisk.connminute\",\r\n \"value\": \"stocrptestps8777.minute\"\r\n },\r\n {\r\n \"key\": \"osdisk.connhour\",\r\n \"value\": \"stocrptestps8777.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.1\",\r\n \"value\": \"stocrptestps8777.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.1\",\r\n \"value\": \"stocrptestps8777.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.2\",\r\n \"value\": \"stocrptestps8777.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.2\",\r\n \"value\": \"stocrptestps8777.hour\"\r\n },\r\n {\r\n \"key\": \"stocrptestps8777.hour.uri\",\r\n \"value\": \"https://stocrptestps8777.table.core.windows.net/$MetricsHourPrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps8777.minute.uri\",\r\n \"value\": \"https://stocrptestps8777.table.core.windows.net/$MetricsMinutePrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps8777.hour.name\",\r\n \"value\": \"stocrptestps8777\"\r\n },\r\n {\r\n \"key\": \"stocrptestps8777.minute.name\",\r\n \"value\": \"stocrptestps8777\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps8777\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps8777.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Compute/virtualMachines/vmcrptestps8777/extensions/AzureEnhancedMonitorForLinux\",\r\n \"name\": \"AzureEnhancedMonitorForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRQcm9jZXNzb3JUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRJZGxlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50UHJpdmlsZWdlZFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudEludGVycnVwdFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudERQQ1RpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudFVzZXJUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnROaWNlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50SU9XYWl0VGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZE1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxVc2VkTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRBdmFpbGFibGVNZW1vcnkiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRVc2VkQnlDYWNoZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcVXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1BlclNlYyIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1JlYWRQZXJTZWMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcUGFnZXNXcml0dGVuUGVyU2VjIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VUcmFuc2ZlclRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQXZlcmFnZVJlYWRUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VXcml0ZVRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcVHJhbnNmZXJzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFJlYWRzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFdyaXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xCeXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xXcml0ZUJ5dGVzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VEaXNrUXVldWVMZW5ndGgiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVG90YWwiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVHJhbnNtaXR0ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzUmVjZWl2ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXFBhY2tldHNUcmFuc21pdHRlZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcUGFja2V0c1JlY2VpdmVkIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFJ4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFR4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbENvbGxpc2lvbnMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Compute/virtualMachines/vmcrptestps8777/extensions/LinuxDiagnostic\",\r\n \"name\": \"LinuxDiagnostic\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Compute/virtualMachines/vmcrptestps8777\",\r\n \"name\": \"vmcrptestps8777\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "10081" @@ -2771,10 +2771,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "f8ff1758-9f82-4eb8-8d08-ca35e0cca77c" + "68ed2f95-d6b8-458a-aa04-debd9b32c46a" ], "Cache-Control": [ "no-cache" @@ -2784,28 +2784,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14860" + "14939" ], "x-ms-correlation-request-id": [ - "0a3883af-4f74-45b0-8825-76897aae38a0" + "6b62ed32-25f2-4a54-9b53-62145a61ed11" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T132749Z:0a3883af-4f74-45b0-8825-76897aae38a0" + "NORTHCENTRALUS:20160220T151222Z:6b62ed32-25f2-4a54-9b53-62145a61ed11" ], "Date": [ - "Tue, 16 Feb 2016 13:27:49 GMT" + "Sat, 20 Feb 2016 15:12:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM0NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczM0NTc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Compute/virtualMachines/vmcrptestps8777?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg3NzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczg3Nzc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e8aae81e-7a41-407b-9115-0245a3fbfcd8" + "8352ce6a-3a5c-4313-8b0c-a25ef2bbac1c" ], "accept-language": [ "en-US" @@ -2814,7 +2814,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"f0450819-1af8-4bd4-a847-3c3fa9d49689\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3457.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3457.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3457.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/networkInterfaces/nic0crptestps3457\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_A2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"osdisk.connminute\",\r\n \"value\": \"stocrptestps3457.minute\"\r\n },\r\n {\r\n \"key\": \"osdisk.connhour\",\r\n \"value\": \"stocrptestps3457.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.1\",\r\n \"value\": \"stocrptestps3457.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.1\",\r\n \"value\": \"stocrptestps3457.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.2\",\r\n \"value\": \"stocrptestps3457.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.2\",\r\n \"value\": \"stocrptestps3457.hour\"\r\n },\r\n {\r\n \"key\": \"stocrptestps3457.hour.uri\",\r\n \"value\": \"https://stocrptestps3457.table.core.windows.net/$MetricsHourPrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps3457.minute.uri\",\r\n \"value\": \"https://stocrptestps3457.table.core.windows.net/$MetricsMinutePrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps3457.hour.name\",\r\n \"value\": \"stocrptestps3457\"\r\n },\r\n {\r\n \"key\": \"stocrptestps3457.minute.name\",\r\n \"value\": \"stocrptestps3457\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps3457\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps3457.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457/extensions/AzureEnhancedMonitorForLinux\",\r\n \"name\": \"AzureEnhancedMonitorForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRQcm9jZXNzb3JUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRJZGxlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50UHJpdmlsZWdlZFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudEludGVycnVwdFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudERQQ1RpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudFVzZXJUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnROaWNlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50SU9XYWl0VGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZE1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxVc2VkTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRBdmFpbGFibGVNZW1vcnkiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRVc2VkQnlDYWNoZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcVXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1BlclNlYyIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1JlYWRQZXJTZWMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcUGFnZXNXcml0dGVuUGVyU2VjIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VUcmFuc2ZlclRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQXZlcmFnZVJlYWRUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VXcml0ZVRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcVHJhbnNmZXJzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFJlYWRzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFdyaXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xCeXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xXcml0ZUJ5dGVzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VEaXNrUXVldWVMZW5ndGgiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVG90YWwiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVHJhbnNtaXR0ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzUmVjZWl2ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXFBhY2tldHNUcmFuc21pdHRlZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcUGFja2V0c1JlY2VpdmVkIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFJ4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFR4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbENvbGxpc2lvbnMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457/extensions/LinuxDiagnostic\",\r\n \"name\": \"LinuxDiagnostic\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457\",\r\n \"name\": \"vmcrptestps3457\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"237c5912-4cc5-491c-b086-214d45bbabbc\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8777.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8777.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8777.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Network/networkInterfaces/nic0crptestps8777\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_A2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"osdisk.connminute\",\r\n \"value\": \"stocrptestps8777.minute\"\r\n },\r\n {\r\n \"key\": \"osdisk.connhour\",\r\n \"value\": \"stocrptestps8777.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.1\",\r\n \"value\": \"stocrptestps8777.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.1\",\r\n \"value\": \"stocrptestps8777.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.2\",\r\n \"value\": \"stocrptestps8777.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.2\",\r\n \"value\": \"stocrptestps8777.hour\"\r\n },\r\n {\r\n \"key\": \"stocrptestps8777.hour.uri\",\r\n \"value\": \"https://stocrptestps8777.table.core.windows.net/$MetricsHourPrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps8777.minute.uri\",\r\n \"value\": \"https://stocrptestps8777.table.core.windows.net/$MetricsMinutePrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps8777.hour.name\",\r\n \"value\": \"stocrptestps8777\"\r\n },\r\n {\r\n \"key\": \"stocrptestps8777.minute.name\",\r\n \"value\": \"stocrptestps8777\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps8777\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps8777.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Compute/virtualMachines/vmcrptestps8777/extensions/AzureEnhancedMonitorForLinux\",\r\n \"name\": \"AzureEnhancedMonitorForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRQcm9jZXNzb3JUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRJZGxlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50UHJpdmlsZWdlZFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudEludGVycnVwdFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudERQQ1RpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudFVzZXJUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnROaWNlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50SU9XYWl0VGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZE1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxVc2VkTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRBdmFpbGFibGVNZW1vcnkiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRVc2VkQnlDYWNoZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcVXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1BlclNlYyIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1JlYWRQZXJTZWMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcUGFnZXNXcml0dGVuUGVyU2VjIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VUcmFuc2ZlclRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQXZlcmFnZVJlYWRUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VXcml0ZVRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcVHJhbnNmZXJzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFJlYWRzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFdyaXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xCeXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xXcml0ZUJ5dGVzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VEaXNrUXVldWVMZW5ndGgiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVG90YWwiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVHJhbnNtaXR0ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzUmVjZWl2ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXFBhY2tldHNUcmFuc21pdHRlZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcUGFja2V0c1JlY2VpdmVkIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFJ4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFR4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbENvbGxpc2lvbnMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Compute/virtualMachines/vmcrptestps8777/extensions/LinuxDiagnostic\",\r\n \"name\": \"LinuxDiagnostic\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Compute/virtualMachines/vmcrptestps8777\",\r\n \"name\": \"vmcrptestps8777\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "10081" @@ -2832,10 +2832,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "dfcda2a4-ad4a-4e0a-8e98-7fe425f07369" + "3a230be9-9f06-48a8-9170-d12d8b54f2bc" ], "Cache-Control": [ "no-cache" @@ -2845,28 +2845,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14856" + "14936" ], "x-ms-correlation-request-id": [ - "c7acadc1-3bd7-4370-9fc7-f22a85a44a37" + "d664d3d0-e7d3-4b0d-b5d7-978f40f25e24" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T132823Z:c7acadc1-3bd7-4370-9fc7-f22a85a44a37" + "NORTHCENTRALUS:20160220T151312Z:d664d3d0-e7d3-4b0d-b5d7-978f40f25e24" ], "Date": [ - "Tue, 16 Feb 2016 13:28:22 GMT" + "Sat, 20 Feb 2016 15:13:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM0NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczM0NTc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Compute/virtualMachines/vmcrptestps8777?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg3NzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczg3Nzc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4cbee42d-b4a2-4885-9d78-5189c038c031" + "eb427b51-6938-4688-a16f-c31ebefd2a6e" ], "accept-language": [ "en-US" @@ -2875,7 +2875,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"f0450819-1af8-4bd4-a847-3c3fa9d49689\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3457.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3457.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3457.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/networkInterfaces/nic0crptestps3457\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_A2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"osdisk.connminute\",\r\n \"value\": \"stocrptestps3457.minute\"\r\n },\r\n {\r\n \"key\": \"osdisk.connhour\",\r\n \"value\": \"stocrptestps3457.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.1\",\r\n \"value\": \"stocrptestps3457.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.1\",\r\n \"value\": \"stocrptestps3457.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.2\",\r\n \"value\": \"stocrptestps3457.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.2\",\r\n \"value\": \"stocrptestps3457.hour\"\r\n },\r\n {\r\n \"key\": \"stocrptestps3457.hour.uri\",\r\n \"value\": \"https://stocrptestps3457.table.core.windows.net/$MetricsHourPrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps3457.minute.uri\",\r\n \"value\": \"https://stocrptestps3457.table.core.windows.net/$MetricsMinutePrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps3457.hour.name\",\r\n \"value\": \"stocrptestps3457\"\r\n },\r\n {\r\n \"key\": \"stocrptestps3457.minute.name\",\r\n \"value\": \"stocrptestps3457\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps3457\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps3457.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457/extensions/AzureEnhancedMonitorForLinux\",\r\n \"name\": \"AzureEnhancedMonitorForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRQcm9jZXNzb3JUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRJZGxlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50UHJpdmlsZWdlZFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudEludGVycnVwdFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudERQQ1RpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudFVzZXJUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnROaWNlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50SU9XYWl0VGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZE1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxVc2VkTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRBdmFpbGFibGVNZW1vcnkiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRVc2VkQnlDYWNoZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcVXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1BlclNlYyIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1JlYWRQZXJTZWMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcUGFnZXNXcml0dGVuUGVyU2VjIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VUcmFuc2ZlclRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQXZlcmFnZVJlYWRUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VXcml0ZVRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcVHJhbnNmZXJzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFJlYWRzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFdyaXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xCeXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xXcml0ZUJ5dGVzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VEaXNrUXVldWVMZW5ndGgiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVG90YWwiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVHJhbnNtaXR0ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzUmVjZWl2ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXFBhY2tldHNUcmFuc21pdHRlZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcUGFja2V0c1JlY2VpdmVkIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFJ4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFR4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbENvbGxpc2lvbnMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457/extensions/LinuxDiagnostic\",\r\n \"name\": \"LinuxDiagnostic\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457\",\r\n \"name\": \"vmcrptestps3457\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"237c5912-4cc5-491c-b086-214d45bbabbc\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8777.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8777.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8777.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Network/networkInterfaces/nic0crptestps8777\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_A2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"osdisk.connminute\",\r\n \"value\": \"stocrptestps8777.minute\"\r\n },\r\n {\r\n \"key\": \"osdisk.connhour\",\r\n \"value\": \"stocrptestps8777.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.1\",\r\n \"value\": \"stocrptestps8777.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.1\",\r\n \"value\": \"stocrptestps8777.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.2\",\r\n \"value\": \"stocrptestps8777.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.2\",\r\n \"value\": \"stocrptestps8777.hour\"\r\n },\r\n {\r\n \"key\": \"stocrptestps8777.hour.uri\",\r\n \"value\": \"https://stocrptestps8777.table.core.windows.net/$MetricsHourPrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps8777.minute.uri\",\r\n \"value\": \"https://stocrptestps8777.table.core.windows.net/$MetricsMinutePrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps8777.hour.name\",\r\n \"value\": \"stocrptestps8777\"\r\n },\r\n {\r\n \"key\": \"stocrptestps8777.minute.name\",\r\n \"value\": \"stocrptestps8777\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps8777\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps8777.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Compute/virtualMachines/vmcrptestps8777/extensions/AzureEnhancedMonitorForLinux\",\r\n \"name\": \"AzureEnhancedMonitorForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRQcm9jZXNzb3JUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRJZGxlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50UHJpdmlsZWdlZFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudEludGVycnVwdFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudERQQ1RpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudFVzZXJUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnROaWNlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50SU9XYWl0VGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZE1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxVc2VkTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRBdmFpbGFibGVNZW1vcnkiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRVc2VkQnlDYWNoZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcVXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1BlclNlYyIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1JlYWRQZXJTZWMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcUGFnZXNXcml0dGVuUGVyU2VjIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VUcmFuc2ZlclRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQXZlcmFnZVJlYWRUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VXcml0ZVRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcVHJhbnNmZXJzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFJlYWRzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFdyaXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xCeXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xXcml0ZUJ5dGVzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VEaXNrUXVldWVMZW5ndGgiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVG90YWwiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVHJhbnNtaXR0ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzUmVjZWl2ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXFBhY2tldHNUcmFuc21pdHRlZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcUGFja2V0c1JlY2VpdmVkIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFJ4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFR4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbENvbGxpc2lvbnMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Compute/virtualMachines/vmcrptestps8777/extensions/LinuxDiagnostic\",\r\n \"name\": \"LinuxDiagnostic\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Compute/virtualMachines/vmcrptestps8777\",\r\n \"name\": \"vmcrptestps8777\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "10081" @@ -2893,10 +2893,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "26f12fc4-8eb9-4d56-a212-3022986c4ae0" + "dccf4111-0d49-4324-a70e-4c029d5e42ef" ], "Cache-Control": [ "no-cache" @@ -2906,28 +2906,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14736" + "14946" ], "x-ms-correlation-request-id": [ - "7391d62a-857c-4603-9b20-8af23626860a" + "351f73dc-bd90-42fa-a9b6-7c99174526e4" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T140123Z:7391d62a-857c-4603-9b20-8af23626860a" + "NORTHCENTRALUS:20160220T151539Z:351f73dc-bd90-42fa-a9b6-7c99174526e4" ], "Date": [ - "Tue, 16 Feb 2016 14:01:22 GMT" + "Sat, 20 Feb 2016 15:15:39 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM0NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczM0NTc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Compute/virtualMachines/vmcrptestps8777?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg3NzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczg3Nzc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1b3c02ff-fdde-49be-bbba-fc93fecf4090" + "f7c61f1f-7bc1-4362-80fe-d18fd070a75e" ], "accept-language": [ "en-US" @@ -2936,7 +2936,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"f0450819-1af8-4bd4-a847-3c3fa9d49689\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3457.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3457.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3457.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/networkInterfaces/nic0crptestps3457\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRQcm9jZXNzb3JUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRJZGxlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50UHJpdmlsZWdlZFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudEludGVycnVwdFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudERQQ1RpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudFVzZXJUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnROaWNlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50SU9XYWl0VGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZE1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxVc2VkTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRBdmFpbGFibGVNZW1vcnkiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRVc2VkQnlDYWNoZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcVXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1BlclNlYyIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1JlYWRQZXJTZWMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcUGFnZXNXcml0dGVuUGVyU2VjIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VUcmFuc2ZlclRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQXZlcmFnZVJlYWRUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VXcml0ZVRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcVHJhbnNmZXJzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFJlYWRzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFdyaXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xCeXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xXcml0ZUJ5dGVzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VEaXNrUXVldWVMZW5ndGgiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVG90YWwiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVHJhbnNtaXR0ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzUmVjZWl2ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXFBhY2tldHNUcmFuc21pdHRlZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcUGFja2V0c1JlY2VpdmVkIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFJ4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFR4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbENvbGxpc2lvbnMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457/extensions/LinuxDiagnostic\",\r\n \"name\": \"LinuxDiagnostic\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457\",\r\n \"name\": \"vmcrptestps3457\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"237c5912-4cc5-491c-b086-214d45bbabbc\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8777.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8777.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8777.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Network/networkInterfaces/nic0crptestps8777\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRQcm9jZXNzb3JUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRJZGxlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50UHJpdmlsZWdlZFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudEludGVycnVwdFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudERQQ1RpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudFVzZXJUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnROaWNlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50SU9XYWl0VGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZE1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxVc2VkTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRBdmFpbGFibGVNZW1vcnkiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRVc2VkQnlDYWNoZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcVXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1BlclNlYyIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1JlYWRQZXJTZWMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcUGFnZXNXcml0dGVuUGVyU2VjIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VUcmFuc2ZlclRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQXZlcmFnZVJlYWRUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VXcml0ZVRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcVHJhbnNmZXJzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFJlYWRzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFdyaXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xCeXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xXcml0ZUJ5dGVzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VEaXNrUXVldWVMZW5ndGgiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVG90YWwiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVHJhbnNtaXR0ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzUmVjZWl2ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXFBhY2tldHNUcmFuc21pdHRlZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcUGFja2V0c1JlY2VpdmVkIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFJ4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFR4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbENvbGxpc2lvbnMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Compute/virtualMachines/vmcrptestps8777/extensions/LinuxDiagnostic\",\r\n \"name\": \"LinuxDiagnostic\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Compute/virtualMachines/vmcrptestps8777\",\r\n \"name\": \"vmcrptestps8777\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "7801" @@ -2954,10 +2954,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "3b72f1cf-34a7-4099-a949-2d6c0ee79051" + "f954e807-66d1-40a9-a8a6-116b58c83d80" ], "Cache-Control": [ "no-cache" @@ -2967,28 +2967,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14729" + "14940" ], "x-ms-correlation-request-id": [ - "951bc40a-00e6-4ff0-a9ea-0a4c9a80982e" + "0cd345c6-1504-4eae-97be-befb536e4767" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T140256Z:951bc40a-00e6-4ff0-a9ea-0a4c9a80982e" + "NORTHCENTRALUS:20160220T151712Z:0cd345c6-1504-4eae-97be-befb536e4767" ], "Date": [ - "Tue, 16 Feb 2016 14:02:55 GMT" + "Sat, 20 Feb 2016 15:17:11 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457?$expand=instanceView&api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM0NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczM0NTc/JGV4cGFuZD1pbnN0YW5jZVZpZXcmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Compute/virtualMachines/vmcrptestps8777?$expand=instanceView&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg3NzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczg3Nzc/JGV4cGFuZD1pbnN0YW5jZVZpZXcmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "377b132b-4ea3-4538-b39f-08f027da391c" + "f48d4128-c0f5-4a19-9710-8604b4f6f416" ], "accept-language": [ "en-US" @@ -2997,7 +2997,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"f0450819-1af8-4bd4-a847-3c3fa9d49689\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3457.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3457.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3457.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/networkInterfaces/nic0crptestps3457\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"WALinuxAgent-2.0.14\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"GuestAgent is running and accepting new configurations.\",\r\n \"time\": \"2016-02-16T14:24:16+01:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"osDisk\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T14:19:37.6831475+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T14:19:37.5582212+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T14:19:37.6206482+01:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T14:24:20.9331261+01:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n }\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457\",\r\n \"name\": \"vmcrptestps3457\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"237c5912-4cc5-491c-b086-214d45bbabbc\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8777.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8777.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8777.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Network/networkInterfaces/nic0crptestps8777\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"WALinuxAgent-2.0.14\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"GuestAgent is running and accepting new configurations.\",\r\n \"time\": \"2016-02-20T16:06:36+01:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"osDisk\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-20T16:01:40.2581186+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-20T16:01:40.0081963+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-20T16:01:39.7581511+01:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-20T16:06:38.8834224+01:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n }\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Compute/virtualMachines/vmcrptestps8777\",\r\n \"name\": \"vmcrptestps8777\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "3876" @@ -3015,10 +3015,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "0cb8a301-5dcd-452e-aa0b-f5a130f785ef" + "4b58417c-18b1-438e-8eba-a25b52fefc12" ], "Cache-Control": [ "no-cache" @@ -3028,28 +3028,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14867" + "14958" ], "x-ms-correlation-request-id": [ - "233e8e1a-c301-4160-96a1-6030dc47a708" + "bcbad929-d48e-4be4-b2f5-9475344e427a" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T132440Z:233e8e1a-c301-4160-96a1-6030dc47a708" + "NORTHCENTRALUS:20160220T150649Z:bcbad929-d48e-4be4-b2f5-9475344e427a" ], "Date": [ - "Tue, 16 Feb 2016 13:24:39 GMT" + "Sat, 20 Feb 2016 15:06:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457?$expand=instanceView&api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM0NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczM0NTc/JGV4cGFuZD1pbnN0YW5jZVZpZXcmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Compute/virtualMachines/vmcrptestps8777?$expand=instanceView&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg3NzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczg3Nzc/JGV4cGFuZD1pbnN0YW5jZVZpZXcmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ebfbe6df-d798-46c0-b9fb-b54c573bc808" + "d1ffba6d-e595-40bc-bc8b-d953fd1d5f36" ], "accept-language": [ "en-US" @@ -3058,7 +3058,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"f0450819-1af8-4bd4-a847-3c3fa9d49689\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3457.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3457.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3457.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/networkInterfaces/nic0crptestps3457\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"WALinuxAgent-2.0.14\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"GuestAgent is running and accepting new configurations.\",\r\n \"time\": \"2016-02-16T14:24:16+01:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"osDisk\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T14:19:37.6831475+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T14:19:37.5582212+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T14:19:37.6206482+01:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T14:24:20.9331261+01:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n }\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457\",\r\n \"name\": \"vmcrptestps3457\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"237c5912-4cc5-491c-b086-214d45bbabbc\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8777.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8777.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8777.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Network/networkInterfaces/nic0crptestps8777\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"WALinuxAgent-2.0.14\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"GuestAgent is running and accepting new configurations.\",\r\n \"time\": \"2016-02-20T16:07:27+01:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"osDisk\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-20T16:01:40.2581186+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-20T16:01:40.0081963+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-20T16:01:39.7581511+01:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-20T16:06:38.8834224+01:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n }\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Compute/virtualMachines/vmcrptestps8777\",\r\n \"name\": \"vmcrptestps8777\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "3876" @@ -3076,10 +3076,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "6cf01c73-dfdc-4c9d-aabb-add3186a61b1" + "60a8b2b9-89b4-42b7-801b-74d85518b9e3" ], "Cache-Control": [ "no-cache" @@ -3089,28 +3089,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14865" + "14955" ], "x-ms-correlation-request-id": [ - "b3317868-3cc3-40a5-847a-770b0c6083b3" + "cf5cfba0-c105-4043-a79e-a49dda8b40df" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T132442Z:b3317868-3cc3-40a5-847a-770b0c6083b3" + "NORTHCENTRALUS:20160220T150743Z:cf5cfba0-c105-4043-a79e-a49dda8b40df" ], "Date": [ - "Tue, 16 Feb 2016 13:24:42 GMT" + "Sat, 20 Feb 2016 15:07:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457?$expand=instanceView&api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM0NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczM0NTc/JGV4cGFuZD1pbnN0YW5jZVZpZXcmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Compute/virtualMachines/vmcrptestps8777?$expand=instanceView&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg3NzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczg3Nzc/JGV4cGFuZD1pbnN0YW5jZVZpZXcmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7dbaccdd-479e-4da5-8e73-efdaa61ca7e4" + "9ae0dd23-e6fa-44f8-af67-f81d3c7a539b" ], "accept-language": [ "en-US" @@ -3119,10 +3119,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"f0450819-1af8-4bd4-a847-3c3fa9d49689\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3457.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3457.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3457.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Network/networkInterfaces/nic0crptestps3457\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"WALinuxAgent-2.0.14\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"GuestAgent is running and accepting new configurations.\",\r\n \"time\": \"2016-02-16T14:27:57+01:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": [\r\n {\r\n \"type\": \"Microsoft.OSTCExtensions.AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0.0.5\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.OSTCExtensions.LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.2.0\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\"\r\n }\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"osDisk\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T14:26:18.4644175+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T14:26:18.4644175+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T14:26:18.4644175+01:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"extensions\": [\r\n {\r\n \"name\": \"AzureEnhancedMonitorForLinux\",\r\n \"type\": \"Microsoft.OSTCExtensions.AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0.0.5\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"deploymentId=06fa642d-13c3-45b5-bd46-0f6a4b8ba306 roleInstance=_vmcrptestps3457 OK\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"LinuxDiagnostic\",\r\n \"type\": \"Microsoft.OSTCExtensions.LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.2.0\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"Enable succeeded\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T14:27:53.1831478+01:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_A2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"osdisk.connminute\",\r\n \"value\": \"stocrptestps3457.minute\"\r\n },\r\n {\r\n \"key\": \"osdisk.connhour\",\r\n \"value\": \"stocrptestps3457.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.1\",\r\n \"value\": \"stocrptestps3457.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.1\",\r\n \"value\": \"stocrptestps3457.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.2\",\r\n \"value\": \"stocrptestps3457.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.2\",\r\n \"value\": \"stocrptestps3457.hour\"\r\n },\r\n {\r\n \"key\": \"stocrptestps3457.hour.uri\",\r\n \"value\": \"https://stocrptestps3457.table.core.windows.net/$MetricsHourPrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps3457.minute.uri\",\r\n \"value\": \"https://stocrptestps3457.table.core.windows.net/$MetricsMinutePrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps3457.hour.name\",\r\n \"value\": \"stocrptestps3457\"\r\n },\r\n {\r\n \"key\": \"stocrptestps3457.minute.name\",\r\n \"value\": \"stocrptestps3457\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps3457\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps3457.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457/extensions/AzureEnhancedMonitorForLinux\",\r\n \"name\": \"AzureEnhancedMonitorForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRQcm9jZXNzb3JUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRJZGxlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50UHJpdmlsZWdlZFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudEludGVycnVwdFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudERQQ1RpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudFVzZXJUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnROaWNlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50SU9XYWl0VGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZE1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxVc2VkTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRBdmFpbGFibGVNZW1vcnkiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRVc2VkQnlDYWNoZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcVXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1BlclNlYyIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1JlYWRQZXJTZWMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcUGFnZXNXcml0dGVuUGVyU2VjIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VUcmFuc2ZlclRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQXZlcmFnZVJlYWRUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VXcml0ZVRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcVHJhbnNmZXJzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFJlYWRzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFdyaXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xCeXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xXcml0ZUJ5dGVzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VEaXNrUXVldWVMZW5ndGgiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVG90YWwiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVHJhbnNtaXR0ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzUmVjZWl2ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXFBhY2tldHNUcmFuc21pdHRlZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcUGFja2V0c1JlY2VpdmVkIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFJ4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFR4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbENvbGxpc2lvbnMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457/extensions/LinuxDiagnostic\",\r\n \"name\": \"LinuxDiagnostic\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457\",\r\n \"name\": \"vmcrptestps3457\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"237c5912-4cc5-491c-b086-214d45bbabbc\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8777.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8777.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8777.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\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 \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Network/networkInterfaces/nic0crptestps8777\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"WALinuxAgent-2.0.14\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"GuestAgent is running and accepting new configurations.\",\r\n \"time\": \"2016-02-20T16:12:04+01:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": [\r\n {\r\n \"type\": \"Microsoft.OSTCExtensions.AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0.0.5\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.OSTCExtensions.LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.2.0\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\"\r\n }\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"osDisk\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-20T16:10:49.6962534+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-20T16:10:49.6962534+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-20T16:10:49.6962534+01:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"extensions\": [\r\n {\r\n \"name\": \"AzureEnhancedMonitorForLinux\",\r\n \"type\": \"Microsoft.OSTCExtensions.AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0.0.5\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"deploymentId=39f00ec2-7d88-4d6b-8f7b-6456d3764cba roleInstance=_vmcrptestps8777 OK\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"LinuxDiagnostic\",\r\n \"type\": \"Microsoft.OSTCExtensions.LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.2.0\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"Enable succeeded\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-20T16:12:25.9463876+01:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/starting\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM starting\"\r\n }\r\n ]\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_A2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"osdisk.connminute\",\r\n \"value\": \"stocrptestps8777.minute\"\r\n },\r\n {\r\n \"key\": \"osdisk.connhour\",\r\n \"value\": \"stocrptestps8777.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.1\",\r\n \"value\": \"stocrptestps8777.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.1\",\r\n \"value\": \"stocrptestps8777.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.2\",\r\n \"value\": \"stocrptestps8777.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.2\",\r\n \"value\": \"stocrptestps8777.hour\"\r\n },\r\n {\r\n \"key\": \"stocrptestps8777.hour.uri\",\r\n \"value\": \"https://stocrptestps8777.table.core.windows.net/$MetricsHourPrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps8777.minute.uri\",\r\n \"value\": \"https://stocrptestps8777.table.core.windows.net/$MetricsMinutePrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps8777.hour.name\",\r\n \"value\": \"stocrptestps8777\"\r\n },\r\n {\r\n \"key\": \"stocrptestps8777.minute.name\",\r\n \"value\": \"stocrptestps8777\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps8777\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps8777.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Compute/virtualMachines/vmcrptestps8777/extensions/AzureEnhancedMonitorForLinux\",\r\n \"name\": \"AzureEnhancedMonitorForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRQcm9jZXNzb3JUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRJZGxlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50UHJpdmlsZWdlZFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudEludGVycnVwdFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudERQQ1RpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudFVzZXJUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnROaWNlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50SU9XYWl0VGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZE1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxVc2VkTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRBdmFpbGFibGVNZW1vcnkiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRVc2VkQnlDYWNoZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcVXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1BlclNlYyIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1JlYWRQZXJTZWMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcUGFnZXNXcml0dGVuUGVyU2VjIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VUcmFuc2ZlclRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQXZlcmFnZVJlYWRUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VXcml0ZVRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcVHJhbnNmZXJzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFJlYWRzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFdyaXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xCeXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xXcml0ZUJ5dGVzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VEaXNrUXVldWVMZW5ndGgiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVG90YWwiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVHJhbnNtaXR0ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzUmVjZWl2ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXFBhY2tldHNUcmFuc21pdHRlZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcUGFja2V0c1JlY2VpdmVkIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFJ4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFR4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbENvbGxpc2lvbnMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Compute/virtualMachines/vmcrptestps8777/extensions/LinuxDiagnostic\",\r\n \"name\": \"LinuxDiagnostic\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Compute/virtualMachines/vmcrptestps8777\",\r\n \"name\": \"vmcrptestps8777\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "13521" + "13523" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3137,10 +3137,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "646254c0-4d20-4cdb-beb7-03fa195da23b" + "4e5a82be-6b46-44b5-a392-ab98b1dd53ef" ], "Cache-Control": [ "no-cache" @@ -3150,37 +3150,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14855" + "14935" ], "x-ms-correlation-request-id": [ - "df113750-2db5-4ddc-a5c1-9b072defb3f0" + "7066ed11-8fe8-4b94-9545-85eb41ce2575" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T132823Z:df113750-2db5-4ddc-a5c1-9b072defb3f0" + "NORTHCENTRALUS:20160220T151313Z:7066ed11-8fe8-4b94-9545-85eb41ce2575" ], "Date": [ - "Tue, 16 Feb 2016 13:28:22 GMT" + "Sat, 20 Feb 2016 15:13:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2c326d82-68f5-4a56-859d-4e86d6aae2da" + "dac7c09c-ec4a-42a6-a422-823a7753a346" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/ase/providers/Microsoft.Storage/storageAccounts/ase7745\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"ase7745\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-08-22T12:09:54.6487474Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ase7745.blob.core.windows.net/\",\r\n \"file\": \"https://ase7745.file.core.windows.net/\",\r\n \"queue\": \"https://ase7745.queue.core.windows.net/\",\r\n \"table\": \"https://ase7745.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/benolwtlz6gcrtv2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"benolwtlz6gcrtv2\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-02T15:37:42.4160913Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://benolwtlz6gcrtv2.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/sapresourcegroup/providers/Microsoft.Storage/storageAccounts/de8da241d96f400ba8791029\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"de8da241d96f400ba8791029\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-09-18T13:22:47.5628749Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://de8da241d96f400ba8791029.blob.core.windows.net/\",\r\n \"file\": \"https://de8da241d96f400ba8791029.file.core.windows.net/\",\r\n \"queue\": \"https://de8da241d96f400ba8791029.queue.core.windows.net/\",\r\n \"table\": \"https://de8da241d96f400ba8791029.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/group-4/providers/Microsoft.Storage/storageAccounts/dsdevstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"dsdevstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-22T21:10:41.790448Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://dsdevstorage.blob.core.windows.net/\",\r\n \"file\": \"https://dsdevstorage.file.core.windows.net/\",\r\n \"queue\": \"https://dsdevstorage.queue.core.windows.net/\",\r\n \"table\": \"https://dsdevstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduscherp/providers/Microsoft.Storage/storageAccounts/erpio6r4un3ewfnm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"erpio6r4un3ewfnm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-08T12:41:16.6105852Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://erpio6r4un3ewfnm.blob.core.windows.net/\",\r\n \"file\": \"https://erpio6r4un3ewfnm.file.core.windows.net/\",\r\n \"queue\": \"https://erpio6r4un3ewfnm.queue.core.windows.net/\",\r\n \"table\": \"https://erpio6r4un3ewfnm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/glsresgroup1/providers/Microsoft.Storage/storageAccounts/glsstoraccount1\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"glsstoraccount1\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T12:37:47.5420067Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://glsstoraccount1.blob.core.windows.net/\",\r\n \"file\": \"https://glsstoraccount1.file.core.windows.net/\",\r\n \"queue\": \"https://glsstoraccount1.queue.core.windows.net/\",\r\n \"table\": \"https://glsstoraccount1.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmpremstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmpremstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:21.7378841Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmpremstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmpremstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmpremstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmpremstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmstdstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmstdstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:22.2160008Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmstdstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmstdstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmstdstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmstdstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-test2/providers/Microsoft.Storage/storageAccounts/gortestacc2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gortestacc2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-08T21:18:17.9028388Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gortestacc2.blob.core.windows.net/\",\r\n \"file\": \"https://gortestacc2.file.core.windows.net/\",\r\n \"queue\": \"https://gortestacc2.queue.core.windows.net/\",\r\n \"table\": \"https://gortestacc2.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-04-16T13:50:52.0015725Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspacepremium\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspacepremium\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-10-23T10:22:10.7216809Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspacepremium.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvmtest/providers/Microsoft.Storage/storageAccounts/lvmtestspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmtestspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T16:56:41.5005505Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmtestspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmtestspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmtestspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmtestspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-eml2/providers/Microsoft.Storage/storageAccounts/rgeml2stacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"rgeml2stacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T08:00:29.8670815Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://rgeml2stacc.blob.core.windows.net/\",\r\n \"file\": \"https://rgeml2stacc.file.core.windows.net/\",\r\n \"queue\": \"https://rgeml2stacc.queue.core.windows.net/\",\r\n \"table\": \"https://rgeml2stacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/sapcalrg/providers/Microsoft.Storage/storageAccounts/sapcalrg8522\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"sapcalrg8522\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-28T06:54:16.0456896Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sapcalrg8522.blob.core.windows.net/\",\r\n \"file\": \"https://sapcalrg8522.file.core.windows.net/\",\r\n \"queue\": \"https://sapcalrg8522.queue.core.windows.net/\",\r\n \"table\": \"https://sapcalrg8522.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/saperpdemo859644\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"saperpdemo859644\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-01-26T11:02:43.8634331Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saperpdemo859644.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1prstacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1prstacc\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-12-10T17:35:29.0415914Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1prstacc.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1ststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1ststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-10T17:36:26.4810072Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1ststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saphana1ststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saphana1ststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saphana1ststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-linux-docu-tests/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saplinuxdocuststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-24T09:25:04.4473982Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-linux-docu-tests-we/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststaccwe\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saplinuxdocuststaccwe\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-25T13:11:50.5477032Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststaccwe.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststaccwe.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststaccwe.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststaccwe.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/sappseduscsape012612030\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"sappseduscsape012612030\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2016-01-26T11:03:56.0307387Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sappseduscsape012612030.blob.core.windows.net/\",\r\n \"file\": \"https://sappseduscsape012612030.file.core.windows.net/\",\r\n \"queue\": \"https://sappseduscsape012612030.queue.core.windows.net/\",\r\n \"table\": \"https://sappseduscsape012612030.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"westeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/saptesiarm/providers/Microsoft.Storage/storageAccounts/saptesiarm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saptesiarm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-08-27T12:13:00.4049179Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptesiarm.blob.core.windows.net/\",\r\n \"file\": \"https://saptesiarm.file.core.windows.net/\",\r\n \"queue\": \"https://saptesiarm.queue.core.windows.net/\",\r\n \"table\": \"https://saptesiarm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/saptestrajrg/providers/Microsoft.Storage/storageAccounts/saptestrajrg4518\",\r\n \"location\": \"westus\",\r\n \"name\": \"saptestrajrg4518\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-07-22T19:24:21.1065762Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptestrajrg4518.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps311/providers/Microsoft.Storage/storageAccounts/stocrptestps311\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps311\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T10:47:27.4960365Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps311.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps311.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps311.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps311.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Storage/storageAccounts/stocrptestps3457\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps3457\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T13:19:07.5618762Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps3457.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps3457.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps3457.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps3457.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/temptestsap\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"temptestsap\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-10T14:03:58.3799849Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://temptestsap.blob.core.windows.net/\",\r\n \"file\": \"https://temptestsap.file.core.windows.net/\",\r\n \"queue\": \"https://temptestsap.queue.core.windows.net/\",\r\n \"table\": \"https://temptestsap.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/benolwtlz6gcrtv2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"benolwtlz6gcrtv2\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-02T15:37:42.4160913Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://benolwtlz6gcrtv2.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/sapresourcegroup/providers/Microsoft.Storage/storageAccounts/de8da241d96f400ba8791029\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"de8da241d96f400ba8791029\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-09-18T13:22:47.5628749Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://de8da241d96f400ba8791029.blob.core.windows.net/\",\r\n \"file\": \"https://de8da241d96f400ba8791029.file.core.windows.net/\",\r\n \"queue\": \"https://de8da241d96f400ba8791029.queue.core.windows.net/\",\r\n \"table\": \"https://de8da241d96f400ba8791029.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/group-4/providers/Microsoft.Storage/storageAccounts/dsdevstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"dsdevstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-22T21:10:41.790448Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://dsdevstorage.blob.core.windows.net/\",\r\n \"file\": \"https://dsdevstorage.file.core.windows.net/\",\r\n \"queue\": \"https://dsdevstorage.queue.core.windows.net/\",\r\n \"table\": \"https://dsdevstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/seduscherp/providers/Microsoft.Storage/storageAccounts/erpio6r4un3ewfnm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"erpio6r4un3ewfnm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-08T12:41:16.6105852Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://erpio6r4un3ewfnm.blob.core.windows.net/\",\r\n \"file\": \"https://erpio6r4un3ewfnm.file.core.windows.net/\",\r\n \"queue\": \"https://erpio6r4un3ewfnm.queue.core.windows.net/\",\r\n \"table\": \"https://erpio6r4un3ewfnm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/fdfdfdf/providers/Microsoft.Storage/storageAccounts/fdfdfdf2537\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"fdfdfdf2537\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-17T10:07:55.1390685Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://fdfdfdf2537.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/fdfdfdf/providers/Microsoft.Storage/storageAccounts/fdfdfdf2925\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"fdfdfdf2925\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-17T10:07:55.715138Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://fdfdfdf2925.blob.core.windows.net/\",\r\n \"file\": \"https://fdfdfdf2925.file.core.windows.net/\",\r\n \"queue\": \"https://fdfdfdf2925.queue.core.windows.net/\",\r\n \"table\": \"https://fdfdfdf2925.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/glsresgroup1/providers/Microsoft.Storage/storageAccounts/glsstoraccount1\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"glsstoraccount1\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T12:37:47.5420067Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://glsstoraccount1.blob.core.windows.net/\",\r\n \"file\": \"https://glsstoraccount1.file.core.windows.net/\",\r\n \"queue\": \"https://glsstoraccount1.queue.core.windows.net/\",\r\n \"table\": \"https://glsstoraccount1.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmpremstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmpremstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:21.7378841Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmpremstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmpremstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmpremstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmpremstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmstdstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmstdstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:22.2160008Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmstdstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmstdstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmstdstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmstdstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-clust-arm/providers/Microsoft.Storage/storageAccounts/gorclustarmstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorclustarmstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-17T14:59:23.8666219Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorclustarmstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorclustarmstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorclustarmstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorclustarmstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {\r\n \"displayName\": \"StorageAccount\"\r\n },\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-test2/providers/Microsoft.Storage/storageAccounts/gortestacc2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gortestacc2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-08T21:18:17.9028388Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gortestacc2.blob.core.windows.net/\",\r\n \"file\": \"https://gortestacc2.file.core.windows.net/\",\r\n \"queue\": \"https://gortestacc2.queue.core.windows.net/\",\r\n \"table\": \"https://gortestacc2.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-04-16T13:50:52.0015725Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspacepremium\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspacepremium\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-10-23T10:22:10.7216809Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspacepremium.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/lvmtest/providers/Microsoft.Storage/storageAccounts/lvmtestspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmtestspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T16:56:41.5005505Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmtestspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmtestspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmtestspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmtestspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-eml2/providers/Microsoft.Storage/storageAccounts/rgeml2stacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"rgeml2stacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T08:00:29.8670815Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://rgeml2stacc.blob.core.windows.net/\",\r\n \"file\": \"https://rgeml2stacc.file.core.windows.net/\",\r\n \"queue\": \"https://rgeml2stacc.queue.core.windows.net/\",\r\n \"table\": \"https://rgeml2stacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/sapcalrg/providers/Microsoft.Storage/storageAccounts/sapcalrg8522\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"sapcalrg8522\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-28T06:54:16.0456896Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sapcalrg8522.blob.core.windows.net/\",\r\n \"file\": \"https://sapcalrg8522.file.core.windows.net/\",\r\n \"queue\": \"https://sapcalrg8522.queue.core.windows.net/\",\r\n \"table\": \"https://sapcalrg8522.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/saperpdemo859644\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"saperpdemo859644\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-01-26T11:02:43.8634331Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saperpdemo859644.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1prstacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1prstacc\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-12-10T17:35:29.0415914Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1prstacc.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1ststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1ststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-10T17:36:26.4810072Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1ststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saphana1ststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saphana1ststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saphana1ststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-sap-linux-docu-tests/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saplinuxdocuststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-24T09:25:04.4473982Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-sap-linux-docu-tests-we/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststaccwe\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saplinuxdocuststaccwe\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-25T13:11:50.5477032Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststaccwe.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststaccwe.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststaccwe.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststaccwe.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/sappseduscsape012612030\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"sappseduscsape012612030\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2016-01-26T11:03:56.0307387Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sappseduscsape012612030.blob.core.windows.net/\",\r\n \"file\": \"https://sappseduscsape012612030.file.core.windows.net/\",\r\n \"queue\": \"https://sappseduscsape012612030.queue.core.windows.net/\",\r\n \"table\": \"https://sappseduscsape012612030.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"westeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/saptesiarm/providers/Microsoft.Storage/storageAccounts/saptesiarm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saptesiarm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-08-27T12:13:00.4049179Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptesiarm.blob.core.windows.net/\",\r\n \"file\": \"https://saptesiarm.file.core.windows.net/\",\r\n \"queue\": \"https://saptesiarm.queue.core.windows.net/\",\r\n \"table\": \"https://saptesiarm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/saptestrajrg/providers/Microsoft.Storage/storageAccounts/saptestrajrg4518\",\r\n \"location\": \"westus\",\r\n \"name\": \"saptestrajrg4518\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-07-22T19:24:21.1065762Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptestrajrg4518.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Storage/storageAccounts/stocrptestps8777\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps8777\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-20T15:01:07.3660071Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps8777.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps8777.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps8777.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps8777.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/temptestsap\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"temptestsap\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-10T14:03:58.3799849Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://temptestsap.blob.core.windows.net/\",\r\n \"file\": \"https://temptestsap.file.core.windows.net/\",\r\n \"queue\": \"https://temptestsap.queue.core.windows.net/\",\r\n \"table\": \"https://temptestsap.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-ts2-test/providers/Microsoft.Storage/storageAccounts/ts2cdlko5xtxpo3k\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"ts2cdlko5xtxpo3k\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-17T14:39:15.5207487Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ts2cdlko5xtxpo3k.blob.core.windows.net/\",\r\n \"file\": \"https://ts2cdlko5xtxpo3k.file.core.windows.net/\",\r\n \"queue\": \"https://ts2cdlko5xtxpo3k.queue.core.windows.net/\",\r\n \"table\": \"https://ts2cdlko5xtxpo3k.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "16392" + "17593" ], "Content-Type": [ "application/json" @@ -3192,7 +3192,7 @@ "no-cache" ], "x-ms-request-id": [ - "acc915a2-6da4-4b6b-9cc8-12cab721537e" + "99acfec4-b1ba-4fb9-89ea-f99ea078f321" ], "Cache-Control": [ "no-cache" @@ -3202,40 +3202,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14857" + "14931" ], "x-ms-correlation-request-id": [ - "acc915a2-6da4-4b6b-9cc8-12cab721537e" + "99acfec4-b1ba-4fb9-89ea-f99ea078f321" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T132441Z:acc915a2-6da4-4b6b-9cc8-12cab721537e" + "NORTHCENTRALUS:20160220T150737Z:99acfec4-b1ba-4fb9-89ea-f99ea078f321" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Feb 2016 13:24:41 GMT" + "Sat, 20 Feb 2016 15:07:36 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "74207215-15c4-45d5-ae5c-1141792a20e1" + "9045da79-eea8-4e37-ae01-67c45025c84f" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/ase/providers/Microsoft.Storage/storageAccounts/ase7745\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"ase7745\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-08-22T12:09:54.6487474Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ase7745.blob.core.windows.net/\",\r\n \"file\": \"https://ase7745.file.core.windows.net/\",\r\n \"queue\": \"https://ase7745.queue.core.windows.net/\",\r\n \"table\": \"https://ase7745.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/benolwtlz6gcrtv2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"benolwtlz6gcrtv2\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-02T15:37:42.4160913Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://benolwtlz6gcrtv2.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/sapresourcegroup/providers/Microsoft.Storage/storageAccounts/de8da241d96f400ba8791029\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"de8da241d96f400ba8791029\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-09-18T13:22:47.5628749Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://de8da241d96f400ba8791029.blob.core.windows.net/\",\r\n \"file\": \"https://de8da241d96f400ba8791029.file.core.windows.net/\",\r\n \"queue\": \"https://de8da241d96f400ba8791029.queue.core.windows.net/\",\r\n \"table\": \"https://de8da241d96f400ba8791029.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/group-4/providers/Microsoft.Storage/storageAccounts/dsdevstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"dsdevstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-22T21:10:41.790448Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://dsdevstorage.blob.core.windows.net/\",\r\n \"file\": \"https://dsdevstorage.file.core.windows.net/\",\r\n \"queue\": \"https://dsdevstorage.queue.core.windows.net/\",\r\n \"table\": \"https://dsdevstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduscherp/providers/Microsoft.Storage/storageAccounts/erpio6r4un3ewfnm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"erpio6r4un3ewfnm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-08T12:41:16.6105852Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://erpio6r4un3ewfnm.blob.core.windows.net/\",\r\n \"file\": \"https://erpio6r4un3ewfnm.file.core.windows.net/\",\r\n \"queue\": \"https://erpio6r4un3ewfnm.queue.core.windows.net/\",\r\n \"table\": \"https://erpio6r4un3ewfnm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/glsresgroup1/providers/Microsoft.Storage/storageAccounts/glsstoraccount1\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"glsstoraccount1\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T12:37:47.5420067Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://glsstoraccount1.blob.core.windows.net/\",\r\n \"file\": \"https://glsstoraccount1.file.core.windows.net/\",\r\n \"queue\": \"https://glsstoraccount1.queue.core.windows.net/\",\r\n \"table\": \"https://glsstoraccount1.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmpremstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmpremstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:21.7378841Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmpremstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmpremstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmpremstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmpremstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmstdstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmstdstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:22.2160008Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmstdstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmstdstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmstdstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmstdstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-test2/providers/Microsoft.Storage/storageAccounts/gortestacc2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gortestacc2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-08T21:18:17.9028388Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gortestacc2.blob.core.windows.net/\",\r\n \"file\": \"https://gortestacc2.file.core.windows.net/\",\r\n \"queue\": \"https://gortestacc2.queue.core.windows.net/\",\r\n \"table\": \"https://gortestacc2.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-04-16T13:50:52.0015725Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspacepremium\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspacepremium\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-10-23T10:22:10.7216809Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspacepremium.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvmtest/providers/Microsoft.Storage/storageAccounts/lvmtestspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmtestspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T16:56:41.5005505Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmtestspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmtestspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmtestspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmtestspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-eml2/providers/Microsoft.Storage/storageAccounts/rgeml2stacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"rgeml2stacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T08:00:29.8670815Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://rgeml2stacc.blob.core.windows.net/\",\r\n \"file\": \"https://rgeml2stacc.file.core.windows.net/\",\r\n \"queue\": \"https://rgeml2stacc.queue.core.windows.net/\",\r\n \"table\": \"https://rgeml2stacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/sapcalrg/providers/Microsoft.Storage/storageAccounts/sapcalrg8522\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"sapcalrg8522\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-28T06:54:16.0456896Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sapcalrg8522.blob.core.windows.net/\",\r\n \"file\": \"https://sapcalrg8522.file.core.windows.net/\",\r\n \"queue\": \"https://sapcalrg8522.queue.core.windows.net/\",\r\n \"table\": \"https://sapcalrg8522.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/saperpdemo859644\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"saperpdemo859644\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-01-26T11:02:43.8634331Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saperpdemo859644.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1prstacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1prstacc\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-12-10T17:35:29.0415914Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1prstacc.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1ststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1ststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-10T17:36:26.4810072Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1ststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saphana1ststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saphana1ststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saphana1ststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-linux-docu-tests/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saplinuxdocuststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-24T09:25:04.4473982Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-linux-docu-tests-we/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststaccwe\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saplinuxdocuststaccwe\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-25T13:11:50.5477032Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststaccwe.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststaccwe.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststaccwe.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststaccwe.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/sappseduscsape012612030\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"sappseduscsape012612030\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2016-01-26T11:03:56.0307387Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sappseduscsape012612030.blob.core.windows.net/\",\r\n \"file\": \"https://sappseduscsape012612030.file.core.windows.net/\",\r\n \"queue\": \"https://sappseduscsape012612030.queue.core.windows.net/\",\r\n \"table\": \"https://sappseduscsape012612030.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"westeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/saptesiarm/providers/Microsoft.Storage/storageAccounts/saptesiarm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saptesiarm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-08-27T12:13:00.4049179Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptesiarm.blob.core.windows.net/\",\r\n \"file\": \"https://saptesiarm.file.core.windows.net/\",\r\n \"queue\": \"https://saptesiarm.queue.core.windows.net/\",\r\n \"table\": \"https://saptesiarm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/saptestrajrg/providers/Microsoft.Storage/storageAccounts/saptestrajrg4518\",\r\n \"location\": \"westus\",\r\n \"name\": \"saptestrajrg4518\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-07-22T19:24:21.1065762Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptestrajrg4518.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps311/providers/Microsoft.Storage/storageAccounts/stocrptestps311\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps311\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T10:47:27.4960365Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps311.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps311.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps311.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps311.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Storage/storageAccounts/stocrptestps3457\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps3457\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T13:19:07.5618762Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps3457.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps3457.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps3457.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps3457.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/temptestsap\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"temptestsap\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-10T14:03:58.3799849Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://temptestsap.blob.core.windows.net/\",\r\n \"file\": \"https://temptestsap.file.core.windows.net/\",\r\n \"queue\": \"https://temptestsap.queue.core.windows.net/\",\r\n \"table\": \"https://temptestsap.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/benolwtlz6gcrtv2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"benolwtlz6gcrtv2\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-02T15:37:42.4160913Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://benolwtlz6gcrtv2.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/sapresourcegroup/providers/Microsoft.Storage/storageAccounts/de8da241d96f400ba8791029\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"de8da241d96f400ba8791029\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-09-18T13:22:47.5628749Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://de8da241d96f400ba8791029.blob.core.windows.net/\",\r\n \"file\": \"https://de8da241d96f400ba8791029.file.core.windows.net/\",\r\n \"queue\": \"https://de8da241d96f400ba8791029.queue.core.windows.net/\",\r\n \"table\": \"https://de8da241d96f400ba8791029.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/group-4/providers/Microsoft.Storage/storageAccounts/dsdevstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"dsdevstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-22T21:10:41.790448Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://dsdevstorage.blob.core.windows.net/\",\r\n \"file\": \"https://dsdevstorage.file.core.windows.net/\",\r\n \"queue\": \"https://dsdevstorage.queue.core.windows.net/\",\r\n \"table\": \"https://dsdevstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/seduscherp/providers/Microsoft.Storage/storageAccounts/erpio6r4un3ewfnm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"erpio6r4un3ewfnm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-08T12:41:16.6105852Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://erpio6r4un3ewfnm.blob.core.windows.net/\",\r\n \"file\": \"https://erpio6r4un3ewfnm.file.core.windows.net/\",\r\n \"queue\": \"https://erpio6r4un3ewfnm.queue.core.windows.net/\",\r\n \"table\": \"https://erpio6r4un3ewfnm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/fdfdfdf/providers/Microsoft.Storage/storageAccounts/fdfdfdf2537\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"fdfdfdf2537\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-17T10:07:55.1390685Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://fdfdfdf2537.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/fdfdfdf/providers/Microsoft.Storage/storageAccounts/fdfdfdf2925\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"fdfdfdf2925\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-17T10:07:55.715138Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://fdfdfdf2925.blob.core.windows.net/\",\r\n \"file\": \"https://fdfdfdf2925.file.core.windows.net/\",\r\n \"queue\": \"https://fdfdfdf2925.queue.core.windows.net/\",\r\n \"table\": \"https://fdfdfdf2925.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/glsresgroup1/providers/Microsoft.Storage/storageAccounts/glsstoraccount1\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"glsstoraccount1\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T12:37:47.5420067Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://glsstoraccount1.blob.core.windows.net/\",\r\n \"file\": \"https://glsstoraccount1.file.core.windows.net/\",\r\n \"queue\": \"https://glsstoraccount1.queue.core.windows.net/\",\r\n \"table\": \"https://glsstoraccount1.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmpremstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmpremstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:21.7378841Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmpremstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmpremstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmpremstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmpremstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmstdstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmstdstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:22.2160008Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmstdstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmstdstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmstdstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmstdstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-clust-arm/providers/Microsoft.Storage/storageAccounts/gorclustarmstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorclustarmstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-17T14:59:23.8666219Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorclustarmstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorclustarmstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorclustarmstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorclustarmstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {\r\n \"displayName\": \"StorageAccount\"\r\n },\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-test2/providers/Microsoft.Storage/storageAccounts/gortestacc2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gortestacc2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-08T21:18:17.9028388Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gortestacc2.blob.core.windows.net/\",\r\n \"file\": \"https://gortestacc2.file.core.windows.net/\",\r\n \"queue\": \"https://gortestacc2.queue.core.windows.net/\",\r\n \"table\": \"https://gortestacc2.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-04-16T13:50:52.0015725Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspacepremium\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspacepremium\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-10-23T10:22:10.7216809Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspacepremium.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/lvmtest/providers/Microsoft.Storage/storageAccounts/lvmtestspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmtestspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T16:56:41.5005505Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmtestspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmtestspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmtestspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmtestspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-eml2/providers/Microsoft.Storage/storageAccounts/rgeml2stacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"rgeml2stacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T08:00:29.8670815Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://rgeml2stacc.blob.core.windows.net/\",\r\n \"file\": \"https://rgeml2stacc.file.core.windows.net/\",\r\n \"queue\": \"https://rgeml2stacc.queue.core.windows.net/\",\r\n \"table\": \"https://rgeml2stacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/sapcalrg/providers/Microsoft.Storage/storageAccounts/sapcalrg8522\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"sapcalrg8522\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-28T06:54:16.0456896Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sapcalrg8522.blob.core.windows.net/\",\r\n \"file\": \"https://sapcalrg8522.file.core.windows.net/\",\r\n \"queue\": \"https://sapcalrg8522.queue.core.windows.net/\",\r\n \"table\": \"https://sapcalrg8522.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/saperpdemo859644\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"saperpdemo859644\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-01-26T11:02:43.8634331Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saperpdemo859644.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1prstacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1prstacc\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-12-10T17:35:29.0415914Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1prstacc.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1ststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1ststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-10T17:36:26.4810072Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1ststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saphana1ststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saphana1ststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saphana1ststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-sap-linux-docu-tests/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saplinuxdocuststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-24T09:25:04.4473982Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-sap-linux-docu-tests-we/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststaccwe\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saplinuxdocuststaccwe\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-25T13:11:50.5477032Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststaccwe.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststaccwe.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststaccwe.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststaccwe.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/sappseduscsape012612030\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"sappseduscsape012612030\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2016-01-26T11:03:56.0307387Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sappseduscsape012612030.blob.core.windows.net/\",\r\n \"file\": \"https://sappseduscsape012612030.file.core.windows.net/\",\r\n \"queue\": \"https://sappseduscsape012612030.queue.core.windows.net/\",\r\n \"table\": \"https://sappseduscsape012612030.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"westeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/saptesiarm/providers/Microsoft.Storage/storageAccounts/saptesiarm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saptesiarm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-08-27T12:13:00.4049179Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptesiarm.blob.core.windows.net/\",\r\n \"file\": \"https://saptesiarm.file.core.windows.net/\",\r\n \"queue\": \"https://saptesiarm.queue.core.windows.net/\",\r\n \"table\": \"https://saptesiarm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/saptestrajrg/providers/Microsoft.Storage/storageAccounts/saptestrajrg4518\",\r\n \"location\": \"westus\",\r\n \"name\": \"saptestrajrg4518\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-07-22T19:24:21.1065762Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptestrajrg4518.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Storage/storageAccounts/stocrptestps8777\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps8777\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-20T15:01:07.3660071Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps8777.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps8777.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps8777.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps8777.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/temptestsap\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"temptestsap\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-10T14:03:58.3799849Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://temptestsap.blob.core.windows.net/\",\r\n \"file\": \"https://temptestsap.file.core.windows.net/\",\r\n \"queue\": \"https://temptestsap.queue.core.windows.net/\",\r\n \"table\": \"https://temptestsap.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-ts2-test/providers/Microsoft.Storage/storageAccounts/ts2cdlko5xtxpo3k\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"ts2cdlko5xtxpo3k\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-17T14:39:15.5207487Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ts2cdlko5xtxpo3k.blob.core.windows.net/\",\r\n \"file\": \"https://ts2cdlko5xtxpo3k.file.core.windows.net/\",\r\n \"queue\": \"https://ts2cdlko5xtxpo3k.queue.core.windows.net/\",\r\n \"table\": \"https://ts2cdlko5xtxpo3k.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "16392" + "17593" ], "Content-Type": [ "application/json" @@ -3247,7 +3247,7 @@ "no-cache" ], "x-ms-request-id": [ - "cd450d59-6ab7-4759-8b3f-36a3850e7a0e" + "c188c421-1c52-406c-974e-8dcdf9b73a9d" ], "Cache-Control": [ "no-cache" @@ -3257,40 +3257,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14855" + "14930" ], "x-ms-correlation-request-id": [ - "cd450d59-6ab7-4759-8b3f-36a3850e7a0e" + "c188c421-1c52-406c-974e-8dcdf9b73a9d" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T132443Z:cd450d59-6ab7-4759-8b3f-36a3850e7a0e" + "NORTHCENTRALUS:20160220T150743Z:c188c421-1c52-406c-974e-8dcdf9b73a9d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Feb 2016 13:24:42 GMT" + "Sat, 20 Feb 2016 15:07:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c3c09ab9-8646-438a-9498-b05a74b1bdcf" + "85ee0342-f84d-427f-ae69-c50f172e24e6" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/ase/providers/Microsoft.Storage/storageAccounts/ase7745\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"ase7745\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-08-22T12:09:54.6487474Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ase7745.blob.core.windows.net/\",\r\n \"file\": \"https://ase7745.file.core.windows.net/\",\r\n \"queue\": \"https://ase7745.queue.core.windows.net/\",\r\n \"table\": \"https://ase7745.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/benolwtlz6gcrtv2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"benolwtlz6gcrtv2\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-02T15:37:42.4160913Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://benolwtlz6gcrtv2.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/sapresourcegroup/providers/Microsoft.Storage/storageAccounts/de8da241d96f400ba8791029\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"de8da241d96f400ba8791029\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-09-18T13:22:47.5628749Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://de8da241d96f400ba8791029.blob.core.windows.net/\",\r\n \"file\": \"https://de8da241d96f400ba8791029.file.core.windows.net/\",\r\n \"queue\": \"https://de8da241d96f400ba8791029.queue.core.windows.net/\",\r\n \"table\": \"https://de8da241d96f400ba8791029.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/group-4/providers/Microsoft.Storage/storageAccounts/dsdevstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"dsdevstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-22T21:10:41.790448Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://dsdevstorage.blob.core.windows.net/\",\r\n \"file\": \"https://dsdevstorage.file.core.windows.net/\",\r\n \"queue\": \"https://dsdevstorage.queue.core.windows.net/\",\r\n \"table\": \"https://dsdevstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduscherp/providers/Microsoft.Storage/storageAccounts/erpio6r4un3ewfnm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"erpio6r4un3ewfnm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-08T12:41:16.6105852Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://erpio6r4un3ewfnm.blob.core.windows.net/\",\r\n \"file\": \"https://erpio6r4un3ewfnm.file.core.windows.net/\",\r\n \"queue\": \"https://erpio6r4un3ewfnm.queue.core.windows.net/\",\r\n \"table\": \"https://erpio6r4un3ewfnm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/glsresgroup1/providers/Microsoft.Storage/storageAccounts/glsstoraccount1\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"glsstoraccount1\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T12:37:47.5420067Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://glsstoraccount1.blob.core.windows.net/\",\r\n \"file\": \"https://glsstoraccount1.file.core.windows.net/\",\r\n \"queue\": \"https://glsstoraccount1.queue.core.windows.net/\",\r\n \"table\": \"https://glsstoraccount1.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmpremstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmpremstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:21.7378841Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmpremstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmpremstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmpremstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmpremstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmstdstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmstdstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:22.2160008Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmstdstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmstdstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmstdstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmstdstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-test2/providers/Microsoft.Storage/storageAccounts/gortestacc2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gortestacc2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-08T21:18:17.9028388Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gortestacc2.blob.core.windows.net/\",\r\n \"file\": \"https://gortestacc2.file.core.windows.net/\",\r\n \"queue\": \"https://gortestacc2.queue.core.windows.net/\",\r\n \"table\": \"https://gortestacc2.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-04-16T13:50:52.0015725Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspacepremium\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspacepremium\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-10-23T10:22:10.7216809Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspacepremium.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvmtest/providers/Microsoft.Storage/storageAccounts/lvmtestspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmtestspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T16:56:41.5005505Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmtestspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmtestspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmtestspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmtestspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduschdply2/providers/Microsoft.Storage/storageAccounts/qasv2jzqfmuokqxs\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"qasv2jzqfmuokqxs\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T13:26:31.1299248Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://qasv2jzqfmuokqxs.blob.core.windows.net/\",\r\n \"file\": \"https://qasv2jzqfmuokqxs.file.core.windows.net/\",\r\n \"queue\": \"https://qasv2jzqfmuokqxs.queue.core.windows.net/\",\r\n \"table\": \"https://qasv2jzqfmuokqxs.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-eml2/providers/Microsoft.Storage/storageAccounts/rgeml2stacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"rgeml2stacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T08:00:29.8670815Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://rgeml2stacc.blob.core.windows.net/\",\r\n \"file\": \"https://rgeml2stacc.file.core.windows.net/\",\r\n \"queue\": \"https://rgeml2stacc.queue.core.windows.net/\",\r\n \"table\": \"https://rgeml2stacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/sapcalrg/providers/Microsoft.Storage/storageAccounts/sapcalrg8522\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"sapcalrg8522\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-28T06:54:16.0456896Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sapcalrg8522.blob.core.windows.net/\",\r\n \"file\": \"https://sapcalrg8522.file.core.windows.net/\",\r\n \"queue\": \"https://sapcalrg8522.queue.core.windows.net/\",\r\n \"table\": \"https://sapcalrg8522.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/saperpdemo859644\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"saperpdemo859644\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-01-26T11:02:43.8634331Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saperpdemo859644.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1prstacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1prstacc\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-12-10T17:35:29.0415914Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1prstacc.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1ststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1ststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-10T17:36:26.4810072Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1ststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saphana1ststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saphana1ststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saphana1ststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-linux-docu-tests/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saplinuxdocuststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-24T09:25:04.4473982Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-linux-docu-tests-we/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststaccwe\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saplinuxdocuststaccwe\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-25T13:11:50.5477032Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststaccwe.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststaccwe.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststaccwe.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststaccwe.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/sappseduscsape012612030\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"sappseduscsape012612030\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2016-01-26T11:03:56.0307387Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sappseduscsape012612030.blob.core.windows.net/\",\r\n \"file\": \"https://sappseduscsape012612030.file.core.windows.net/\",\r\n \"queue\": \"https://sappseduscsape012612030.queue.core.windows.net/\",\r\n \"table\": \"https://sappseduscsape012612030.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"westeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/saptesiarm/providers/Microsoft.Storage/storageAccounts/saptesiarm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saptesiarm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-08-27T12:13:00.4049179Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptesiarm.blob.core.windows.net/\",\r\n \"file\": \"https://saptesiarm.file.core.windows.net/\",\r\n \"queue\": \"https://saptesiarm.queue.core.windows.net/\",\r\n \"table\": \"https://saptesiarm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/saptestrajrg/providers/Microsoft.Storage/storageAccounts/saptestrajrg4518\",\r\n \"location\": \"westus\",\r\n \"name\": \"saptestrajrg4518\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-07-22T19:24:21.1065762Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptestrajrg4518.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps311/providers/Microsoft.Storage/storageAccounts/stocrptestps311\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps311\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T10:47:27.4960365Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps311.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps311.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps311.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps311.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Storage/storageAccounts/stocrptestps3457\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps3457\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T13:19:07.5618762Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps3457.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps3457.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps3457.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps3457.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/temptestsap\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"temptestsap\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-10T14:03:58.3799849Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://temptestsap.blob.core.windows.net/\",\r\n \"file\": \"https://temptestsap.file.core.windows.net/\",\r\n \"queue\": \"https://temptestsap.queue.core.windows.net/\",\r\n \"table\": \"https://temptestsap.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/benolwtlz6gcrtv2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"benolwtlz6gcrtv2\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-02T15:37:42.4160913Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://benolwtlz6gcrtv2.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/sapresourcegroup/providers/Microsoft.Storage/storageAccounts/de8da241d96f400ba8791029\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"de8da241d96f400ba8791029\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-09-18T13:22:47.5628749Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://de8da241d96f400ba8791029.blob.core.windows.net/\",\r\n \"file\": \"https://de8da241d96f400ba8791029.file.core.windows.net/\",\r\n \"queue\": \"https://de8da241d96f400ba8791029.queue.core.windows.net/\",\r\n \"table\": \"https://de8da241d96f400ba8791029.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/group-4/providers/Microsoft.Storage/storageAccounts/dsdevstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"dsdevstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-22T21:10:41.790448Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://dsdevstorage.blob.core.windows.net/\",\r\n \"file\": \"https://dsdevstorage.file.core.windows.net/\",\r\n \"queue\": \"https://dsdevstorage.queue.core.windows.net/\",\r\n \"table\": \"https://dsdevstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/seduscherp/providers/Microsoft.Storage/storageAccounts/erpio6r4un3ewfnm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"erpio6r4un3ewfnm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-08T12:41:16.6105852Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://erpio6r4un3ewfnm.blob.core.windows.net/\",\r\n \"file\": \"https://erpio6r4un3ewfnm.file.core.windows.net/\",\r\n \"queue\": \"https://erpio6r4un3ewfnm.queue.core.windows.net/\",\r\n \"table\": \"https://erpio6r4un3ewfnm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/fdfdfdf/providers/Microsoft.Storage/storageAccounts/fdfdfdf2537\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"fdfdfdf2537\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-17T10:07:55.1390685Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://fdfdfdf2537.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/fdfdfdf/providers/Microsoft.Storage/storageAccounts/fdfdfdf2925\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"fdfdfdf2925\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-17T10:07:55.715138Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://fdfdfdf2925.blob.core.windows.net/\",\r\n \"file\": \"https://fdfdfdf2925.file.core.windows.net/\",\r\n \"queue\": \"https://fdfdfdf2925.queue.core.windows.net/\",\r\n \"table\": \"https://fdfdfdf2925.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/glsresgroup1/providers/Microsoft.Storage/storageAccounts/glsstoraccount1\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"glsstoraccount1\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T12:37:47.5420067Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://glsstoraccount1.blob.core.windows.net/\",\r\n \"file\": \"https://glsstoraccount1.file.core.windows.net/\",\r\n \"queue\": \"https://glsstoraccount1.queue.core.windows.net/\",\r\n \"table\": \"https://glsstoraccount1.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmpremstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmpremstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:21.7378841Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmpremstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmpremstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmpremstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmpremstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmstdstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmstdstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:22.2160008Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmstdstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmstdstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmstdstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmstdstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-clust-arm/providers/Microsoft.Storage/storageAccounts/gorclustarmstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorclustarmstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-17T14:59:23.8666219Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorclustarmstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorclustarmstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorclustarmstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorclustarmstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {\r\n \"displayName\": \"StorageAccount\"\r\n },\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-test2/providers/Microsoft.Storage/storageAccounts/gortestacc2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gortestacc2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-08T21:18:17.9028388Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gortestacc2.blob.core.windows.net/\",\r\n \"file\": \"https://gortestacc2.file.core.windows.net/\",\r\n \"queue\": \"https://gortestacc2.queue.core.windows.net/\",\r\n \"table\": \"https://gortestacc2.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-04-16T13:50:52.0015725Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspacepremium\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspacepremium\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-10-23T10:22:10.7216809Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspacepremium.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/lvmtest/providers/Microsoft.Storage/storageAccounts/lvmtestspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmtestspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T16:56:41.5005505Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmtestspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmtestspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmtestspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmtestspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-eml2/providers/Microsoft.Storage/storageAccounts/rgeml2stacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"rgeml2stacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T08:00:29.8670815Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://rgeml2stacc.blob.core.windows.net/\",\r\n \"file\": \"https://rgeml2stacc.file.core.windows.net/\",\r\n \"queue\": \"https://rgeml2stacc.queue.core.windows.net/\",\r\n \"table\": \"https://rgeml2stacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/sapcalrg/providers/Microsoft.Storage/storageAccounts/sapcalrg8522\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"sapcalrg8522\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-28T06:54:16.0456896Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sapcalrg8522.blob.core.windows.net/\",\r\n \"file\": \"https://sapcalrg8522.file.core.windows.net/\",\r\n \"queue\": \"https://sapcalrg8522.queue.core.windows.net/\",\r\n \"table\": \"https://sapcalrg8522.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/saperpdemo859644\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"saperpdemo859644\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-01-26T11:02:43.8634331Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saperpdemo859644.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1prstacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1prstacc\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-12-10T17:35:29.0415914Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1prstacc.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1ststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1ststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-10T17:36:26.4810072Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1ststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saphana1ststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saphana1ststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saphana1ststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-sap-linux-docu-tests/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saplinuxdocuststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-24T09:25:04.4473982Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-sap-linux-docu-tests-we/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststaccwe\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saplinuxdocuststaccwe\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-25T13:11:50.5477032Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststaccwe.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststaccwe.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststaccwe.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststaccwe.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/sappseduscsape012612030\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"sappseduscsape012612030\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2016-01-26T11:03:56.0307387Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sappseduscsape012612030.blob.core.windows.net/\",\r\n \"file\": \"https://sappseduscsape012612030.file.core.windows.net/\",\r\n \"queue\": \"https://sappseduscsape012612030.queue.core.windows.net/\",\r\n \"table\": \"https://sappseduscsape012612030.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"westeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/saptesiarm/providers/Microsoft.Storage/storageAccounts/saptesiarm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saptesiarm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-08-27T12:13:00.4049179Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptesiarm.blob.core.windows.net/\",\r\n \"file\": \"https://saptesiarm.file.core.windows.net/\",\r\n \"queue\": \"https://saptesiarm.queue.core.windows.net/\",\r\n \"table\": \"https://saptesiarm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/saptestrajrg/providers/Microsoft.Storage/storageAccounts/saptestrajrg4518\",\r\n \"location\": \"westus\",\r\n \"name\": \"saptestrajrg4518\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-07-22T19:24:21.1065762Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptestrajrg4518.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Storage/storageAccounts/stocrptestps8777\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps8777\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-20T15:01:07.3660071Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps8777.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps8777.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps8777.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps8777.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/temptestsap\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"temptestsap\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-10T14:03:58.3799849Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://temptestsap.blob.core.windows.net/\",\r\n \"file\": \"https://temptestsap.file.core.windows.net/\",\r\n \"queue\": \"https://temptestsap.queue.core.windows.net/\",\r\n \"table\": \"https://temptestsap.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-ts2-test/providers/Microsoft.Storage/storageAccounts/ts2cdlko5xtxpo3k\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"ts2cdlko5xtxpo3k\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-17T14:39:15.5207487Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ts2cdlko5xtxpo3k.blob.core.windows.net/\",\r\n \"file\": \"https://ts2cdlko5xtxpo3k.file.core.windows.net/\",\r\n \"queue\": \"https://ts2cdlko5xtxpo3k.queue.core.windows.net/\",\r\n \"table\": \"https://ts2cdlko5xtxpo3k.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "17081" + "17593" ], "Content-Type": [ "application/json" @@ -3302,7 +3302,7 @@ "no-cache" ], "x-ms-request-id": [ - "0916ca32-f47e-4530-bc36-ae66523227a7" + "1e3bd85a-822f-4704-9563-5394341c3cc5" ], "Cache-Control": [ "no-cache" @@ -3312,28 +3312,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14824" + "14923" ], "x-ms-correlation-request-id": [ - "0916ca32-f47e-4530-bc36-ae66523227a7" + "1e3bd85a-822f-4704-9563-5394341c3cc5" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T132824Z:0916ca32-f47e-4530-bc36-ae66523227a7" + "NORTHCENTRALUS:20160220T151348Z:1e3bd85a-822f-4704-9563-5394341c3cc5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Feb 2016 13:28:24 GMT" + "Sat, 20 Feb 2016 15:13:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457/extensions/LinuxDiagnostic?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM0NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczM0NTcvZXh0ZW5zaW9ucy9MaW51eERpYWdub3N0aWM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Compute/virtualMachines/vmcrptestps8777/extensions/LinuxDiagnostic?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg3NzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczg3NzcvZXh0ZW5zaW9ucy9MaW51eERpYWdub3N0aWM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRQcm9jZXNzb3JUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRJZGxlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50UHJpdmlsZWdlZFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudEludGVycnVwdFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudERQQ1RpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudFVzZXJUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnROaWNlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50SU9XYWl0VGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZE1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxVc2VkTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRBdmFpbGFibGVNZW1vcnkiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRVc2VkQnlDYWNoZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcVXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1BlclNlYyIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1JlYWRQZXJTZWMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcUGFnZXNXcml0dGVuUGVyU2VjIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VUcmFuc2ZlclRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQXZlcmFnZVJlYWRUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VXcml0ZVRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcVHJhbnNmZXJzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFJlYWRzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFdyaXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xCeXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xXcml0ZUJ5dGVzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VEaXNrUXVldWVMZW5ndGgiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVG90YWwiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVHJhbnNtaXR0ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzUmVjZWl2ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXFBhY2tldHNUcmFuc21pdHRlZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcUGFja2V0c1JlY2VpdmVkIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFJ4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFR4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbENvbGxpc2lvbnMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"protectedSettings\": {\r\n \"storageAccountName\": \"stocrptestps3457\",\r\n \"storageAccountKey\": \"drNk94kdlVm8VdcXAYBrEWgh1d4NM+8N46tOxAUMKTV6PpZjmYlkb/DB5UG75cj8PUvD4kK6ssxByIyMgNcSyA==\",\r\n \"storageAccountEndPoint\": \"https://core.windows.net\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRQcm9jZXNzb3JUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRJZGxlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50UHJpdmlsZWdlZFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudEludGVycnVwdFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudERQQ1RpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudFVzZXJUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnROaWNlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50SU9XYWl0VGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZE1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxVc2VkTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRBdmFpbGFibGVNZW1vcnkiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRVc2VkQnlDYWNoZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcVXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1BlclNlYyIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1JlYWRQZXJTZWMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcUGFnZXNXcml0dGVuUGVyU2VjIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VUcmFuc2ZlclRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQXZlcmFnZVJlYWRUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VXcml0ZVRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcVHJhbnNmZXJzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFJlYWRzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFdyaXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xCeXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xXcml0ZUJ5dGVzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VEaXNrUXVldWVMZW5ndGgiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVG90YWwiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVHJhbnNtaXR0ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzUmVjZWl2ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXFBhY2tldHNUcmFuc21pdHRlZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcUGFja2V0c1JlY2VpdmVkIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFJ4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFR4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbENvbGxpc2lvbnMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"protectedSettings\": {\r\n \"storageAccountName\": \"stocrptestps8777\",\r\n \"storageAccountKey\": \"N76GG10+itCJvMCwX6IfvEQyGjQonBcdwDFFjVWVPK63A8OwO7tJrZLgsXbohOfHY4+0pvbdUSxjXEihGDaSdQ==\",\r\n \"storageAccountEndPoint\": \"https://core.windows.net\"\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -3342,7 +3342,7 @@ "5616" ], "x-ms-client-request-id": [ - "1a353e9b-e79e-4150-8734-8a8d3f41791c" + "f6a6e1e9-420d-418b-8ae1-b02cf254fae3" ], "accept-language": [ "en-US" @@ -3351,7 +3351,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRQcm9jZXNzb3JUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRJZGxlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50UHJpdmlsZWdlZFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudEludGVycnVwdFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudERQQ1RpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudFVzZXJUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnROaWNlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50SU9XYWl0VGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZE1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxVc2VkTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRBdmFpbGFibGVNZW1vcnkiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRVc2VkQnlDYWNoZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcVXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1BlclNlYyIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1JlYWRQZXJTZWMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcUGFnZXNXcml0dGVuUGVyU2VjIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VUcmFuc2ZlclRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQXZlcmFnZVJlYWRUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VXcml0ZVRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcVHJhbnNmZXJzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFJlYWRzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFdyaXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xCeXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xXcml0ZUJ5dGVzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VEaXNrUXVldWVMZW5ndGgiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVG90YWwiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVHJhbnNtaXR0ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzUmVjZWl2ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXFBhY2tldHNUcmFuc21pdHRlZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcUGFja2V0c1JlY2VpdmVkIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFJ4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFR4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbENvbGxpc2lvbnMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457/extensions/LinuxDiagnostic\",\r\n \"name\": \"LinuxDiagnostic\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRQcm9jZXNzb3JUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRJZGxlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50UHJpdmlsZWdlZFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudEludGVycnVwdFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudERQQ1RpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudFVzZXJUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnROaWNlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50SU9XYWl0VGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZE1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxVc2VkTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRBdmFpbGFibGVNZW1vcnkiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRVc2VkQnlDYWNoZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcVXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1BlclNlYyIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1JlYWRQZXJTZWMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcUGFnZXNXcml0dGVuUGVyU2VjIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VUcmFuc2ZlclRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQXZlcmFnZVJlYWRUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VXcml0ZVRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcVHJhbnNmZXJzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFJlYWRzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFdyaXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xCeXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xXcml0ZUJ5dGVzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VEaXNrUXVldWVMZW5ndGgiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVG90YWwiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVHJhbnNtaXR0ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzUmVjZWl2ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXFBhY2tldHNUcmFuc21pdHRlZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcUGFja2V0c1JlY2VpdmVkIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFJ4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFR4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbENvbGxpc2lvbnMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Compute/virtualMachines/vmcrptestps8777/extensions/LinuxDiagnostic\",\r\n \"name\": \"LinuxDiagnostic\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "5682" @@ -3366,16 +3366,16 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/f02a775c-77b1-4d84-93b1-bb9be1855222?api-version=2015-06-15" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/97ef2c8b-92f3-48d7-9d47-36bd691a800d?api-version=2015-06-15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "f02a775c-77b1-4d84-93b1-bb9be1855222" + "97ef2c8b-92f3-48d7-9d47-36bd691a800d" ], "Cache-Control": [ "no-cache" @@ -3385,23 +3385,78 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1190" ], "x-ms-correlation-request-id": [ - "da476dc1-7da0-46a5-aeac-6f1cabc9e328" + "da14e64c-b651-40ef-8773-747701cdd214" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T132446Z:da476dc1-7da0-46a5-aeac-6f1cabc9e328" + "NORTHCENTRALUS:20160220T150746Z:da14e64c-b651-40ef-8773-747701cdd214" ], "Date": [ - "Tue, 16 Feb 2016 13:24:46 GMT" + "Sat, 20 Feb 2016 15:07:46 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/f02a775c-77b1-4d84-93b1-bb9be1855222?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZjAyYTc3NWMtNzdiMS00ZDg0LTkzYjEtYmI5YmUxODU1MjIyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/97ef2c8b-92f3-48d7-9d47-36bd691a800d?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOTdlZjJjOGItOTJmMy00OGQ3LTlkNDctMzZiZDY5MWE4MDBkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"97ef2c8b-92f3-48d7-9d47-36bd691a800d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-20T16:07:45.2429012+01: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-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" + ], + "x-ms-request-id": [ + "660b7d05-d2ae-4a61-a74f-63b4579f92fa" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14954" + ], + "x-ms-correlation-request-id": [ + "95ac0f18-fe28-4185-baaf-c12000a6ba3a" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160220T150816Z:95ac0f18-fe28-4185-baaf-c12000a6ba3a" + ], + "Date": [ + "Sat, 20 Feb 2016 15:08:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/97ef2c8b-92f3-48d7-9d47-36bd691a800d?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOTdlZjJjOGItOTJmMy00OGQ3LTlkNDctMzZiZDY5MWE4MDBkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3409,7 +3464,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"f02a775c-77b1-4d84-93b1-bb9be1855222\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T14:24:45.1518831+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"97ef2c8b-92f3-48d7-9d47-36bd691a800d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-20T16:07:45.2429012+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3427,10 +3482,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "5f60db23-e660-48f8-bb8c-4e0088b8f12c" + "f167a442-b72a-47c9-94ee-57694bab7cef" ], "Cache-Control": [ "no-cache" @@ -3440,23 +3495,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14872" + "14952" ], "x-ms-correlation-request-id": [ - "c8db06f7-9504-4526-9c74-e9a7f89f2a01" + "2c09c241-00b7-4988-a33b-70d3ec9792bf" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T132516Z:c8db06f7-9504-4526-9c74-e9a7f89f2a01" + "NORTHCENTRALUS:20160220T150846Z:2c09c241-00b7-4988-a33b-70d3ec9792bf" ], "Date": [ - "Tue, 16 Feb 2016 13:25:16 GMT" + "Sat, 20 Feb 2016 15:08:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/f02a775c-77b1-4d84-93b1-bb9be1855222?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZjAyYTc3NWMtNzdiMS00ZDg0LTkzYjEtYmI5YmUxODU1MjIyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/97ef2c8b-92f3-48d7-9d47-36bd691a800d?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOTdlZjJjOGItOTJmMy00OGQ3LTlkNDctMzZiZDY5MWE4MDBkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3464,7 +3519,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"f02a775c-77b1-4d84-93b1-bb9be1855222\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T14:24:45.1518831+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"97ef2c8b-92f3-48d7-9d47-36bd691a800d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-20T16:07:45.2429012+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3482,10 +3537,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "1555a200-8d51-4cfa-9b9b-09a3e22262ad" + "a6af75f2-5fe6-4284-815b-adf7755dd9b4" ], "Cache-Control": [ "no-cache" @@ -3495,23 +3550,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14871" + "14943" ], "x-ms-correlation-request-id": [ - "62887652-c1ab-4121-b8e0-e697d7740e04" + "ff77a606-fb84-48f2-8fd3-a051103c7180" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T132546Z:62887652-c1ab-4121-b8e0-e697d7740e04" + "NORTHCENTRALUS:20160220T150916Z:ff77a606-fb84-48f2-8fd3-a051103c7180" ], "Date": [ - "Tue, 16 Feb 2016 13:25:45 GMT" + "Sat, 20 Feb 2016 15:09:16 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/f02a775c-77b1-4d84-93b1-bb9be1855222?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZjAyYTc3NWMtNzdiMS00ZDg0LTkzYjEtYmI5YmUxODU1MjIyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/97ef2c8b-92f3-48d7-9d47-36bd691a800d?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOTdlZjJjOGItOTJmMy00OGQ3LTlkNDctMzZiZDY5MWE4MDBkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3519,7 +3574,117 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"f02a775c-77b1-4d84-93b1-bb9be1855222\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-02-16T14:24:45.1518831+01:00\",\r\n \"endTime\": \"2016-02-16T14:26:09.2143984+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"97ef2c8b-92f3-48d7-9d47-36bd691a800d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-20T16:07:45.2429012+01: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-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" + ], + "x-ms-request-id": [ + "0962ad25-5592-4854-a37f-367f32180d6d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14942" + ], + "x-ms-correlation-request-id": [ + "5b06e9da-d441-4876-b546-d06bcc35ea8a" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160220T150946Z:5b06e9da-d441-4876-b546-d06bcc35ea8a" + ], + "Date": [ + "Sat, 20 Feb 2016 15:09:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/97ef2c8b-92f3-48d7-9d47-36bd691a800d?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOTdlZjJjOGItOTJmMy00OGQ3LTlkNDctMzZiZDY5MWE4MDBkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"97ef2c8b-92f3-48d7-9d47-36bd691a800d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-20T16:07:45.2429012+01: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-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" + ], + "x-ms-request-id": [ + "53765f2c-e9d3-43f8-b1a5-1763bc6ded9c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14948" + ], + "x-ms-correlation-request-id": [ + "9fc9ef2e-efd4-4506-8fa7-55074417cd86" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20160220T151017Z:9fc9ef2e-efd4-4506-8fa7-55074417cd86" + ], + "Date": [ + "Sat, 20 Feb 2016 15:10:16 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/97ef2c8b-92f3-48d7-9d47-36bd691a800d?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOTdlZjJjOGItOTJmMy00OGQ3LTlkNDctMzZiZDY5MWE4MDBkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"97ef2c8b-92f3-48d7-9d47-36bd691a800d\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-02-20T16:07:45.2429012+01:00\",\r\n \"endTime\": \"2016-02-20T16:10:40.6962329+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "191" @@ -3537,10 +3702,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "bc6d3678-e9f1-47c4-8c96-2e67b7eab0d6" + "342b4dd9-5d83-4d7b-b73a-3b42bd81637e" ], "Cache-Control": [ "no-cache" @@ -3550,23 +3715,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14869" + "14947" ], "x-ms-correlation-request-id": [ - "74fe983d-c339-49fc-b200-d6341262cb70" + "63743a82-4a9e-4daa-b1f9-00c688d56a81" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T132616Z:74fe983d-c339-49fc-b200-d6341262cb70" + "NORTHCENTRALUS:20160220T151047Z:63743a82-4a9e-4daa-b1f9-00c688d56a81" ], "Date": [ - "Tue, 16 Feb 2016 13:26:16 GMT" + "Sat, 20 Feb 2016 15:10:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457/extensions/LinuxDiagnostic?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM0NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczM0NTcvZXh0ZW5zaW9ucy9MaW51eERpYWdub3N0aWM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Compute/virtualMachines/vmcrptestps8777/extensions/LinuxDiagnostic?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg3NzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczg3NzcvZXh0ZW5zaW9ucy9MaW51eERpYWdub3N0aWM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3574,7 +3739,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRQcm9jZXNzb3JUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRJZGxlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50UHJpdmlsZWdlZFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudEludGVycnVwdFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudERQQ1RpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudFVzZXJUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnROaWNlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50SU9XYWl0VGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZE1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxVc2VkTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRBdmFpbGFibGVNZW1vcnkiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRVc2VkQnlDYWNoZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcVXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1BlclNlYyIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1JlYWRQZXJTZWMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcUGFnZXNXcml0dGVuUGVyU2VjIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VUcmFuc2ZlclRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQXZlcmFnZVJlYWRUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VXcml0ZVRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcVHJhbnNmZXJzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFJlYWRzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFdyaXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xCeXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xXcml0ZUJ5dGVzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VEaXNrUXVldWVMZW5ndGgiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVG90YWwiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVHJhbnNtaXR0ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzUmVjZWl2ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXFBhY2tldHNUcmFuc21pdHRlZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcUGFja2V0c1JlY2VpdmVkIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFJ4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFR4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbENvbGxpc2lvbnMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457/extensions/LinuxDiagnostic\",\r\n \"name\": \"LinuxDiagnostic\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRQcm9jZXNzb3JUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRJZGxlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50UHJpdmlsZWdlZFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudEludGVycnVwdFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudERQQ1RpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudFVzZXJUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnROaWNlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50SU9XYWl0VGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZE1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxVc2VkTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRBdmFpbGFibGVNZW1vcnkiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRVc2VkQnlDYWNoZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcVXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1BlclNlYyIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1JlYWRQZXJTZWMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcUGFnZXNXcml0dGVuUGVyU2VjIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VUcmFuc2ZlclRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQXZlcmFnZVJlYWRUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VXcml0ZVRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcVHJhbnNmZXJzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFJlYWRzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFdyaXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xCeXRlc1BlclNlY29uZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xXcml0ZUJ5dGVzUGVyU2Vjb25kIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VEaXNrUXVldWVMZW5ndGgiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVG90YWwiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVHJhbnNtaXR0ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzUmVjZWl2ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXFBhY2tldHNUcmFuc21pdHRlZCIgc2FtcGxlUmF0ZT0iUFQxNVMiIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcUGFja2V0c1JlY2VpdmVkIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFJ4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbFR4RXJyb3JzIiBzYW1wbGVSYXRlPSJQVDE1UyIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbENvbGxpc2lvbnMiIHNhbXBsZVJhdGU9IlBUMTVTIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Compute/virtualMachines/vmcrptestps8777/extensions/LinuxDiagnostic\",\r\n \"name\": \"LinuxDiagnostic\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "5683" @@ -3592,10 +3757,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "1c579127-c793-4ab9-beeb-b6b3f2022af5" + "83d4d33b-cd7d-4cd1-b48f-7377b847332d" ], "Cache-Control": [ "no-cache" @@ -3605,25 +3770,25 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14868" + "14946" ], "x-ms-correlation-request-id": [ - "2c988f33-d21a-46d8-9046-87c24b5f4911" + "f8b053a7-0604-4566-b907-bc5595a29bcd" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T132617Z:2c988f33-d21a-46d8-9046-87c24b5f4911" + "NORTHCENTRALUS:20160220T151048Z:f8b053a7-0604-4566-b907-bc5595a29bcd" ], "Date": [ - "Tue, 16 Feb 2016 13:26:16 GMT" + "Sat, 20 Feb 2016 15:10:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457/extensions/AzureEnhancedMonitorForLinux?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM0NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczM0NTcvZXh0ZW5zaW9ucy9BenVyZUVuaGFuY2VkTW9uaXRvckZvckxpbnV4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Compute/virtualMachines/vmcrptestps8777/extensions/AzureEnhancedMonitorForLinux?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg3NzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczg3NzcvZXh0ZW5zaW9ucy9BenVyZUVuaGFuY2VkTW9uaXRvckZvckxpbnV4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_A2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"osdisk.connminute\",\r\n \"value\": \"stocrptestps3457.minute\"\r\n },\r\n {\r\n \"key\": \"osdisk.connhour\",\r\n \"value\": \"stocrptestps3457.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.1\",\r\n \"value\": \"stocrptestps3457.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.1\",\r\n \"value\": \"stocrptestps3457.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.2\",\r\n \"value\": \"stocrptestps3457.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.2\",\r\n \"value\": \"stocrptestps3457.hour\"\r\n },\r\n {\r\n \"key\": \"stocrptestps3457.hour.uri\",\r\n \"value\": \"https://stocrptestps3457.table.core.windows.net/$MetricsHourPrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps3457.minute.uri\",\r\n \"value\": \"https://stocrptestps3457.table.core.windows.net/$MetricsMinutePrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps3457.hour.name\",\r\n \"value\": \"stocrptestps3457\"\r\n },\r\n {\r\n \"key\": \"stocrptestps3457.minute.name\",\r\n \"value\": \"stocrptestps3457\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps3457\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps3457.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"protectedSettings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"stocrptestps3457.hour.key\",\r\n \"value\": \"drNk94kdlVm8VdcXAYBrEWgh1d4NM+8N46tOxAUMKTV6PpZjmYlkb/DB5UG75cj8PUvD4kK6ssxByIyMgNcSyA==\"\r\n },\r\n {\r\n \"key\": \"stocrptestps3457.minute.key\",\r\n \"value\": \"drNk94kdlVm8VdcXAYBrEWgh1d4NM+8N46tOxAUMKTV6PpZjmYlkb/DB5UG75cj8PUvD4kK6ssxByIyMgNcSyA==\"\r\n },\r\n {\r\n \"key\": \"wad.key\",\r\n \"value\": \"drNk94kdlVm8VdcXAYBrEWgh1d4NM+8N46tOxAUMKTV6PpZjmYlkb/DB5UG75cj8PUvD4kK6ssxByIyMgNcSyA==\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_A2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"osdisk.connminute\",\r\n \"value\": \"stocrptestps8777.minute\"\r\n },\r\n {\r\n \"key\": \"osdisk.connhour\",\r\n \"value\": \"stocrptestps8777.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.1\",\r\n \"value\": \"stocrptestps8777.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.1\",\r\n \"value\": \"stocrptestps8777.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.2\",\r\n \"value\": \"stocrptestps8777.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.2\",\r\n \"value\": \"stocrptestps8777.hour\"\r\n },\r\n {\r\n \"key\": \"stocrptestps8777.hour.uri\",\r\n \"value\": \"https://stocrptestps8777.table.core.windows.net/$MetricsHourPrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps8777.minute.uri\",\r\n \"value\": \"https://stocrptestps8777.table.core.windows.net/$MetricsMinutePrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps8777.hour.name\",\r\n \"value\": \"stocrptestps8777\"\r\n },\r\n {\r\n \"key\": \"stocrptestps8777.minute.name\",\r\n \"value\": \"stocrptestps8777\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps8777\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps8777.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"protectedSettings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"stocrptestps8777.hour.key\",\r\n \"value\": \"N76GG10+itCJvMCwX6IfvEQyGjQonBcdwDFFjVWVPK63A8OwO7tJrZLgsXbohOfHY4+0pvbdUSxjXEihGDaSdQ==\"\r\n },\r\n {\r\n \"key\": \"stocrptestps8777.minute.key\",\r\n \"value\": \"N76GG10+itCJvMCwX6IfvEQyGjQonBcdwDFFjVWVPK63A8OwO7tJrZLgsXbohOfHY4+0pvbdUSxjXEihGDaSdQ==\"\r\n },\r\n {\r\n \"key\": \"wad.key\",\r\n \"value\": \"N76GG10+itCJvMCwX6IfvEQyGjQonBcdwDFFjVWVPK63A8OwO7tJrZLgsXbohOfHY4+0pvbdUSxjXEihGDaSdQ==\"\r\n }\r\n ]\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -3632,7 +3797,7 @@ "3877" ], "x-ms-client-request-id": [ - "b8f593c4-6cf7-454c-9436-efaf66f0208b" + "deb79313-89cb-455f-aebe-45d6c30a02b8" ], "accept-language": [ "en-US" @@ -3641,7 +3806,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_A2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"osdisk.connminute\",\r\n \"value\": \"stocrptestps3457.minute\"\r\n },\r\n {\r\n \"key\": \"osdisk.connhour\",\r\n \"value\": \"stocrptestps3457.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.1\",\r\n \"value\": \"stocrptestps3457.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.1\",\r\n \"value\": \"stocrptestps3457.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.2\",\r\n \"value\": \"stocrptestps3457.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.2\",\r\n \"value\": \"stocrptestps3457.hour\"\r\n },\r\n {\r\n \"key\": \"stocrptestps3457.hour.uri\",\r\n \"value\": \"https://stocrptestps3457.table.core.windows.net/$MetricsHourPrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps3457.minute.uri\",\r\n \"value\": \"https://stocrptestps3457.table.core.windows.net/$MetricsMinutePrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps3457.hour.name\",\r\n \"value\": \"stocrptestps3457\"\r\n },\r\n {\r\n \"key\": \"stocrptestps3457.minute.name\",\r\n \"value\": \"stocrptestps3457\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps3457\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps3457.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457/extensions/AzureEnhancedMonitorForLinux\",\r\n \"name\": \"AzureEnhancedMonitorForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_A2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"osdisk.connminute\",\r\n \"value\": \"stocrptestps8777.minute\"\r\n },\r\n {\r\n \"key\": \"osdisk.connhour\",\r\n \"value\": \"stocrptestps8777.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.1\",\r\n \"value\": \"stocrptestps8777.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.1\",\r\n \"value\": \"stocrptestps8777.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.2\",\r\n \"value\": \"stocrptestps8777.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.2\",\r\n \"value\": \"stocrptestps8777.hour\"\r\n },\r\n {\r\n \"key\": \"stocrptestps8777.hour.uri\",\r\n \"value\": \"https://stocrptestps8777.table.core.windows.net/$MetricsHourPrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps8777.minute.uri\",\r\n \"value\": \"https://stocrptestps8777.table.core.windows.net/$MetricsMinutePrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps8777.hour.name\",\r\n \"value\": \"stocrptestps8777\"\r\n },\r\n {\r\n \"key\": \"stocrptestps8777.minute.name\",\r\n \"value\": \"stocrptestps8777\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps8777\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps8777.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Compute/virtualMachines/vmcrptestps8777/extensions/AzureEnhancedMonitorForLinux\",\r\n \"name\": \"AzureEnhancedMonitorForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "2220" @@ -3656,16 +3821,16 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/a1abbb1c-bd4c-4ac9-a650-091cca79aff2?api-version=2015-06-15" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/e2a00454-b9de-4512-b0de-fb66ba493990?api-version=2015-06-15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "a1abbb1c-bd4c-4ac9-a650-091cca79aff2" + "e2a00454-b9de-4512-b0de-fb66ba493990" ], "Cache-Control": [ "no-cache" @@ -3675,23 +3840,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1193" ], "x-ms-correlation-request-id": [ - "a2ccd01a-a949-4c7e-9549-98141e860aa7" + "efea7b43-df11-413f-9ad7-30a6cbec2e06" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T132618Z:a2ccd01a-a949-4c7e-9549-98141e860aa7" + "NORTHCENTRALUS:20160220T151050Z:efea7b43-df11-413f-9ad7-30a6cbec2e06" ], "Date": [ - "Tue, 16 Feb 2016 13:26:17 GMT" + "Sat, 20 Feb 2016 15:10:49 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/a1abbb1c-bd4c-4ac9-a650-091cca79aff2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTFhYmJiMWMtYmQ0Yy00YWM5LWE2NTAtMDkxY2NhNzlhZmYyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/e2a00454-b9de-4512-b0de-fb66ba493990?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZTJhMDA0NTQtYjlkZS00NTEyLWIwZGUtZmI2NmJhNDkzOTkwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3699,7 +3864,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"a1abbb1c-bd4c-4ac9-a650-091cca79aff2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T14:26:18.2456559+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"e2a00454-b9de-4512-b0de-fb66ba493990\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-20T16:10:49.2119353+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3717,10 +3882,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "5ae1968e-793f-4cc0-b1a1-e811a2ebe3fd" + "21c11385-299e-4830-9421-f5acd373aa7d" ], "Cache-Control": [ "no-cache" @@ -3730,23 +3895,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14865" + "14944" ], "x-ms-correlation-request-id": [ - "d5ba8a71-1c9d-4615-ae1e-49d613bdebf7" + "47e0d868-2cb0-48ae-a1cb-4da56bb74622" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T132648Z:d5ba8a71-1c9d-4615-ae1e-49d613bdebf7" + "NORTHCENTRALUS:20160220T151120Z:47e0d868-2cb0-48ae-a1cb-4da56bb74622" ], "Date": [ - "Tue, 16 Feb 2016 13:26:48 GMT" + "Sat, 20 Feb 2016 15:11:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/a1abbb1c-bd4c-4ac9-a650-091cca79aff2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTFhYmJiMWMtYmQ0Yy00YWM5LWE2NTAtMDkxY2NhNzlhZmYyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/e2a00454-b9de-4512-b0de-fb66ba493990?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZTJhMDA0NTQtYjlkZS00NTEyLWIwZGUtZmI2NmJhNDkzOTkwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3754,7 +3919,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"a1abbb1c-bd4c-4ac9-a650-091cca79aff2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T14:26:18.2456559+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"e2a00454-b9de-4512-b0de-fb66ba493990\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-20T16:10:49.2119353+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3772,10 +3937,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "9e0e7f63-053f-41ba-9544-f981c0afed63" + "a68340c1-f27b-410a-a5a4-93950bd19e18" ], "Cache-Control": [ "no-cache" @@ -3785,23 +3950,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14864" + "14943" ], "x-ms-correlation-request-id": [ - "8bde2f76-706a-4fc9-a957-aa5979f1abaf" + "c757c625-f8f7-43ff-a338-e1b090317319" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T132719Z:8bde2f76-706a-4fc9-a957-aa5979f1abaf" + "NORTHCENTRALUS:20160220T151150Z:c757c625-f8f7-43ff-a338-e1b090317319" ], "Date": [ - "Tue, 16 Feb 2016 13:27:18 GMT" + "Sat, 20 Feb 2016 15:11:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/a1abbb1c-bd4c-4ac9-a650-091cca79aff2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTFhYmJiMWMtYmQ0Yy00YWM5LWE2NTAtMDkxY2NhNzlhZmYyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/e2a00454-b9de-4512-b0de-fb66ba493990?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZTJhMDA0NTQtYjlkZS00NTEyLWIwZGUtZmI2NmJhNDkzOTkwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3809,7 +3974,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"a1abbb1c-bd4c-4ac9-a650-091cca79aff2\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-02-16T14:26:18.2456559+01:00\",\r\n \"endTime\": \"2016-02-16T14:27:37.1362366+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"e2a00454-b9de-4512-b0de-fb66ba493990\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-02-20T16:10:49.2119353+01:00\",\r\n \"endTime\": \"2016-02-20T16:12:09.6337784+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "191" @@ -3827,10 +3992,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "ccaf5edb-dd63-4a10-9d30-2416ca65d347" + "7724c09c-f296-46a7-a2a8-198d27fc8b00" ], "Cache-Control": [ "no-cache" @@ -3840,23 +4005,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14862" + "14941" ], "x-ms-correlation-request-id": [ - "3a0ce685-f66f-4f6c-8839-9e14fb06c810" + "d80a9dc8-88c7-4c18-9518-987d6d7a62f5" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T132749Z:3a0ce685-f66f-4f6c-8839-9e14fb06c810" + "NORTHCENTRALUS:20160220T151221Z:d80a9dc8-88c7-4c18-9518-987d6d7a62f5" ], "Date": [ - "Tue, 16 Feb 2016 13:27:48 GMT" + "Sat, 20 Feb 2016 15:12:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457/extensions/AzureEnhancedMonitorForLinux?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM0NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczM0NTcvZXh0ZW5zaW9ucy9BenVyZUVuaGFuY2VkTW9uaXRvckZvckxpbnV4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Compute/virtualMachines/vmcrptestps8777/extensions/AzureEnhancedMonitorForLinux?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg3NzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczg3NzcvZXh0ZW5zaW9ucy9BenVyZUVuaGFuY2VkTW9uaXRvckZvckxpbnV4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3864,7 +4029,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_A2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"osdisk.connminute\",\r\n \"value\": \"stocrptestps3457.minute\"\r\n },\r\n {\r\n \"key\": \"osdisk.connhour\",\r\n \"value\": \"stocrptestps3457.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.1\",\r\n \"value\": \"stocrptestps3457.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.1\",\r\n \"value\": \"stocrptestps3457.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.2\",\r\n \"value\": \"stocrptestps3457.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.2\",\r\n \"value\": \"stocrptestps3457.hour\"\r\n },\r\n {\r\n \"key\": \"stocrptestps3457.hour.uri\",\r\n \"value\": \"https://stocrptestps3457.table.core.windows.net/$MetricsHourPrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps3457.minute.uri\",\r\n \"value\": \"https://stocrptestps3457.table.core.windows.net/$MetricsMinutePrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps3457.hour.name\",\r\n \"value\": \"stocrptestps3457\"\r\n },\r\n {\r\n \"key\": \"stocrptestps3457.minute.name\",\r\n \"value\": \"stocrptestps3457\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps3457\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps3457.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457/extensions/AzureEnhancedMonitorForLinux\",\r\n \"name\": \"AzureEnhancedMonitorForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_A2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"osdisk.connminute\",\r\n \"value\": \"stocrptestps8777.minute\"\r\n },\r\n {\r\n \"key\": \"osdisk.connhour\",\r\n \"value\": \"stocrptestps8777.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.1\",\r\n \"value\": \"stocrptestps8777.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.1\",\r\n \"value\": \"stocrptestps8777.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.2\",\r\n \"value\": \"stocrptestps8777.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.2\",\r\n \"value\": \"stocrptestps8777.hour\"\r\n },\r\n {\r\n \"key\": \"stocrptestps8777.hour.uri\",\r\n \"value\": \"https://stocrptestps8777.table.core.windows.net/$MetricsHourPrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps8777.minute.uri\",\r\n \"value\": \"https://stocrptestps8777.table.core.windows.net/$MetricsMinutePrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps8777.hour.name\",\r\n \"value\": \"stocrptestps8777\"\r\n },\r\n {\r\n \"key\": \"stocrptestps8777.minute.name\",\r\n \"value\": \"stocrptestps8777\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps8777\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps8777.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Compute/virtualMachines/vmcrptestps8777/extensions/AzureEnhancedMonitorForLinux\",\r\n \"name\": \"AzureEnhancedMonitorForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "2221" @@ -3882,10 +4047,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "4b7a28eb-b2cd-4d78-8dd8-8d8d4b1c4fb2" + "b6eee9d4-78e8-486e-baaa-2a2ef868d5f9" ], "Cache-Control": [ "no-cache" @@ -3895,28 +4060,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14861" + "14940" ], "x-ms-correlation-request-id": [ - "7fa3c00d-412c-4824-9963-e5b60321035d" + "7fe37055-d7f4-4134-8ac5-b81d5a281b03" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T132749Z:7fa3c00d-412c-4824-9963-e5b60321035d" + "NORTHCENTRALUS:20160220T151222Z:7fe37055-d7f4-4134-8ac5-b81d5a281b03" ], "Date": [ - "Tue, 16 Feb 2016 13:27:49 GMT" + "Sat, 20 Feb 2016 15:12:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457/extensions/AzureEnhancedMonitorForLinux?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM0NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczM0NTcvZXh0ZW5zaW9ucy9BenVyZUVuaGFuY2VkTW9uaXRvckZvckxpbnV4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Compute/virtualMachines/vmcrptestps8777/extensions/AzureEnhancedMonitorForLinux?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg3NzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczg3NzcvZXh0ZW5zaW9ucy9BenVyZUVuaGFuY2VkTW9uaXRvckZvckxpbnV4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e814e808-e585-4809-bc8b-f3405643cd8e" + "9203ccbd-89dd-48a3-94db-7ce3861ccd0b" ], "accept-language": [ "en-US" @@ -3925,7 +4090,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_A2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"osdisk.connminute\",\r\n \"value\": \"stocrptestps3457.minute\"\r\n },\r\n {\r\n \"key\": \"osdisk.connhour\",\r\n \"value\": \"stocrptestps3457.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.1\",\r\n \"value\": \"stocrptestps3457.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.1\",\r\n \"value\": \"stocrptestps3457.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.2\",\r\n \"value\": \"stocrptestps3457.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.2\",\r\n \"value\": \"stocrptestps3457.hour\"\r\n },\r\n {\r\n \"key\": \"stocrptestps3457.hour.uri\",\r\n \"value\": \"https://stocrptestps3457.table.core.windows.net/$MetricsHourPrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps3457.minute.uri\",\r\n \"value\": \"https://stocrptestps3457.table.core.windows.net/$MetricsMinutePrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps3457.hour.name\",\r\n \"value\": \"stocrptestps3457\"\r\n },\r\n {\r\n \"key\": \"stocrptestps3457.minute.name\",\r\n \"value\": \"stocrptestps3457\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps3457\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps3457.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457/extensions/AzureEnhancedMonitorForLinux\",\r\n \"name\": \"AzureEnhancedMonitorForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_A2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"osdisk.connminute\",\r\n \"value\": \"stocrptestps8777.minute\"\r\n },\r\n {\r\n \"key\": \"osdisk.connhour\",\r\n \"value\": \"stocrptestps8777.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.1\",\r\n \"value\": \"stocrptestps8777.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.1\",\r\n \"value\": \"stocrptestps8777.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.2\",\r\n \"value\": \"stocrptestps8777.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.2\",\r\n \"value\": \"stocrptestps8777.hour\"\r\n },\r\n {\r\n \"key\": \"stocrptestps8777.hour.uri\",\r\n \"value\": \"https://stocrptestps8777.table.core.windows.net/$MetricsHourPrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps8777.minute.uri\",\r\n \"value\": \"https://stocrptestps8777.table.core.windows.net/$MetricsMinutePrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps8777.hour.name\",\r\n \"value\": \"stocrptestps8777\"\r\n },\r\n {\r\n \"key\": \"stocrptestps8777.minute.name\",\r\n \"value\": \"stocrptestps8777\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps8777\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps8777.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Compute/virtualMachines/vmcrptestps8777/extensions/AzureEnhancedMonitorForLinux\",\r\n \"name\": \"AzureEnhancedMonitorForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "2221" @@ -3943,10 +4108,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "b8d1d9f5-5830-46bf-93d9-1682833533e0" + "0c730a9c-4811-4b5d-a9cb-41599a7a9eea" ], "Cache-Control": [ "no-cache" @@ -3956,28 +4121,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14859" + "14938" ], "x-ms-correlation-request-id": [ - "25787fa3-dbfd-4a6e-9407-ca66cbb10ca7" + "1743be02-58ed-43c7-b467-b0fd69125217" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T132749Z:25787fa3-dbfd-4a6e-9407-ca66cbb10ca7" + "NORTHCENTRALUS:20160220T151222Z:1743be02-58ed-43c7-b467-b0fd69125217" ], "Date": [ - "Tue, 16 Feb 2016 13:27:49 GMT" + "Sat, 20 Feb 2016 15:12:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457/restart?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM0NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczM0NTcvcmVzdGFydD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Compute/virtualMachines/vmcrptestps8777/restart?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg3NzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczg3NzcvcmVzdGFydD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3b3b28f8-2a0d-4501-946e-a9da64fcbeeb" + "b93fcab1-da76-4419-80db-3b50a450f1ac" ], "accept-language": [ "en-US" @@ -3998,45 +4163,45 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/54ca1a3c-a536-428e-85ec-7e69670c9452?api-version=2015-06-15" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/89fbc825-b0bf-4518-b813-c4bc5f55d5eb?api-version=2015-06-15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "54ca1a3c-a536-428e-85ec-7e69670c9452" + "89fbc825-b0bf-4518-b813-c4bc5f55d5eb" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/54ca1a3c-a536-428e-85ec-7e69670c9452?monitor=true&api-version=2015-06-15" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/89fbc825-b0bf-4518-b813-c4bc5f55d5eb?monitor=true&api-version=2015-06-15" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1192" ], "x-ms-correlation-request-id": [ - "dba62499-a107-4c78-a0a3-8e29e226bf43" + "8d3f6639-2b3b-4d54-a3e1-6895a3ba0ec4" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T132752Z:dba62499-a107-4c78-a0a3-8e29e226bf43" + "NORTHCENTRALUS:20160220T151225Z:8d3f6639-2b3b-4d54-a3e1-6895a3ba0ec4" ], "Date": [ - "Tue, 16 Feb 2016 13:27:52 GMT" + "Sat, 20 Feb 2016 15:12:24 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/54ca1a3c-a536-428e-85ec-7e69670c9452?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNTRjYTFhM2MtYTUzNi00MjhlLTg1ZWMtN2U2OTY3MGM5NDUyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/89fbc825-b0bf-4518-b813-c4bc5f55d5eb?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvODlmYmM4MjUtYjBiZi00NTE4LWI4MTMtYzRiYzVmNTVkNWViP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4044,7 +4209,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"54ca1a3c-a536-428e-85ec-7e69670c9452\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-02-16T14:27:52.7925278+01:00\",\r\n \"endTime\": \"2016-02-16T14:27:53.2456479+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"89fbc825-b0bf-4518-b813-c4bc5f55d5eb\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-02-20T16:12:24.7901432+01:00\",\r\n \"endTime\": \"2016-02-20T16:12:26.2120019+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "191" @@ -4062,10 +4227,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "c678f6c1-ea64-41e0-ae00-ea9f7db63afe" + "6f3aac1c-395e-44f0-91d9-b20681c201c6" ], "Cache-Control": [ "no-cache" @@ -4075,28 +4240,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14857" + "14937" ], "x-ms-correlation-request-id": [ - "fd1834f4-d60f-43d5-944f-4e3131692809" + "829d64f4-72a1-490e-8526-c3a4d669ce71" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T132823Z:fd1834f4-d60f-43d5-944f-4e3131692809" + "NORTHCENTRALUS:20160220T151255Z:829d64f4-72a1-490e-8526-c3a4d669ce71" ], "Date": [ - "Tue, 16 Feb 2016 13:28:22 GMT" + "Sat, 20 Feb 2016 15:12:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps3457/providers/Microsoft.Compute/virtualMachines/vmcrptestps3457/extensions/AzureEnhancedMonitorForLinux?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM0NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczM0NTcvZXh0ZW5zaW9ucy9BenVyZUVuaGFuY2VkTW9uaXRvckZvckxpbnV4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps8777/providers/Microsoft.Compute/virtualMachines/vmcrptestps8777/extensions/AzureEnhancedMonitorForLinux?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg3NzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczg3NzcvZXh0ZW5zaW9ucy9BenVyZUVuaGFuY2VkTW9uaXRvckZvckxpbnV4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "54ec4079-5164-4aee-bb88-7f8e4d316057" + "4b8360bd-3b17-4865-84b0-ba5a2d67ff57" ], "accept-language": [ "en-US" @@ -4117,45 +4282,45 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/3fc0acb1-7347-42b0-96c2-4a3e8ecbe125?api-version=2015-06-15" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/39db0a95-f4c7-4b1c-aadf-7c46577b6ef1?api-version=2015-06-15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "3fc0acb1-7347-42b0-96c2-4a3e8ecbe125" + "39db0a95-f4c7-4b1c-aadf-7c46577b6ef1" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/3fc0acb1-7347-42b0-96c2-4a3e8ecbe125?monitor=true&api-version=2015-06-15" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/39db0a95-f4c7-4b1c-aadf-7c46577b6ef1?monitor=true&api-version=2015-06-15" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1186" + "1198" ], "x-ms-correlation-request-id": [ - "4655ea41-8167-4dee-ab8a-578453d93010" + "e4793682-5553-4a83-9f9d-fe416f7e7810" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T140125Z:4655ea41-8167-4dee-ab8a-578453d93010" + "NORTHCENTRALUS:20160220T151541Z:e4793682-5553-4a83-9f9d-fe416f7e7810" ], "Date": [ - "Tue, 16 Feb 2016 14:01:25 GMT" + "Sat, 20 Feb 2016 15:15:40 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/3fc0acb1-7347-42b0-96c2-4a3e8ecbe125?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2ZjMGFjYjEtNzM0Ny00MmIwLTk2YzItNGEzZThlY2JlMTI1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/39db0a95-f4c7-4b1c-aadf-7c46577b6ef1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMzlkYjBhOTUtZjRjNy00YjFjLWFhZGYtN2M0NjU3N2I2ZWYxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4163,7 +4328,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"3fc0acb1-7347-42b0-96c2-4a3e8ecbe125\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T15:01:25.4175126+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"39db0a95-f4c7-4b1c-aadf-7c46577b6ef1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-20T16:15:40.7903479+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -4181,10 +4346,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "9b123391-ba44-4752-968c-223fa7f5db7d" + "5a8d5095-cad6-41f0-868f-783ddb68a977" ], "Cache-Control": [ "no-cache" @@ -4194,23 +4359,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14735" + "14944" ], "x-ms-correlation-request-id": [ - "e190c8d7-0f48-4ba9-8035-66cc17dfc7b3" + "72c44c48-3bc2-4004-91c8-d266ca438d09" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T140155Z:e190c8d7-0f48-4ba9-8035-66cc17dfc7b3" + "NORTHCENTRALUS:20160220T151611Z:72c44c48-3bc2-4004-91c8-d266ca438d09" ], "Date": [ - "Tue, 16 Feb 2016 14:01:55 GMT" + "Sat, 20 Feb 2016 15:16:11 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/3fc0acb1-7347-42b0-96c2-4a3e8ecbe125?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2ZjMGFjYjEtNzM0Ny00MmIwLTk2YzItNGEzZThlY2JlMTI1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/39db0a95-f4c7-4b1c-aadf-7c46577b6ef1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMzlkYjBhOTUtZjRjNy00YjFjLWFhZGYtN2M0NjU3N2I2ZWYxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4218,7 +4383,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"3fc0acb1-7347-42b0-96c2-4a3e8ecbe125\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T15:01:25.4175126+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"39db0a95-f4c7-4b1c-aadf-7c46577b6ef1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-20T16:15:40.7903479+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -4236,10 +4401,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "3b627594-e66a-4785-b70b-664257a6b9e3" + "1d27ab67-bd4f-45c8-8ba1-c3ce0798a080" ], "Cache-Control": [ "no-cache" @@ -4249,23 +4414,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14733" + "14942" ], "x-ms-correlation-request-id": [ - "2ef76b53-45b9-47ab-9fb3-b7a0f528da80" + "d9f298ae-0f46-4f25-bd85-a41e020f134e" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T140226Z:2ef76b53-45b9-47ab-9fb3-b7a0f528da80" + "NORTHCENTRALUS:20160220T151642Z:d9f298ae-0f46-4f25-bd85-a41e020f134e" ], "Date": [ - "Tue, 16 Feb 2016 14:02:25 GMT" + "Sat, 20 Feb 2016 15:16:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/3fc0acb1-7347-42b0-96c2-4a3e8ecbe125?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2ZjMGFjYjEtNzM0Ny00MmIwLTk2YzItNGEzZThlY2JlMTI1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/39db0a95-f4c7-4b1c-aadf-7c46577b6ef1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMzlkYjBhOTUtZjRjNy00YjFjLWFhZGYtN2M0NjU3N2I2ZWYxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4273,10 +4438,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"3fc0acb1-7347-42b0-96c2-4a3e8ecbe125\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-02-16T15:01:25.4175126+01:00\",\r\n \"endTime\": \"2016-02-16T15:02:46.058158+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"39db0a95-f4c7-4b1c-aadf-7c46577b6ef1\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-02-20T16:15:40.7903479+01:00\",\r\n \"endTime\": \"2016-02-20T16:17:08.1653661+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "190" + "191" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4291,10 +4456,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_131004081538642245" ], "x-ms-request-id": [ - "b3f21a75-43ee-4f95-a081-35d64073d430" + "865fa333-8977-4e06-ac4a-8b621600293f" ], "Cache-Control": [ "no-cache" @@ -4304,23 +4469,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14730" + "14941" ], "x-ms-correlation-request-id": [ - "615ffb68-590f-4336-bbc3-404cefeb2f1d" + "90082269-3188-4884-b9f9-60ea38307998" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T140256Z:615ffb68-590f-4336-bbc3-404cefeb2f1d" + "NORTHCENTRALUS:20160220T151712Z:90082269-3188-4884-b9f9-60ea38307998" ], "Date": [ - "Tue, 16 Feb 2016 14:02:55 GMT" + "Sat, 20 Feb 2016 15:17:11 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourcegroups/crptestps3457?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczM0NTc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourcegroups/crptestps8777?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlZ3JvdXBzL2NycHRlc3Rwczg3Nzc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -4343,16 +4508,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1196" ], "x-ms-request-id": [ - "799c55a5-f9a9-4ede-85d4-f00679cae7be" + "1535936b-199e-4dcd-8df0-5553ada1d7e9" ], "x-ms-correlation-request-id": [ - "799c55a5-f9a9-4ede-85d4-f00679cae7be" + "1535936b-199e-4dcd-8df0-5553ada1d7e9" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T140258Z:799c55a5-f9a9-4ede-85d4-f00679cae7be" + "NORTHCENTRALUS:20160220T151715Z:1535936b-199e-4dcd-8df0-5553ada1d7e9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4361,17 +4526,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 14:02:57 GMT" + "Sat, 20 Feb 2016 15:17:15 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4Nzc3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TkRVM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4Nzc3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TnpjM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4397,16 +4562,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14836" + "14936" ], "x-ms-request-id": [ - "15f26ca6-2fb7-4b9b-bfb7-1ab3435156ca" + "a077ab19-164a-4d16-b185-329982280c1b" ], "x-ms-correlation-request-id": [ - "15f26ca6-2fb7-4b9b-bfb7-1ab3435156ca" + "a077ab19-164a-4d16-b185-329982280c1b" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T140258Z:15f26ca6-2fb7-4b9b-bfb7-1ab3435156ca" + "NORTHCENTRALUS:20160220T151716Z:a077ab19-164a-4d16-b185-329982280c1b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4415,17 +4580,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 14:02:57 GMT" + "Sat, 20 Feb 2016 15:17:16 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4Nzc3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TkRVM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4Nzc3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TnpjM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4451,16 +4616,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14835" + "14935" ], "x-ms-request-id": [ - "b6d436db-85f2-4fe1-a7d4-136e7f05778c" + "f2c2e526-171b-4183-a819-8191deb2d4f2" ], "x-ms-correlation-request-id": [ - "b6d436db-85f2-4fe1-a7d4-136e7f05778c" + "f2c2e526-171b-4183-a819-8191deb2d4f2" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T140313Z:b6d436db-85f2-4fe1-a7d4-136e7f05778c" + "NORTHCENTRALUS:20160220T151732Z:f2c2e526-171b-4183-a819-8191deb2d4f2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4469,17 +4634,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 14:03:12 GMT" + "Sat, 20 Feb 2016 15:17:32 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4Nzc3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TkRVM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4Nzc3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TnpjM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4505,16 +4670,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14834" + "14934" ], "x-ms-request-id": [ - "4982189a-5320-4255-baec-9f8e14d0e9ff" + "a65357a2-937a-4f8f-8ca5-a8bf2b456570" ], "x-ms-correlation-request-id": [ - "4982189a-5320-4255-baec-9f8e14d0e9ff" + "a65357a2-937a-4f8f-8ca5-a8bf2b456570" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T140328Z:4982189a-5320-4255-baec-9f8e14d0e9ff" + "NORTHCENTRALUS:20160220T151748Z:a65357a2-937a-4f8f-8ca5-a8bf2b456570" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4523,17 +4688,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 14:03:27 GMT" + "Sat, 20 Feb 2016 15:17:48 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4Nzc3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TkRVM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4Nzc3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TnpjM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4559,16 +4724,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14832" + "14933" ], "x-ms-request-id": [ - "76b74dfc-6e91-4390-aca4-4a7b392cd843" + "1351e374-e4be-4c60-b695-6479c11841e1" ], "x-ms-correlation-request-id": [ - "76b74dfc-6e91-4390-aca4-4a7b392cd843" + "1351e374-e4be-4c60-b695-6479c11841e1" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T140343Z:76b74dfc-6e91-4390-aca4-4a7b392cd843" + "NORTHCENTRALUS:20160220T151804Z:1351e374-e4be-4c60-b695-6479c11841e1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4577,17 +4742,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 14:03:43 GMT" + "Sat, 20 Feb 2016 15:18:03 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4Nzc3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TkRVM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4Nzc3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TnpjM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4613,16 +4778,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14830" + "14932" ], "x-ms-request-id": [ - "60a27f3d-93de-4e9c-96b3-9e858c96b299" + "4542a9fb-b516-49b3-8522-e6e5b85664be" ], "x-ms-correlation-request-id": [ - "60a27f3d-93de-4e9c-96b3-9e858c96b299" + "4542a9fb-b516-49b3-8522-e6e5b85664be" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T140359Z:60a27f3d-93de-4e9c-96b3-9e858c96b299" + "NORTHCENTRALUS:20160220T151819Z:4542a9fb-b516-49b3-8522-e6e5b85664be" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4631,17 +4796,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 14:03:58 GMT" + "Sat, 20 Feb 2016 15:18:19 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4Nzc3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TkRVM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4Nzc3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TnpjM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4667,16 +4832,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14829" + "14931" ], "x-ms-request-id": [ - "02c8c8a9-784f-49f3-9fe1-4dc4b3c1fb6f" + "a6f07fd0-dca7-42c9-bf04-f97eb1b45b20" ], "x-ms-correlation-request-id": [ - "02c8c8a9-784f-49f3-9fe1-4dc4b3c1fb6f" + "a6f07fd0-dca7-42c9-bf04-f97eb1b45b20" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T140414Z:02c8c8a9-784f-49f3-9fe1-4dc4b3c1fb6f" + "NORTHCENTRALUS:20160220T151835Z:a6f07fd0-dca7-42c9-bf04-f97eb1b45b20" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4685,17 +4850,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 14:04:13 GMT" + "Sat, 20 Feb 2016 15:18:35 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4Nzc3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TkRVM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4Nzc3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TnpjM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4721,16 +4886,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14828" + "14930" ], "x-ms-request-id": [ - "b8186c3e-7720-48bc-bb00-3eeb6237a645" + "8e2b3f1d-5a8d-4711-814f-eaf94825b899" ], "x-ms-correlation-request-id": [ - "b8186c3e-7720-48bc-bb00-3eeb6237a645" + "8e2b3f1d-5a8d-4711-814f-eaf94825b899" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T140429Z:b8186c3e-7720-48bc-bb00-3eeb6237a645" + "NORTHCENTRALUS:20160220T151850Z:8e2b3f1d-5a8d-4711-814f-eaf94825b899" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4739,17 +4904,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 14:04:29 GMT" + "Sat, 20 Feb 2016 15:18:49 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4Nzc3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TkRVM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4Nzc3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TnpjM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4775,16 +4940,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14827" + "14929" ], "x-ms-request-id": [ - "aa9f7833-8c01-422f-92d5-c7b332d60d2f" + "198657e2-3bac-4f81-8f16-967d608f56d6" ], "x-ms-correlation-request-id": [ - "aa9f7833-8c01-422f-92d5-c7b332d60d2f" + "198657e2-3bac-4f81-8f16-967d608f56d6" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T140444Z:aa9f7833-8c01-422f-92d5-c7b332d60d2f" + "NORTHCENTRALUS:20160220T151905Z:198657e2-3bac-4f81-8f16-967d608f56d6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4793,17 +4958,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 14:04:43 GMT" + "Sat, 20 Feb 2016 15:19:04 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4Nzc3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TkRVM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4Nzc3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TnpjM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4829,16 +4994,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14826" + "14928" ], "x-ms-request-id": [ - "a3df6ed3-4d33-4bf6-a1f1-0562a309564d" + "7b21c240-819f-4e4c-97a0-eb3f00cb275a" ], "x-ms-correlation-request-id": [ - "a3df6ed3-4d33-4bf6-a1f1-0562a309564d" + "7b21c240-819f-4e4c-97a0-eb3f00cb275a" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T140459Z:a3df6ed3-4d33-4bf6-a1f1-0562a309564d" + "NORTHCENTRALUS:20160220T151922Z:7b21c240-819f-4e4c-97a0-eb3f00cb275a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4847,17 +5012,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 14:04:58 GMT" + "Sat, 20 Feb 2016 15:19:21 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4Nzc3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TkRVM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4Nzc3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TnpjM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4883,16 +5048,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14840" + "14927" ], "x-ms-request-id": [ - "8d2a9390-21f4-4665-81ff-d79864cb7277" + "40033245-f625-485b-a2e4-eedf4f4c5580" ], "x-ms-correlation-request-id": [ - "8d2a9390-21f4-4665-81ff-d79864cb7277" + "40033245-f625-485b-a2e4-eedf4f4c5580" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T140514Z:8d2a9390-21f4-4665-81ff-d79864cb7277" + "NORTHCENTRALUS:20160220T151937Z:40033245-f625-485b-a2e4-eedf4f4c5580" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4901,17 +5066,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 14:05:14 GMT" + "Sat, 20 Feb 2016 15:19:36 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4Nzc3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TkRVM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4Nzc3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TnpjM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4937,16 +5102,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14839" + "14925" ], "x-ms-request-id": [ - "f90a48aa-df4f-4d52-8ebf-4ad91657de7a" + "d0fd7aa2-6f9a-4f2f-8687-a53ec8d12221" ], "x-ms-correlation-request-id": [ - "f90a48aa-df4f-4d52-8ebf-4ad91657de7a" + "d0fd7aa2-6f9a-4f2f-8687-a53ec8d12221" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T140530Z:f90a48aa-df4f-4d52-8ebf-4ad91657de7a" + "NORTHCENTRALUS:20160220T151952Z:d0fd7aa2-6f9a-4f2f-8687-a53ec8d12221" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4955,17 +5120,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 14:05:29 GMT" + "Sat, 20 Feb 2016 15:19:52 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4Nzc3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TkRVM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4Nzc3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TnpjM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4991,16 +5156,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14837" + "14938" ], "x-ms-request-id": [ - "4dda11a7-4611-4726-ad85-80bceefa9dcc" + "f39b1ba9-b1b8-4150-980b-7ec060e885d4" ], "x-ms-correlation-request-id": [ - "4dda11a7-4611-4726-ad85-80bceefa9dcc" + "f39b1ba9-b1b8-4150-980b-7ec060e885d4" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T140545Z:4dda11a7-4611-4726-ad85-80bceefa9dcc" + "NORTHCENTRALUS:20160220T152007Z:f39b1ba9-b1b8-4150-980b-7ec060e885d4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5009,17 +5174,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 14:05:44 GMT" + "Sat, 20 Feb 2016 15:20:07 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4Nzc3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TkRVM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4Nzc3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TnpjM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5045,16 +5210,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14836" + "14937" ], "x-ms-request-id": [ - "dd8ea004-acaa-45d8-8012-8c3606b02839" + "68e662ec-5517-44a3-8557-e59570027e2f" ], "x-ms-correlation-request-id": [ - "dd8ea004-acaa-45d8-8012-8c3606b02839" + "68e662ec-5517-44a3-8557-e59570027e2f" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T140600Z:dd8ea004-acaa-45d8-8012-8c3606b02839" + "NORTHCENTRALUS:20160220T152023Z:68e662ec-5517-44a3-8557-e59570027e2f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5063,17 +5228,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 14:06:00 GMT" + "Sat, 20 Feb 2016 15:20:23 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4Nzc3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TkRVM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4Nzc3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TnpjM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5099,16 +5264,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14835" + "14936" ], "x-ms-request-id": [ - "0e52eb85-0d02-436d-b163-bc6284bc87c5" + "a2316ec4-652f-4c3f-8c77-b9ca8e1d10e0" ], "x-ms-correlation-request-id": [ - "0e52eb85-0d02-436d-b163-bc6284bc87c5" + "a2316ec4-652f-4c3f-8c77-b9ca8e1d10e0" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T140615Z:0e52eb85-0d02-436d-b163-bc6284bc87c5" + "NORTHCENTRALUS:20160220T152038Z:a2316ec4-652f-4c3f-8c77-b9ca8e1d10e0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5117,17 +5282,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 14:06:14 GMT" + "Sat, 20 Feb 2016 15:20:38 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4Nzc3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TkRVM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4Nzc3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TnpjM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5153,16 +5318,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14834" + "14935" ], "x-ms-request-id": [ - "f4c12674-1017-4f50-a47b-fdb2da2c9623" + "809bb7fc-38bb-48de-9689-7a78de96b008" ], "x-ms-correlation-request-id": [ - "f4c12674-1017-4f50-a47b-fdb2da2c9623" + "809bb7fc-38bb-48de-9689-7a78de96b008" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T140630Z:f4c12674-1017-4f50-a47b-fdb2da2c9623" + "NORTHCENTRALUS:20160220T152054Z:809bb7fc-38bb-48de-9689-7a78de96b008" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5171,17 +5336,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 14:06:30 GMT" + "Sat, 20 Feb 2016 15:20:54 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4Nzc3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TkRVM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4Nzc3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TnpjM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5207,16 +5372,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14833" + "14934" ], "x-ms-request-id": [ - "9d1f3a10-4b1b-48fb-8458-86f47f3d0086" + "5c14058c-cb80-4d5c-ba66-af13f4b9bebe" ], "x-ms-correlation-request-id": [ - "9d1f3a10-4b1b-48fb-8458-86f47f3d0086" + "5c14058c-cb80-4d5c-ba66-af13f4b9bebe" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T140645Z:9d1f3a10-4b1b-48fb-8458-86f47f3d0086" + "NORTHCENTRALUS:20160220T152110Z:5c14058c-cb80-4d5c-ba66-af13f4b9bebe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5225,17 +5390,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 14:06:45 GMT" + "Sat, 20 Feb 2016 15:21:09 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4Nzc3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TkRVM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4Nzc3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TnpjM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5261,16 +5426,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14831" + "14933" ], "x-ms-request-id": [ - "c4120ebb-75f1-4dd5-9383-399019059fd1" + "92ce9433-61d2-4336-89f0-8460c1866d50" ], "x-ms-correlation-request-id": [ - "c4120ebb-75f1-4dd5-9383-399019059fd1" + "92ce9433-61d2-4336-89f0-8460c1866d50" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T140701Z:c4120ebb-75f1-4dd5-9383-399019059fd1" + "NORTHCENTRALUS:20160220T152125Z:92ce9433-61d2-4336-89f0-8460c1866d50" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5279,17 +5444,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 14:07:00 GMT" + "Sat, 20 Feb 2016 15:21:24 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4Nzc3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TkRVM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4Nzc3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TnpjM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5315,16 +5480,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14830" + "14932" ], "x-ms-request-id": [ - "7ac9fa2f-79a8-42f2-bb93-2a72531bd566" + "7ce4670b-6b90-4ddf-a44c-54fe1ce31ec8" ], "x-ms-correlation-request-id": [ - "7ac9fa2f-79a8-42f2-bb93-2a72531bd566" + "7ce4670b-6b90-4ddf-a44c-54fe1ce31ec8" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T140716Z:7ac9fa2f-79a8-42f2-bb93-2a72531bd566" + "NORTHCENTRALUS:20160220T152141Z:7ce4670b-6b90-4ddf-a44c-54fe1ce31ec8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5333,17 +5498,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 14:07:15 GMT" + "Sat, 20 Feb 2016 15:21:40 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4Nzc3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TkRVM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4Nzc3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TnpjM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5369,16 +5534,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14828" + "14931" ], "x-ms-request-id": [ - "12680434-1bd8-47b5-b56c-57bd690e4726" + "d58b87a1-0cd7-4ea8-9e0b-5e99f75b41e9" ], "x-ms-correlation-request-id": [ - "12680434-1bd8-47b5-b56c-57bd690e4726" + "d58b87a1-0cd7-4ea8-9e0b-5e99f75b41e9" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T140731Z:12680434-1bd8-47b5-b56c-57bd690e4726" + "NORTHCENTRALUS:20160220T152156Z:d58b87a1-0cd7-4ea8-9e0b-5e99f75b41e9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5387,17 +5552,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 14:07:31 GMT" + "Sat, 20 Feb 2016 15:21:56 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4Nzc3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TkRVM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4Nzc3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TnpjM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5423,16 +5588,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14826" + "14930" ], "x-ms-request-id": [ - "a73f1c47-893d-4d15-8ede-0e2af1abe5ad" + "05577792-3c4e-473a-9420-73dfd205c777" ], "x-ms-correlation-request-id": [ - "a73f1c47-893d-4d15-8ede-0e2af1abe5ad" + "05577792-3c4e-473a-9420-73dfd205c777" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T140746Z:a73f1c47-893d-4d15-8ede-0e2af1abe5ad" + "NORTHCENTRALUS:20160220T152211Z:05577792-3c4e-473a-9420-73dfd205c777" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5441,17 +5606,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 14:07:46 GMT" + "Sat, 20 Feb 2016 15:22:11 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4Nzc3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TkRVM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4Nzc3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TnpjM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5477,16 +5642,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14825" + "14928" ], "x-ms-request-id": [ - "c9e63c86-abed-4148-b636-c259cf49404a" + "c30ebd3b-6688-4091-8dcd-3d01a7200ae2" ], "x-ms-correlation-request-id": [ - "c9e63c86-abed-4148-b636-c259cf49404a" + "c30ebd3b-6688-4091-8dcd-3d01a7200ae2" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T140801Z:c9e63c86-abed-4148-b636-c259cf49404a" + "NORTHCENTRALUS:20160220T152227Z:c30ebd3b-6688-4091-8dcd-3d01a7200ae2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5495,17 +5660,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 14:08:01 GMT" + "Sat, 20 Feb 2016 15:22:26 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4Nzc3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TkRVM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4Nzc3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TnpjM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5531,16 +5696,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14823" + "14927" ], "x-ms-request-id": [ - "55306dc6-1727-4bbe-84eb-01e0346b6717" + "7d6fb180-604f-47cb-ad14-7a08d9ece4e5" ], "x-ms-correlation-request-id": [ - "55306dc6-1727-4bbe-84eb-01e0346b6717" + "7d6fb180-604f-47cb-ad14-7a08d9ece4e5" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T140816Z:55306dc6-1727-4bbe-84eb-01e0346b6717" + "NORTHCENTRALUS:20160220T152242Z:7d6fb180-604f-47cb-ad14-7a08d9ece4e5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5549,17 +5714,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 14:08:16 GMT" + "Sat, 20 Feb 2016 15:22:41 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4Nzc3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TkRVM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4Nzc3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TnpjM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5585,16 +5750,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14822" + "14926" ], "x-ms-request-id": [ - "55ba65c7-8277-40ea-9b4d-9b54ceaed5a9" + "8f1d60f7-b3d5-4237-9a2e-946c6105fc7b" ], "x-ms-correlation-request-id": [ - "55ba65c7-8277-40ea-9b4d-9b54ceaed5a9" + "8f1d60f7-b3d5-4237-9a2e-946c6105fc7b" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T140832Z:55ba65c7-8277-40ea-9b4d-9b54ceaed5a9" + "NORTHCENTRALUS:20160220T152257Z:8f1d60f7-b3d5-4237-9a2e-946c6105fc7b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5603,17 +5768,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 14:08:31 GMT" + "Sat, 20 Feb 2016 15:22:56 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4Nzc3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TkRVM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4Nzc3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TnpjM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5639,16 +5804,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14820" + "14925" ], "x-ms-request-id": [ - "ab965460-2add-445f-882b-5702d6ea815c" + "428be386-3110-43ba-be79-668829509171" ], "x-ms-correlation-request-id": [ - "ab965460-2add-445f-882b-5702d6ea815c" + "428be386-3110-43ba-be79-668829509171" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T140847Z:ab965460-2add-445f-882b-5702d6ea815c" + "NORTHCENTRALUS:20160220T152313Z:428be386-3110-43ba-be79-668829509171" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5657,17 +5822,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 14:08:46 GMT" + "Sat, 20 Feb 2016 15:23:12 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4Nzc3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TkRVM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4Nzc3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TnpjM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5693,16 +5858,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14818" + "14924" ], "x-ms-request-id": [ - "5169f118-c4b9-4054-8078-63517dcfa313" + "ef628bc8-f4e6-4930-940a-03d88faf4ca5" ], "x-ms-correlation-request-id": [ - "5169f118-c4b9-4054-8078-63517dcfa313" + "ef628bc8-f4e6-4930-940a-03d88faf4ca5" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T140902Z:5169f118-c4b9-4054-8078-63517dcfa313" + "NORTHCENTRALUS:20160220T152328Z:ef628bc8-f4e6-4930-940a-03d88faf4ca5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5711,17 +5876,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 14:09:02 GMT" + "Sat, 20 Feb 2016 15:23:27 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4Nzc3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TkRVM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4Nzc3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TnpjM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5747,16 +5912,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14814" + "14923" ], "x-ms-request-id": [ - "e3dcb3bf-405f-484c-a072-5786ea67434a" + "0d11c260-620d-44b9-a91b-8bf3dbc6bb88" ], "x-ms-correlation-request-id": [ - "e3dcb3bf-405f-484c-a072-5786ea67434a" + "0d11c260-620d-44b9-a91b-8bf3dbc6bb88" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T140917Z:e3dcb3bf-405f-484c-a072-5786ea67434a" + "NORTHCENTRALUS:20160220T152344Z:0d11c260-620d-44b9-a91b-8bf3dbc6bb88" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5765,17 +5930,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 14:09:16 GMT" + "Sat, 20 Feb 2016 15:23:43 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4Nzc3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNDU3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TkRVM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4Nzc3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TnpjM0xVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5798,16 +5963,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14812" + "14922" ], "x-ms-request-id": [ - "c66507eb-e577-4ed0-80a0-389a4591ff88" + "f5247e8e-7fc8-4298-9bd5-a8a471e38f25" ], "x-ms-correlation-request-id": [ - "c66507eb-e577-4ed0-80a0-389a4591ff88" + "f5247e8e-7fc8-4298-9bd5-a8a471e38f25" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T140932Z:c66507eb-e577-4ed0-80a0-389a4591ff88" + "NORTHCENTRALUS:20160220T152359Z:f5247e8e-7fc8-4298-9bd5-a8a471e38f25" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5816,7 +5981,7 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 14:09:32 GMT" + "Sat, 20 Feb 2016 15:23:58 GMT" ] }, "StatusCode": 200 @@ -5824,10 +5989,10 @@ ], "Names": { "Test-AEMExtensionBasicLinux": [ - "crptestps3457" + "crptestps8777" ] }, "Variables": { - "SubscriptionId": "acf8322c-ac5c-4cbd-8907-5f5920784774" + "SubscriptionId": "e663cc2d-722b-4be1-b636-bbd9e4c60fd9" } } \ No newline at end of file diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.AEMExtensionTests/TestAEMExtensionBasicWindows.json b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.AEMExtensionTests/TestAEMExtensionBasicWindows.json index 41e05701c247..62e58a7d9ac7 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.AEMExtensionTests/TestAEMExtensionBasicWindows.json +++ b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.AEMExtensionTests/TestAEMExtensionBasicWindows.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute?api-version=2014-04-01-preview", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute?api-version=2014-04-01-preview", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", @@ -10,7 +10,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Length": [ "5199" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14818" + "14958" ], "x-ms-request-id": [ - "c1411a76-510e-44b5-bf90-43efa55cffb9" + "5a6f3f54-3217-47aa-9321-efe3e74e5986" ], "x-ms-correlation-request-id": [ - "c1411a76-510e-44b5-bf90-43efa55cffb9" + "5a6f3f54-3217-47aa-9321-efe3e74e5986" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T151351Z:c1411a76-510e-44b5-bf90-43efa55cffb9" + "NORTHCENTRALUS:20160222T095744Z:5a6f3f54-3217-47aa-9321-efe3e74e5986" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,14 +43,14 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 15:13:50 GMT" + "Mon, 22 Feb 2016 09:57:43 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourcegroups/crptestps2691?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczI2OTE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourcegroups/crptestps9762?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlZ3JvdXBzL2NycHRlc3Rwczk3NjI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -76,16 +76,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14817" + "14957" ], "x-ms-request-id": [ - "670b558d-78f4-4043-a625-258fc9f865f7" + "6549c0eb-a5de-4828-af83-ef25f91c9d59" ], "x-ms-correlation-request-id": [ - "670b558d-78f4-4043-a625-258fc9f865f7" + "6549c0eb-a5de-4828-af83-ef25f91c9d59" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T151351Z:670b558d-78f4-4043-a625-258fc9f865f7" + "NORTHCENTRALUS:20160222T095744Z:6549c0eb-a5de-4828-af83-ef25f91c9d59" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -94,14 +94,14 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 15:13:50 GMT" + "Mon, 22 Feb 2016 09:57:43 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourcegroups/crptestps2691?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczI2OTE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourcegroups/crptestps9762?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlZ3JvdXBzL2NycHRlc3Rwczk3NjI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -121,16 +121,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14343" + "14963" ], "x-ms-request-id": [ - "72a121e7-6096-4b70-a124-4697288b9348" + "d1bce16b-84c0-494d-9c0d-8a25736b151e" ], "x-ms-correlation-request-id": [ - "72a121e7-6096-4b70-a124-4697288b9348" + "d1bce16b-84c0-494d-9c0d-8a25736b151e" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T160226Z:72a121e7-6096-4b70-a124-4697288b9348" + "NORTHCENTRALUS:20160222T102100Z:d1bce16b-84c0-494d-9c0d-8a25736b151e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -139,14 +139,14 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 16:02:25 GMT" + "Mon, 22 Feb 2016 10:21:00 GMT" ] }, "StatusCode": 204 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourcegroups/crptestps2691?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczI2OTE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourcegroups/crptestps9762?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlZ3JvdXBzL2NycHRlc3Rwczk3NjI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { @@ -160,7 +160,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691\",\r\n \"name\": \"crptestps2691\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762\",\r\n \"name\": \"crptestps9762\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "179" @@ -175,16 +175,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-request-id": [ - "6a66fb3d-58b6-4215-b781-bc7fd7112b9e" + "a5c232ca-785d-4f8f-b07a-f4a3f96ab9d4" ], "x-ms-correlation-request-id": [ - "6a66fb3d-58b6-4215-b781-bc7fd7112b9e" + "a5c232ca-785d-4f8f-b07a-f4a3f96ab9d4" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T151352Z:6a66fb3d-58b6-4215-b781-bc7fd7112b9e" + "NORTHCENTRALUS:20160222T095745Z:a5c232ca-785d-4f8f-b07a-f4a3f96ab9d4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -193,14 +193,14 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 15:13:51 GMT" + "Mon, 22 Feb 2016 09:57:44 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTEvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczk3NjIvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -223,16 +223,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14816" + "14956" ], "x-ms-request-id": [ - "100e3e43-10a2-40e2-99db-fafe98c33d84" + "31e49e1a-0b2b-4316-a6a1-f6b5a9fa8a8a" ], "x-ms-correlation-request-id": [ - "100e3e43-10a2-40e2-99db-fafe98c33d84" + "31e49e1a-0b2b-4316-a6a1-f6b5a9fa8a8a" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T151352Z:100e3e43-10a2-40e2-99db-fafe98c33d84" + "NORTHCENTRALUS:20160222T095745Z:31e49e1a-0b2b-4316-a6a1-f6b5a9fa8a8a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -241,19 +241,19 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 15:13:52 GMT" + "Mon, 22 Feb 2016 09:57:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/virtualnetworks/vnetcrptestps2691?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzMjY5MT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Network/virtualnetworks/vnetcrptestps9762?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczk3NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzOTc2Mj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "36ae3835-7f5e-46d4-aa89-163b4b720d63" + "1bc29097-bf3d-4d53-9820-fcd18ba31121" ], "accept-language": [ "en-US" @@ -262,7 +262,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/vnetcrptestps2691' under resource group 'crptestps2691' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/vnetcrptestps9762' under resource group 'crptestps9762' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "168" @@ -280,13 +280,13 @@ "gateway" ], "x-ms-request-id": [ - "49148b40-5136-4b6f-8f40-0d24447d5639" + "aff88ed2-adb2-42b7-b2b9-98a35cfe2678" ], "x-ms-correlation-request-id": [ - "49148b40-5136-4b6f-8f40-0d24447d5639" + "aff88ed2-adb2-42b7-b2b9-98a35cfe2678" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T151354Z:49148b40-5136-4b6f-8f40-0d24447d5639" + "NORTHCENTRALUS:20160222T095747Z:aff88ed2-adb2-42b7-b2b9-98a35cfe2678" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -295,14 +295,14 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 15:13:53 GMT" + "Mon, 22 Feb 2016 09:57:46 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/virtualnetworks/vnetcrptestps2691?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzMjY5MT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Network/virtualnetworks/vnetcrptestps9762?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczk3NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzOTc2Mj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -310,7 +310,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetcrptestps2691\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/virtualNetworks/vnetcrptestps2691\",\r\n \"etag\": \"W/\\\"26b95c7e-92d6-4836-87d9-2c9e4475e2fd\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c7052896-9c9b-4d0f-b2ef-6e9ab05704ff\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps2691\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/virtualNetworks/vnetcrptestps2691/subnets/subnetcrptestps2691\",\r\n \"etag\": \"W/\\\"26b95c7e-92d6-4836-87d9-2c9e4475e2fd\\\"\",\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}", + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps9762\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Network/virtualNetworks/vnetcrptestps9762\",\r\n \"etag\": \"W/\\\"4dda27f1-0e80-47c6-89b8-ceb6b0860146\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0fee155e-e335-4302-843f-150d0b074ac8\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps9762\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Network/virtualNetworks/vnetcrptestps9762/subnets/subnetcrptestps9762\",\r\n \"etag\": \"W/\\\"4dda27f1-0e80-47c6-89b8-ceb6b0860146\\\"\",\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}", "ResponseHeaders": { "Content-Length": [ "994" @@ -325,7 +325,7 @@ "no-cache" ], "x-ms-request-id": [ - "2b1762aa-04f1-4418-ba2a-24ade60d4d50" + "5746febf-a68f-42ea-aa63-189e1e08a715" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,35 +334,35 @@ "no-cache" ], "ETag": [ - "W/\"26b95c7e-92d6-4836-87d9-2c9e4475e2fd\"" + "W/\"4dda27f1-0e80-47c6-89b8-ceb6b0860146\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14841" + "14937" ], "x-ms-correlation-request-id": [ - "612016d4-d1e1-4966-be28-1d200ba57a74" + "558cad1f-2c4a-45cc-a190-0ceee8a59bf2" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T151406Z:612016d4-d1e1-4966-be28-1d200ba57a74" + "NORTHCENTRALUS:20160222T095819Z:558cad1f-2c4a-45cc-a190-0ceee8a59bf2" ], "Date": [ - "Tue, 16 Feb 2016 15:14:05 GMT" + "Mon, 22 Feb 2016 09:58:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/virtualnetworks/vnetcrptestps2691?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzMjY5MT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Network/virtualnetworks/vnetcrptestps9762?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczk3NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzOTc2Mj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6f07af56-8a5b-4016-9e7b-03994231df94" + "36cf0ea6-37af-4d7f-9cee-70dac89ec1df" ], "accept-language": [ "en-US" @@ -371,7 +371,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetcrptestps2691\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/virtualNetworks/vnetcrptestps2691\",\r\n \"etag\": \"W/\\\"26b95c7e-92d6-4836-87d9-2c9e4475e2fd\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c7052896-9c9b-4d0f-b2ef-6e9ab05704ff\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps2691\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/virtualNetworks/vnetcrptestps2691/subnets/subnetcrptestps2691\",\r\n \"etag\": \"W/\\\"26b95c7e-92d6-4836-87d9-2c9e4475e2fd\\\"\",\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}", + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps9762\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Network/virtualNetworks/vnetcrptestps9762\",\r\n \"etag\": \"W/\\\"4dda27f1-0e80-47c6-89b8-ceb6b0860146\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0fee155e-e335-4302-843f-150d0b074ac8\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps9762\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Network/virtualNetworks/vnetcrptestps9762/subnets/subnetcrptestps9762\",\r\n \"etag\": \"W/\\\"4dda27f1-0e80-47c6-89b8-ceb6b0860146\\\"\",\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}", "ResponseHeaders": { "Content-Length": [ "994" @@ -386,7 +386,7 @@ "no-cache" ], "x-ms-request-id": [ - "c35cc692-0eae-4a28-a87c-ddddd0998f9c" + "ab5fee64-2bb6-4dbb-a2af-3e2cad1d31cb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -395,35 +395,35 @@ "no-cache" ], "ETag": [ - "W/\"26b95c7e-92d6-4836-87d9-2c9e4475e2fd\"" + "W/\"4dda27f1-0e80-47c6-89b8-ceb6b0860146\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14840" + "14936" ], "x-ms-correlation-request-id": [ - "f378b51f-660c-49c5-a406-287ccd618116" + "4bfff9eb-c5d4-4b5a-9bcd-009844ac7ffc" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T151406Z:f378b51f-660c-49c5-a406-287ccd618116" + "NORTHCENTRALUS:20160222T095820Z:4bfff9eb-c5d4-4b5a-9bcd-009844ac7ffc" ], "Date": [ - "Tue, 16 Feb 2016 15:14:06 GMT" + "Mon, 22 Feb 2016 09:58:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/virtualnetworks/vnetcrptestps2691?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzMjY5MT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Network/virtualnetworks/vnetcrptestps9762?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczk3NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzOTc2Mj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "995d7feb-919f-4178-b2a3-7a1c572b2e08" + "2e8600f6-1c74-43bf-86d7-92f79d1f2238" ], "accept-language": [ "en-US" @@ -432,7 +432,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetcrptestps2691\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/virtualNetworks/vnetcrptestps2691\",\r\n \"etag\": \"W/\\\"26b95c7e-92d6-4836-87d9-2c9e4475e2fd\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c7052896-9c9b-4d0f-b2ef-6e9ab05704ff\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps2691\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/virtualNetworks/vnetcrptestps2691/subnets/subnetcrptestps2691\",\r\n \"etag\": \"W/\\\"26b95c7e-92d6-4836-87d9-2c9e4475e2fd\\\"\",\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}", + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps9762\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Network/virtualNetworks/vnetcrptestps9762\",\r\n \"etag\": \"W/\\\"4dda27f1-0e80-47c6-89b8-ceb6b0860146\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0fee155e-e335-4302-843f-150d0b074ac8\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps9762\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Network/virtualNetworks/vnetcrptestps9762/subnets/subnetcrptestps9762\",\r\n \"etag\": \"W/\\\"4dda27f1-0e80-47c6-89b8-ceb6b0860146\\\"\",\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}", "ResponseHeaders": { "Content-Length": [ "994" @@ -447,7 +447,7 @@ "no-cache" ], "x-ms-request-id": [ - "5f756212-33cc-40e3-bf50-cad71851d643" + "cc7fee24-3e83-4a77-95f7-eb5b379549b0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -456,32 +456,32 @@ "no-cache" ], "ETag": [ - "W/\"26b95c7e-92d6-4836-87d9-2c9e4475e2fd\"" + "W/\"4dda27f1-0e80-47c6-89b8-ceb6b0860146\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14839" + "14935" ], "x-ms-correlation-request-id": [ - "692fd296-8d70-44e1-ac93-9446b9c69ffd" + "73758c34-792c-4ff3-8552-0474a924a6fa" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T151406Z:692fd296-8d70-44e1-ac93-9446b9c69ffd" + "NORTHCENTRALUS:20160222T095820Z:73758c34-792c-4ff3-8552-0474a924a6fa" ], "Date": [ - "Tue, 16 Feb 2016 15:14:06 GMT" + "Mon, 22 Feb 2016 09:58:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/virtualnetworks/vnetcrptestps2691?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzMjY5MT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Network/virtualnetworks/vnetcrptestps9762?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczk3NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzOTc2Mj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps2691\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps9762\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -490,7 +490,7 @@ "341" ], "x-ms-client-request-id": [ - "2687dbc7-6657-4e3b-8869-f3e94f902c82" + "27643988-c5a0-4872-b916-a248658ec9e8" ], "accept-language": [ "en-US" @@ -499,7 +499,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetcrptestps2691\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/virtualNetworks/vnetcrptestps2691\",\r\n \"etag\": \"W/\\\"a65db7af-c827-4886-9d3a-131f573a4425\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"c7052896-9c9b-4d0f-b2ef-6e9ab05704ff\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps2691\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/virtualNetworks/vnetcrptestps2691/subnets/subnetcrptestps2691\",\r\n \"etag\": \"W/\\\"a65db7af-c827-4886-9d3a-131f573a4425\\\"\",\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}", + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps9762\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Network/virtualNetworks/vnetcrptestps9762\",\r\n \"etag\": \"W/\\\"6e10a5e0-513e-4870-9922-06533a0fdc2f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"0fee155e-e335-4302-843f-150d0b074ac8\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps9762\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Network/virtualNetworks/vnetcrptestps9762/subnets/subnetcrptestps9762\",\r\n \"etag\": \"W/\\\"6e10a5e0-513e-4870-9922-06533a0fdc2f\\\"\",\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}", "ResponseHeaders": { "Content-Length": [ "992" @@ -517,10 +517,10 @@ "10" ], "x-ms-request-id": [ - "a473402a-cb1c-4a91-811a-f25423e9d3d9" + "840c1f64-f7d8-4856-a35c-4f91a1214c2b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Network/locations/eastus/operations/a473402a-cb1c-4a91-811a-f25423e9d3d9?api-version=2015-06-15" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Network/locations/eastus/operations/840c1f64-f7d8-4856-a35c-4f91a1214c2b?api-version=2015-06-15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -533,23 +533,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1196" ], "x-ms-correlation-request-id": [ - "a4ac6da4-f269-42d9-9655-3d3cf5c0485b" + "240fbf7d-06b5-4114-8fb1-1bd6a4f0cd76" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T151355Z:a4ac6da4-f269-42d9-9655-3d3cf5c0485b" + "NORTHCENTRALUS:20160222T095749Z:240fbf7d-06b5-4114-8fb1-1bd6a4f0cd76" ], "Date": [ - "Tue, 16 Feb 2016 15:13:54 GMT" + "Mon, 22 Feb 2016 09:57:49 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Network/locations/eastus/operations/a473402a-cb1c-4a91-811a-f25423e9d3d9?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTQ3MzQwMmEtY2IxYy00YTkxLTgxMWEtZjI1NDIzZTlkM2Q5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Network/locations/eastus/operations/840c1f64-f7d8-4856-a35c-4f91a1214c2b?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvODQwYzFmNjQtZjdkOC00ODU2LWEzNWMtNGY5MWExMjE0YzJiP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -572,7 +572,7 @@ "no-cache" ], "x-ms-request-id": [ - "9855aa1f-6763-4d16-bf8e-4eb8f09ab795" + "956e3582-488c-40da-8747-a910b2e5e7d7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -585,28 +585,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14842" + "14938" ], "x-ms-correlation-request-id": [ - "abd0218f-e555-46f7-ab71-6703209ec387" + "133da212-09ae-4fa9-a19c-d0145a13c0ef" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T151406Z:abd0218f-e555-46f7-ab71-6703209ec387" + "NORTHCENTRALUS:20160222T095819Z:133da212-09ae-4fa9-a19c-d0145a13c0ef" ], "Date": [ - "Tue, 16 Feb 2016 15:14:05 GMT" + "Mon, 22 Feb 2016 09:58:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps2691?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzMjY5MT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps9762?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczk3NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzOTc2Mj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a8441fd3-a3cb-456b-848f-c3b4ef97a11e" + "54db8d79-2fb7-4175-a9fb-abe317bb3139" ], "accept-language": [ "en-US" @@ -615,7 +615,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/pubipcrptestps2691' under resource group 'crptestps2691' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/pubipcrptestps9762' under resource group 'crptestps9762' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "171" @@ -633,13 +633,13 @@ "gateway" ], "x-ms-request-id": [ - "263e8800-bf9b-4137-9eb2-815d3e098884" + "eeab7c1d-8bd0-4172-8ca4-7ebeba26243b" ], "x-ms-correlation-request-id": [ - "263e8800-bf9b-4137-9eb2-815d3e098884" + "eeab7c1d-8bd0-4172-8ca4-7ebeba26243b" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T151407Z:263e8800-bf9b-4137-9eb2-815d3e098884" + "NORTHCENTRALUS:20160222T095820Z:eeab7c1d-8bd0-4172-8ca4-7ebeba26243b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -648,14 +648,14 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 15:14:06 GMT" + "Mon, 22 Feb 2016 09:58:20 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps2691?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzMjY5MT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps9762?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczk3NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzOTc2Mj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -663,7 +663,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pubipcrptestps2691\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps2691\",\r\n \"etag\": \"W/\\\"f9d4a38a-7d78-48ed-9054-71b1db192337\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"32e660bf-aeea-4294-bd1b-ecdb3c7cadd8\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps2691\",\r\n \"fqdn\": \"pubipcrptestps2691.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps9762\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps9762\",\r\n \"etag\": \"W/\\\"afd9788e-7697-4eca-a4ce-cffffd72f325\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ef07eb80-a090-417d-9962-97bbfadeb97d\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps9762\",\r\n \"fqdn\": \"pubipcrptestps9762.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "666" @@ -678,7 +678,7 @@ "no-cache" ], "x-ms-request-id": [ - "02a855e7-77fd-4eb7-9f1e-a7f433b7327f" + "ed25e9f4-f41b-4ae5-8fb0-86af5c0a7fa2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -687,35 +687,35 @@ "no-cache" ], "ETag": [ - "W/\"f9d4a38a-7d78-48ed-9054-71b1db192337\"" + "W/\"afd9788e-7697-4eca-a4ce-cffffd72f325\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14836" + "14932" ], "x-ms-correlation-request-id": [ - "8887f184-3843-4be8-bc1d-c0fc9e244b24" + "76e2e350-3444-412f-b1e4-a7385b809c69" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T151419Z:8887f184-3843-4be8-bc1d-c0fc9e244b24" + "NORTHCENTRALUS:20160222T095853Z:76e2e350-3444-412f-b1e4-a7385b809c69" ], "Date": [ - "Tue, 16 Feb 2016 15:14:18 GMT" + "Mon, 22 Feb 2016 09:58:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps2691?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzMjY5MT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps9762?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczk3NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzOTc2Mj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "82770257-6286-440d-a03e-0dc8e290e0f4" + "ee24e0f3-3814-45f0-a471-9a931f596355" ], "accept-language": [ "en-US" @@ -724,7 +724,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pubipcrptestps2691\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps2691\",\r\n \"etag\": \"W/\\\"f9d4a38a-7d78-48ed-9054-71b1db192337\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"32e660bf-aeea-4294-bd1b-ecdb3c7cadd8\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps2691\",\r\n \"fqdn\": \"pubipcrptestps2691.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps9762\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps9762\",\r\n \"etag\": \"W/\\\"afd9788e-7697-4eca-a4ce-cffffd72f325\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ef07eb80-a090-417d-9962-97bbfadeb97d\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps9762\",\r\n \"fqdn\": \"pubipcrptestps9762.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "666" @@ -739,7 +739,7 @@ "no-cache" ], "x-ms-request-id": [ - "05875093-8049-4b39-bfac-d20469c14225" + "aad03963-8234-4810-82e2-f8aac4ed3a12" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -748,35 +748,35 @@ "no-cache" ], "ETag": [ - "W/\"f9d4a38a-7d78-48ed-9054-71b1db192337\"" + "W/\"afd9788e-7697-4eca-a4ce-cffffd72f325\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14835" + "14931" ], "x-ms-correlation-request-id": [ - "00aa3ef2-5bdd-447d-9d6e-595220523624" + "39654479-8763-47f0-af1c-777e03a77fbe" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T151419Z:00aa3ef2-5bdd-447d-9d6e-595220523624" + "NORTHCENTRALUS:20160222T095853Z:39654479-8763-47f0-af1c-777e03a77fbe" ], "Date": [ - "Tue, 16 Feb 2016 15:14:18 GMT" + "Mon, 22 Feb 2016 09:58:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps2691?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzMjY5MT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps9762?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczk3NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzOTc2Mj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0711fea8-e936-4290-a1bc-c2f42c8d1c3a" + "fb328b1e-dea6-4cb2-b4d9-1b90c8983461" ], "accept-language": [ "en-US" @@ -785,7 +785,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pubipcrptestps2691\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps2691\",\r\n \"etag\": \"W/\\\"f9d4a38a-7d78-48ed-9054-71b1db192337\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"32e660bf-aeea-4294-bd1b-ecdb3c7cadd8\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps2691\",\r\n \"fqdn\": \"pubipcrptestps2691.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps9762\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps9762\",\r\n \"etag\": \"W/\\\"afd9788e-7697-4eca-a4ce-cffffd72f325\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ef07eb80-a090-417d-9962-97bbfadeb97d\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps9762\",\r\n \"fqdn\": \"pubipcrptestps9762.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "666" @@ -800,7 +800,7 @@ "no-cache" ], "x-ms-request-id": [ - "04cecc5c-1e10-4ac1-95c2-789c6e62cf51" + "23dbf94a-3a20-44b0-89bf-8db98e40334a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -809,32 +809,32 @@ "no-cache" ], "ETag": [ - "W/\"f9d4a38a-7d78-48ed-9054-71b1db192337\"" + "W/\"afd9788e-7697-4eca-a4ce-cffffd72f325\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14834" + "14930" ], "x-ms-correlation-request-id": [ - "c91f51ff-cd59-4fad-84aa-547becd68b5b" + "82f4320d-40e7-439f-94bd-86104cfa1ee0" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T151419Z:c91f51ff-cd59-4fad-84aa-547becd68b5b" + "NORTHCENTRALUS:20160222T095853Z:82f4320d-40e7-439f-94bd-86104cfa1ee0" ], "Date": [ - "Tue, 16 Feb 2016 15:14:19 GMT" + "Mon, 22 Feb 2016 09:58:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps2691?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzMjY5MT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps9762?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczk3NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzOTc2Mj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps2691\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps9762\"\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -843,7 +843,7 @@ "174" ], "x-ms-client-request-id": [ - "13150050-1e3f-48b6-80e4-4a351120d538" + "4506935c-7517-4e66-9cee-2372180ee934" ], "accept-language": [ "en-US" @@ -852,7 +852,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pubipcrptestps2691\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps2691\",\r\n \"etag\": \"W/\\\"503be1c5-1f7b-413c-b7f9-9815c3864988\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"32e660bf-aeea-4294-bd1b-ecdb3c7cadd8\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps2691\",\r\n \"fqdn\": \"pubipcrptestps2691.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps9762\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps9762\",\r\n \"etag\": \"W/\\\"31edf1f1-1f70-4734-95f8-3fc6633ffed0\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"ef07eb80-a090-417d-9962-97bbfadeb97d\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps9762\",\r\n \"fqdn\": \"pubipcrptestps9762.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "665" @@ -870,10 +870,10 @@ "10" ], "x-ms-request-id": [ - "bc685989-e665-43bc-a05d-9d80d6ad5fdd" + "2b9df312-65e0-4e39-8442-209de7bf4dfc" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Network/locations/eastus/operations/bc685989-e665-43bc-a05d-9d80d6ad5fdd?api-version=2015-06-15" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Network/locations/eastus/operations/2b9df312-65e0-4e39-8442-209de7bf4dfc?api-version=2015-06-15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -886,23 +886,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1195" ], "x-ms-correlation-request-id": [ - "d6a4d3f7-9ad5-4800-98a3-53b2bf37b796" + "093bc65a-12df-47d4-a58e-afd68556b7fc" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T151408Z:d6a4d3f7-9ad5-4800-98a3-53b2bf37b796" + "NORTHCENTRALUS:20160222T095822Z:093bc65a-12df-47d4-a58e-afd68556b7fc" ], "Date": [ - "Tue, 16 Feb 2016 15:14:07 GMT" + "Mon, 22 Feb 2016 09:58:22 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Network/locations/eastus/operations/bc685989-e665-43bc-a05d-9d80d6ad5fdd?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYmM2ODU5ODktZTY2NS00M2JjLWEwNWQtOWQ4MGQ2YWQ1ZmRkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Network/locations/eastus/operations/2b9df312-65e0-4e39-8442-209de7bf4dfc?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMmI5ZGYzMTItNjVlMC00ZTM5LTg0NDItMjA5ZGU3YmY0ZGZjP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -925,7 +925,7 @@ "no-cache" ], "x-ms-request-id": [ - "901838fc-d8f2-45a3-a198-7e77fe743f39" + "0e2e1aa8-d597-4cbe-8c24-5471f2cd2f19" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -938,28 +938,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14837" + "14933" ], "x-ms-correlation-request-id": [ - "1311cf8f-6f2f-4720-a950-0fe179be58bd" + "56503115-e1e0-4d8c-976c-779ee7c60f06" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T151418Z:1311cf8f-6f2f-4720-a950-0fe179be58bd" + "NORTHCENTRALUS:20160222T095853Z:56503115-e1e0-4d8c-976c-779ee7c60f06" ], "Date": [ - "Tue, 16 Feb 2016 15:14:18 GMT" + "Mon, 22 Feb 2016 09:58:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/networkInterfaces/nic0crptestps2691?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzBjcnB0ZXN0cHMyNjkxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Network/networkInterfaces/nic0crptestps9762?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczk3NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzBjcnB0ZXN0cHM5NzYyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "24a0d83a-4668-45b5-8a75-19d4bdeb0988" + "66825cc1-6bf0-4789-9a7b-146bfb64867d" ], "accept-language": [ "en-US" @@ -968,7 +968,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/nic0crptestps2691' under resource group 'crptestps2691' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/nic0crptestps9762' under resource group 'crptestps9762' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "170" @@ -986,13 +986,13 @@ "gateway" ], "x-ms-request-id": [ - "80cf63d7-9d17-4283-bae8-b4c26030bcf9" + "55c99303-8309-4d10-a2d5-d6e8313b0d43" ], "x-ms-correlation-request-id": [ - "80cf63d7-9d17-4283-bae8-b4c26030bcf9" + "55c99303-8309-4d10-a2d5-d6e8313b0d43" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T151419Z:80cf63d7-9d17-4283-bae8-b4c26030bcf9" + "NORTHCENTRALUS:20160222T095854Z:55c99303-8309-4d10-a2d5-d6e8313b0d43" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1001,19 +1001,19 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 15:14:19 GMT" + "Mon, 22 Feb 2016 09:58:53 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/networkInterfaces/nic0crptestps2691?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzBjcnB0ZXN0cHMyNjkxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Network/networkInterfaces/nic0crptestps9762?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczk3NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzBjcnB0ZXN0cHM5NzYyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0588c80d-8641-4e3e-a321-9e4ea52be9b8" + "53db3cb1-bbcf-420a-968c-547c9e433c6e" ], "accept-language": [ "en-US" @@ -1022,7 +1022,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"nic0crptestps2691\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/networkInterfaces/nic0crptestps2691\",\r\n \"etag\": \"W/\\\"5737d1f9-a306-493d-b40f-6100f06df517\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a0a24c03-d721-40ef-92ee-ebcbf3e570b3\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/networkInterfaces/nic0crptestps2691/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"5737d1f9-a306-493d-b40f-6100f06df517\\\"\",\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/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps2691\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/virtualNetworks/vnetcrptestps2691/subnets/subnetcrptestps2691\"\r\n },\r\n \"primary\": true\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic0crptestps9762\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Network/networkInterfaces/nic0crptestps9762\",\r\n \"etag\": \"W/\\\"d9577cf2-3f4d-4b3d-b731-cc201fdec9b1\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f095faa6-eb82-4a7e-a9b9-3587aa16144b\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Network/networkInterfaces/nic0crptestps9762/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"d9577cf2-3f4d-4b3d-b731-cc201fdec9b1\\\"\",\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/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps9762\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Network/virtualNetworks/vnetcrptestps9762/subnets/subnetcrptestps9762\"\r\n },\r\n \"primary\": true\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1548" @@ -1037,7 +1037,7 @@ "no-cache" ], "x-ms-request-id": [ - "00c42ccb-c16b-4c00-b4ac-8922c76d38d9" + "8a74cdaf-0439-41c5-a2fe-33f8d491391f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1046,35 +1046,35 @@ "no-cache" ], "ETag": [ - "W/\"5737d1f9-a306-493d-b40f-6100f06df517\"" + "W/\"d9577cf2-3f4d-4b3d-b731-cc201fdec9b1\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14832" + "14928" ], "x-ms-correlation-request-id": [ - "0d991e26-6a3a-4f3c-b89b-a262901ce7d5" + "8ffbff9d-8407-4e83-a7f9-3a2e7fb46d32" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T151422Z:0d991e26-6a3a-4f3c-b89b-a262901ce7d5" + "NORTHCENTRALUS:20160222T095855Z:8ffbff9d-8407-4e83-a7f9-3a2e7fb46d32" ], "Date": [ - "Tue, 16 Feb 2016 15:14:21 GMT" + "Mon, 22 Feb 2016 09:58:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/networkInterfaces/nic0crptestps2691?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzBjcnB0ZXN0cHMyNjkxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Network/networkInterfaces/nic0crptestps9762?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczk3NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzBjcnB0ZXN0cHM5NzYyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "67089845-93e5-4be9-a258-cf4b7e64321c" + "727697b7-bf63-4ae8-8085-14392b06d30e" ], "accept-language": [ "en-US" @@ -1083,7 +1083,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"nic0crptestps2691\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/networkInterfaces/nic0crptestps2691\",\r\n \"etag\": \"W/\\\"5737d1f9-a306-493d-b40f-6100f06df517\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a0a24c03-d721-40ef-92ee-ebcbf3e570b3\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/networkInterfaces/nic0crptestps2691/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"5737d1f9-a306-493d-b40f-6100f06df517\\\"\",\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/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps2691\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/virtualNetworks/vnetcrptestps2691/subnets/subnetcrptestps2691\"\r\n },\r\n \"primary\": true\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic0crptestps9762\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Network/networkInterfaces/nic0crptestps9762\",\r\n \"etag\": \"W/\\\"d9577cf2-3f4d-4b3d-b731-cc201fdec9b1\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f095faa6-eb82-4a7e-a9b9-3587aa16144b\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Network/networkInterfaces/nic0crptestps9762/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"d9577cf2-3f4d-4b3d-b731-cc201fdec9b1\\\"\",\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/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps9762\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Network/virtualNetworks/vnetcrptestps9762/subnets/subnetcrptestps9762\"\r\n },\r\n \"primary\": true\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1548" @@ -1098,7 +1098,7 @@ "no-cache" ], "x-ms-request-id": [ - "89f5e6a0-4072-48be-b074-044409c94dfb" + "91a54d7a-f96c-49ff-84d6-ebe7de82e0ef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1107,32 +1107,32 @@ "no-cache" ], "ETag": [ - "W/\"5737d1f9-a306-493d-b40f-6100f06df517\"" + "W/\"d9577cf2-3f4d-4b3d-b731-cc201fdec9b1\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14831" + "14927" ], "x-ms-correlation-request-id": [ - "135f5a49-b90f-4731-b5b5-d546ea935925" + "c9666074-d4cb-488e-941b-34f6d3cbd7e2" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T151422Z:135f5a49-b90f-4731-b5b5-d546ea935925" + "NORTHCENTRALUS:20160222T095855Z:c9666074-d4cb-488e-941b-34f6d3cbd7e2" ], "Date": [ - "Tue, 16 Feb 2016 15:14:21 GMT" + "Mon, 22 Feb 2016 09:58:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/networkInterfaces/nic0crptestps2691?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzBjcnB0ZXN0cHMyNjkxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Network/networkInterfaces/nic0crptestps9762?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczk3NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzBjcnB0ZXN0cHM5NzYyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"properties\": {\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": [],\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/virtualNetworks/vnetcrptestps2691/subnets/subnetcrptestps2691\",\r\n \"properties\": {\r\n \"ipConfigurations\": []\r\n }\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps2691\"\r\n }\r\n }\r\n }\r\n ],\r\n \"primary\": false,\r\n \"enableIPForwarding\": false\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"properties\": {\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": [],\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Network/virtualNetworks/vnetcrptestps9762/subnets/subnetcrptestps9762\",\r\n \"properties\": {\r\n \"ipConfigurations\": []\r\n }\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps9762\"\r\n }\r\n }\r\n }\r\n ],\r\n \"primary\": false,\r\n \"enableIPForwarding\": false\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1141,7 +1141,7 @@ "900" ], "x-ms-client-request-id": [ - "607da7d5-69b7-4164-b58c-30c48d3b3357" + "495588c4-1081-4b68-bc83-e633148ec61f" ], "accept-language": [ "en-US" @@ -1150,7 +1150,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"nic0crptestps2691\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/networkInterfaces/nic0crptestps2691\",\r\n \"etag\": \"W/\\\"5737d1f9-a306-493d-b40f-6100f06df517\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a0a24c03-d721-40ef-92ee-ebcbf3e570b3\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/networkInterfaces/nic0crptestps2691/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"5737d1f9-a306-493d-b40f-6100f06df517\\\"\",\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/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps2691\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/virtualNetworks/vnetcrptestps2691/subnets/subnetcrptestps2691\"\r\n },\r\n \"primary\": true\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic0crptestps9762\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Network/networkInterfaces/nic0crptestps9762\",\r\n \"etag\": \"W/\\\"d9577cf2-3f4d-4b3d-b731-cc201fdec9b1\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f095faa6-eb82-4a7e-a9b9-3587aa16144b\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Network/networkInterfaces/nic0crptestps9762/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"d9577cf2-3f4d-4b3d-b731-cc201fdec9b1\\\"\",\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/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps9762\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Network/virtualNetworks/vnetcrptestps9762/subnets/subnetcrptestps9762\"\r\n },\r\n \"primary\": true\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1548" @@ -1165,10 +1165,10 @@ "no-cache" ], "x-ms-request-id": [ - "d0a1240a-5736-40ad-95f3-97f141280296" + "af11c0e5-9789-46b1-ad70-c82368657247" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Network/locations/eastus/operations/d0a1240a-5736-40ad-95f3-97f141280296?api-version=2015-06-15" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Network/locations/eastus/operations/af11c0e5-9789-46b1-ad70-c82368657247?api-version=2015-06-15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1181,23 +1181,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1194" ], "x-ms-correlation-request-id": [ - "9f9c60f4-b63c-4ac2-994c-e6c5f649a287" + "6435fc07-7663-4d3a-a2d9-35e6b9160685" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T151421Z:9f9c60f4-b63c-4ac2-994c-e6c5f649a287" + "NORTHCENTRALUS:20160222T095855Z:6435fc07-7663-4d3a-a2d9-35e6b9160685" ], "Date": [ - "Tue, 16 Feb 2016 15:14:21 GMT" + "Mon, 22 Feb 2016 09:58:55 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Storage/storageAccounts/stocrptestps2691?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHMyNjkxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Storage/storageAccounts/stocrptestps9762?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczk3NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM5NzYyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\"\r\n }\r\n}", "RequestHeaders": { @@ -1208,7 +1208,7 @@ "89" ], "x-ms-client-request-id": [ - "b2bbfcd2-0740-439b-a538-5250b7632a46" + "f1a68f6e-dcea-47ef-9439-21186c733ac4" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" @@ -1229,44 +1229,44 @@ "25" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1193" ], "x-ms-request-id": [ - "f55da0a5-52eb-4545-9734-fb65e106d262" + "cc44b989-3393-4a79-9104-ab4e89e3ab48" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Storage/operations/a952f0f3-f165-4ef0-a1fe-b614dcf0ed1a?monitor=true&api-version=2015-06-15" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Storage/operations/2c8e96cc-ee0b-4e25-a7cf-c9639bb32c11?monitor=true&api-version=2015-06-15" ], "Server": [ "Microsoft-Azure-Storage-Resource-Provider/1.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "f55da0a5-52eb-4545-9734-fb65e106d262" + "cc44b989-3393-4a79-9104-ab4e89e3ab48" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T151424Z:f55da0a5-52eb-4545-9734-fb65e106d262" + "NORTHCENTRALUS:20160222T095857Z:cc44b989-3393-4a79-9104-ab4e89e3ab48" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Feb 2016 15:14:24 GMT" + "Mon, 22 Feb 2016 09:58:57 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Storage/operations/a952f0f3-f165-4ef0-a1fe-b614dcf0ed1a?monitor=true&api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2E5NTJmMGYzLWYxNjUtNGVmMC1hMWZlLWI2MTRkY2YwZWQxYT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Storage/operations/2c8e96cc-ee0b-4e25-a7cf-c9639bb32c11?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzJjOGU5NmNjLWVlMGItNGUyNS1hN2NmLWM5NjM5YmIzMmMxMT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8efe3173-f373-4d62-bb52-9fc198abee95" + "bba12689-63bd-4967-9c65-a0dd5eeffbcb" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" @@ -1287,44 +1287,44 @@ "25" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14868" + "14926" ], "x-ms-request-id": [ - "bf2d30ab-7349-4069-8a91-bc6e6626c13a" + "a89d0ca5-8d97-47d6-bd7c-650c964736f7" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Storage/operations/a952f0f3-f165-4ef0-a1fe-b614dcf0ed1a?monitor=true&api-version=2015-06-15" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Storage/operations/2c8e96cc-ee0b-4e25-a7cf-c9639bb32c11?monitor=true&api-version=2015-06-15" ], "Server": [ "Microsoft-Azure-Storage-Resource-Provider/1.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "bf2d30ab-7349-4069-8a91-bc6e6626c13a" + "a89d0ca5-8d97-47d6-bd7c-650c964736f7" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T151425Z:bf2d30ab-7349-4069-8a91-bc6e6626c13a" + "NORTHCENTRALUS:20160222T095858Z:a89d0ca5-8d97-47d6-bd7c-650c964736f7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Feb 2016 15:14:24 GMT" + "Mon, 22 Feb 2016 09:58:57 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Storage/operations/a952f0f3-f165-4ef0-a1fe-b614dcf0ed1a?monitor=true&api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2E5NTJmMGYzLWYxNjUtNGVmMC1hMWZlLWI2MTRkY2YwZWQxYT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Storage/operations/2c8e96cc-ee0b-4e25-a7cf-c9639bb32c11?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzJjOGU5NmNjLWVlMGItNGUyNS1hN2NmLWM5NjM5YmIzMmMxMT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e1f0cf56-bc08-41c1-bf48-41e4f33087fc" + "2bb07607-1ec7-4313-a3d6-05b6433b6f01" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" @@ -1345,7 +1345,7 @@ "no-cache" ], "x-ms-request-id": [ - "c585c5b9-bacd-4c54-815c-b0dd9cad0286" + "b8b78beb-5ff3-47b2-be56-eb4db996e2f7" ], "Cache-Control": [ "no-cache" @@ -1355,37 +1355,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14863" + "14925" ], "x-ms-correlation-request-id": [ - "c585c5b9-bacd-4c54-815c-b0dd9cad0286" + "b8b78beb-5ff3-47b2-be56-eb4db996e2f7" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T151450Z:c585c5b9-bacd-4c54-815c-b0dd9cad0286" + "NORTHCENTRALUS:20160222T095923Z:b8b78beb-5ff3-47b2-be56-eb4db996e2f7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Feb 2016 15:14:50 GMT" + "Mon, 22 Feb 2016 09:59:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Storage/storageAccounts/stocrptestps2691?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHMyNjkxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Storage/storageAccounts/stocrptestps9762?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczk3NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM5NzYyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5c6d316a-8d71-4e3a-aae3-19f2f3ccc0f4" + "4ac9dfcb-871f-4eca-8d46-113970757da3" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Storage/storageAccounts/stocrptestps2691\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps2691\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T15:14:23.8540635Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps2691.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps2691.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps2691.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps2691.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Storage/storageAccounts/stocrptestps9762\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps9762\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-22T09:58:56.8703529Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps9762.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps9762.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps9762.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps9762.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "682" @@ -1400,7 +1400,7 @@ "no-cache" ], "x-ms-request-id": [ - "e86f1116-30ae-4072-bc4c-2ac153dd21ce" + "2bfad2f0-71fa-4ba7-b713-a405890e8d34" ], "Cache-Control": [ "no-cache" @@ -1410,37 +1410,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14862" + "14924" ], "x-ms-correlation-request-id": [ - "e86f1116-30ae-4072-bc4c-2ac153dd21ce" + "2bfad2f0-71fa-4ba7-b713-a405890e8d34" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T151450Z:e86f1116-30ae-4072-bc4c-2ac153dd21ce" + "NORTHCENTRALUS:20160222T095923Z:2bfad2f0-71fa-4ba7-b713-a405890e8d34" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Feb 2016 15:14:50 GMT" + "Mon, 22 Feb 2016 09:59:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Storage/storageAccounts/stocrptestps2691?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHMyNjkxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Storage/storageAccounts/stocrptestps9762?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczk3NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM5NzYyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e3f8b2cc-0e34-41b4-8417-e7499f05acb9" + "a998464f-f6db-4315-8241-0903cf8e16bc" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Storage/storageAccounts/stocrptestps2691\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps2691\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T15:14:23.8540635Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps2691.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps2691.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps2691.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps2691.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Storage/storageAccounts/stocrptestps9762\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps9762\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-22T09:58:56.8703529Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps9762.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps9762.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps9762.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps9762.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "682" @@ -1455,7 +1455,7 @@ "no-cache" ], "x-ms-request-id": [ - "f2ac0c0e-8671-4f5a-a01c-350cb002a58d" + "4fe41ff7-de2f-49b1-b26d-8b6c588b9bf0" ], "Cache-Control": [ "no-cache" @@ -1465,37 +1465,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14861" + "14923" ], "x-ms-correlation-request-id": [ - "f2ac0c0e-8671-4f5a-a01c-350cb002a58d" + "4fe41ff7-de2f-49b1-b26d-8b6c588b9bf0" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T151450Z:f2ac0c0e-8671-4f5a-a01c-350cb002a58d" + "NORTHCENTRALUS:20160222T095923Z:4fe41ff7-de2f-49b1-b26d-8b6c588b9bf0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Feb 2016 15:14:50 GMT" + "Mon, 22 Feb 2016 09:59:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Storage/storageAccounts/stocrptestps2691/listKeys?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHMyNjkxL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Storage/storageAccounts/stocrptestps9762/listKeys?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczk3NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM5NzYyL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4df13c53-e5f4-4761-91c2-09a63b9f9c22" + "768d927b-c73c-4551-85e1-fb7be8e79c6c" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"key1\": \"ksbyRlxAgqiyj0T6m8/jNJkzfJOUm+tYeTfeHuIPoAR8my4OeyDrwitpaMkzY3ldPO6fvGus0iW1r5Af4qhI0g==\",\r\n \"key2\": \"oEn0grvJggcQqt6He/c+seFg34c6Y6InSgtNCiOZnUFfhI3mH83d+9CfzhOhBKx1hoieO1vErk4PT+wEWmZmNA==\"\r\n}", + "ResponseBody": "{\r\n \"key1\": \"XXK7r6OibQw4aD/9uQx1D1oVqp4qM3pwK3cGX4utqflFuAV3vaybT3SNVkheNJRzIyBtXFs+ndMH+qCmX8wtrQ==\",\r\n \"key2\": \"8TwXLvVrXyBuqvkZN2sTNF2XjwPZ3zo8RjGadZrkpco/AhNZtKmM7BsHKzIb4DEKg4MSJF7by5oAvF/wrmBhAQ==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "198" @@ -1510,7 +1510,7 @@ "no-cache" ], "x-ms-request-id": [ - "59ede576-8cb8-4909-8c56-5ad5b3e03192" + "72681c9a-e4a5-418d-9da2-4d6a1f2fe78c" ], "Cache-Control": [ "no-cache" @@ -1520,37 +1520,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1192" ], "x-ms-correlation-request-id": [ - "59ede576-8cb8-4909-8c56-5ad5b3e03192" + "72681c9a-e4a5-418d-9da2-4d6a1f2fe78c" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T151451Z:59ede576-8cb8-4909-8c56-5ad5b3e03192" + "NORTHCENTRALUS:20160222T095924Z:72681c9a-e4a5-418d-9da2-4d6a1f2fe78c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Feb 2016 15:14:50 GMT" + "Mon, 22 Feb 2016 09:59:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Storage/storageAccounts/stocrptestps2691/listKeys?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHMyNjkxL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Storage/storageAccounts/stocrptestps9762/listKeys?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczk3NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM5NzYyL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "30d438e9-7c7d-4611-8d05-c9298f18d0a1" + "23a818d5-766d-45d9-bb33-677c39dabc99" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"key1\": \"ksbyRlxAgqiyj0T6m8/jNJkzfJOUm+tYeTfeHuIPoAR8my4OeyDrwitpaMkzY3ldPO6fvGus0iW1r5Af4qhI0g==\",\r\n \"key2\": \"oEn0grvJggcQqt6He/c+seFg34c6Y6InSgtNCiOZnUFfhI3mH83d+9CfzhOhBKx1hoieO1vErk4PT+wEWmZmNA==\"\r\n}", + "ResponseBody": "{\r\n \"key1\": \"XXK7r6OibQw4aD/9uQx1D1oVqp4qM3pwK3cGX4utqflFuAV3vaybT3SNVkheNJRzIyBtXFs+ndMH+qCmX8wtrQ==\",\r\n \"key2\": \"8TwXLvVrXyBuqvkZN2sTNF2XjwPZ3zo8RjGadZrkpco/AhNZtKmM7BsHKzIb4DEKg4MSJF7by5oAvF/wrmBhAQ==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "198" @@ -1565,7 +1565,7 @@ "no-cache" ], "x-ms-request-id": [ - "87e5e950-f56b-4f35-85f8-0cbb5acf8cb4" + "6e1f9ef6-dc3c-49dd-a9d8-83fbf4cd505c" ], "Cache-Control": [ "no-cache" @@ -1578,95 +1578,49 @@ "1198" ], "x-ms-correlation-request-id": [ - "87e5e950-f56b-4f35-85f8-0cbb5acf8cb4" + "6e1f9ef6-dc3c-49dd-a9d8-83fbf4cd505c" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T152336Z:87e5e950-f56b-4f35-85f8-0cbb5acf8cb4" + "NORTHCENTRALUS:20160222T101436Z:6e1f9ef6-dc3c-49dd-a9d8-83fbf4cd505c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Feb 2016 15:23:35 GMT" + "Mon, 22 Feb 2016 10:14:36 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Storage/storageAccounts/stocrptestps2691/listKeys?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHMyNjkxL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", - "RequestMethod": "POST", - "RequestBody": "", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Compute/virtualMachines/vmcrptestps9762?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczk3NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczk3NjI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East US\",\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\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps9762.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 \"name\": \"testDataDisk1\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps9762.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"Empty\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps9762.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"Empty\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123crptestps9762\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true\r\n }\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Network/networkInterfaces/nic0crptestps9762\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { - "x-ms-client-request-id": [ - "e03bbd2d-b52e-43f7-989a-62d28ee10fb5" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"key1\": \"ksbyRlxAgqiyj0T6m8/jNJkzfJOUm+tYeTfeHuIPoAR8my4OeyDrwitpaMkzY3ldPO6fvGus0iW1r5Af4qhI0g==\",\r\n \"key2\": \"oEn0grvJggcQqt6He/c+seFg34c6Y6InSgtNCiOZnUFfhI3mH83d+9CfzhOhBKx1hoieO1vErk4PT+wEWmZmNA==\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "198" - ], "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "e2634cab-9a40-459e-b14e-ccbfb280336d" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" - ], - "x-ms-correlation-request-id": [ - "e2634cab-9a40-459e-b14e-ccbfb280336d" - ], - "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T152338Z:e2634cab-9a40-459e-b14e-ccbfb280336d" + "application/json; charset=utf-8" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Content-Length": [ + "1832" ], - "Date": [ - "Tue, 16 Feb 2016 15:23:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Storage/storageAccounts/stocrptestps2691/listKeys?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHMyNjkxL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", - "RequestMethod": "POST", - "RequestBody": "", - "RequestHeaders": { "x-ms-client-request-id": [ - "f415fecd-5beb-41b3-afb2-5e965148d100" + "94d64142-f78f-4a5b-9216-28a8f0491342" + ], + "accept-language": [ + "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"key1\": \"ksbyRlxAgqiyj0T6m8/jNJkzfJOUm+tYeTfeHuIPoAR8my4OeyDrwitpaMkzY3ldPO6fvGus0iW1r5Af4qhI0g==\",\r\n \"key2\": \"oEn0grvJggcQqt6He/c+seFg34c6Y6InSgtNCiOZnUFfhI3mH83d+9CfzhOhBKx1hoieO1vErk4PT+wEWmZmNA==\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"3e37240e-26c3-4e0d-a1f0-bfc93fbf28bc\",\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\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps9762.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps9762.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps9762.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\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 \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Network/networkInterfaces/nic0crptestps9762\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Compute/virtualMachines/vmcrptestps9762\",\r\n \"name\": \"vmcrptestps9762\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "198" + "2102" ], "Content-Type": [ - "application/json" + "application/json; charset=utf-8" ], "Expires": [ "-1" @@ -1674,115 +1628,54 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "70474bd4-4ee5-459d-9608-e0c4e75c95d9" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-correlation-request-id": [ - "70474bd4-4ee5-459d-9608-e0c4e75c95d9" - ], - "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T152919Z:70474bd4-4ee5-459d-9608-e0c4e75c95d9" + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/162afb30-2576-46a9-b2fe-fd6b8d3aae88?api-version=2015-06-15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Date": [ - "Tue, 16 Feb 2016 15:29:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Storage/storageAccounts/stocrptestps2691/listKeys?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHMyNjkxL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", - "RequestMethod": "POST", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e6fff645-906b-4b77-be57-edb3e93c259b" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"key1\": \"ksbyRlxAgqiyj0T6m8/jNJkzfJOUm+tYeTfeHuIPoAR8my4OeyDrwitpaMkzY3ldPO6fvGus0iW1r5Af4qhI0g==\",\r\n \"key2\": \"oEn0grvJggcQqt6He/c+seFg34c6Y6InSgtNCiOZnUFfhI3mH83d+9CfzhOhBKx1hoieO1vErk4PT+wEWmZmNA==\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "198" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" + "x-ms-served-by": [ + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130999764799930695" ], "x-ms-request-id": [ - "351004b4-cbbb-4b35-adf0-625209029580" + "162afb30-2576-46a9-b2fe-fd6b8d3aae88" ], "Cache-Control": [ "no-cache" ], "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "351004b4-cbbb-4b35-adf0-625209029580" + "8b4d0c33-9c40-49a2-8af6-d64a38577ad5" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T152952Z:351004b4-cbbb-4b35-adf0-625209029580" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "NORTHCENTRALUS:20160222T095926Z:8b4d0c33-9c40-49a2-8af6-d64a38577ad5" ], "Date": [ - "Tue, 16 Feb 2016 15:29:52 GMT" + "Mon, 22 Feb 2016 09:59:26 GMT" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczI2OTE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"East US\",\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\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2691.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 \"name\": \"testDataDisk1\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2691.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"Empty\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2691.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"Empty\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123crptestps2691\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true\r\n }\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/networkInterfaces/nic0crptestps2691\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n }\r\n }\r\n}", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/162afb30-2576-46a9-b2fe-fd6b8d3aae88?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMTYyYWZiMzAtMjU3Ni00NmE5LWIyZmUtZmQ2YjhkM2FhZTg4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "1832" - ], - "x-ms-client-request-id": [ - "15f78c98-94a7-41db-b2fc-0f76452f2aaa" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"7dbdc860-a1bc-4dc5-8185-dd49fda78b4b\",\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\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2691.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2691.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2691.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/networkInterfaces/nic0crptestps2691\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691\",\r\n \"name\": \"vmcrptestps2691\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"162afb30-2576-46a9-b2fe-fd6b8d3aae88\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-22T10:59:25.7430176+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "2102" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1793,17 +1686,14 @@ "Pragma": [ "no-cache" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/b4e2f5c0-9075-4ae1-a3fe-de24c1a3d21e?api-version=2015-06-15" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130999764799930695" ], "x-ms-request-id": [ - "b4e2f5c0-9075-4ae1-a3fe-de24c1a3d21e" + "0bee37e1-a0dc-4bde-b4d8-38714958b9d4" ], "Cache-Control": [ "no-cache" @@ -1812,24 +1702,24 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14955" ], "x-ms-correlation-request-id": [ - "f4c3c3ad-6674-47d7-afd2-6b4dbb7f192c" + "2e17569d-cc4f-46cc-bd69-5b98f943e472" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T151455Z:f4c3c3ad-6674-47d7-afd2-6b4dbb7f192c" + "NORTHCENTRALUS:20160222T095956Z:2e17569d-cc4f-46cc-bd69-5b98f943e472" ], "Date": [ - "Tue, 16 Feb 2016 15:14:54 GMT" + "Mon, 22 Feb 2016 09:59:56 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/b4e2f5c0-9075-4ae1-a3fe-de24c1a3d21e?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjRlMmY1YzAtOTA3NS00YWUxLWEzZmUtZGUyNGMxYTNkMjFlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/162afb30-2576-46a9-b2fe-fd6b8d3aae88?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMTYyYWZiMzAtMjU3Ni00NmE5LWIyZmUtZmQ2YjhkM2FhZTg4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1837,10 +1727,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"b4e2f5c0-9075-4ae1-a3fe-de24c1a3d21e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T16:14:54.017645+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"162afb30-2576-46a9-b2fe-fd6b8d3aae88\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-22T10:59:25.7430176+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "140" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1855,10 +1745,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130999764799930695" ], "x-ms-request-id": [ - "81f9b131-c029-46c0-88cb-5f1784b786f4" + "28ec49bd-24c9-4378-b256-6b766b31c090" ], "Cache-Control": [ "no-cache" @@ -1868,23 +1758,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14836" + "14973" ], "x-ms-correlation-request-id": [ - "81475012-b32c-44c4-a8ae-00ad669c97d4" + "4df26604-69a4-45c4-8f87-c64550ced09a" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T151525Z:81475012-b32c-44c4-a8ae-00ad669c97d4" + "NORTHCENTRALUS:20160222T100027Z:4df26604-69a4-45c4-8f87-c64550ced09a" ], "Date": [ - "Tue, 16 Feb 2016 15:15:25 GMT" + "Mon, 22 Feb 2016 10:00:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/b4e2f5c0-9075-4ae1-a3fe-de24c1a3d21e?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjRlMmY1YzAtOTA3NS00YWUxLWEzZmUtZGUyNGMxYTNkMjFlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/162afb30-2576-46a9-b2fe-fd6b8d3aae88?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMTYyYWZiMzAtMjU3Ni00NmE5LWIyZmUtZmQ2YjhkM2FhZTg4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1892,10 +1782,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"b4e2f5c0-9075-4ae1-a3fe-de24c1a3d21e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T16:14:54.017645+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"162afb30-2576-46a9-b2fe-fd6b8d3aae88\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-22T10:59:25.7430176+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "140" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1910,10 +1800,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130999764799930695" ], "x-ms-request-id": [ - "5ae38a97-d6a3-435e-bf2c-db689536bbd4" + "f95eaa35-2a8d-4ce8-81d8-583d82233d8c" ], "Cache-Control": [ "no-cache" @@ -1923,23 +1813,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14835" + "14972" ], "x-ms-correlation-request-id": [ - "621c0f18-790a-446d-80f3-0f29e275c449" + "2d4d797a-800f-41bb-92e1-28fa7d8f7c34" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T151555Z:621c0f18-790a-446d-80f3-0f29e275c449" + "NORTHCENTRALUS:20160222T100057Z:2d4d797a-800f-41bb-92e1-28fa7d8f7c34" ], "Date": [ - "Tue, 16 Feb 2016 15:15:55 GMT" + "Mon, 22 Feb 2016 10:00:57 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/b4e2f5c0-9075-4ae1-a3fe-de24c1a3d21e?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjRlMmY1YzAtOTA3NS00YWUxLWEzZmUtZGUyNGMxYTNkMjFlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/162afb30-2576-46a9-b2fe-fd6b8d3aae88?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMTYyYWZiMzAtMjU3Ni00NmE5LWIyZmUtZmQ2YjhkM2FhZTg4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1947,10 +1837,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"b4e2f5c0-9075-4ae1-a3fe-de24c1a3d21e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T16:14:54.017645+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"162afb30-2576-46a9-b2fe-fd6b8d3aae88\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-22T10:59:25.7430176+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "140" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1965,10 +1855,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130999764799930695" ], "x-ms-request-id": [ - "c4b053f7-2049-40b5-bdb5-d0b4e94560fc" + "893d3b10-fed3-425c-9e4d-f689e3b21466" ], "Cache-Control": [ "no-cache" @@ -1978,23 +1868,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14833" + "14970" ], "x-ms-correlation-request-id": [ - "ceb3b277-7f0c-4462-9dfa-b45c9ac2223d" + "ee98e9a1-5308-4070-ad16-33231ee5b062" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T151625Z:ceb3b277-7f0c-4462-9dfa-b45c9ac2223d" + "NORTHCENTRALUS:20160222T100127Z:ee98e9a1-5308-4070-ad16-33231ee5b062" ], "Date": [ - "Tue, 16 Feb 2016 15:16:25 GMT" + "Mon, 22 Feb 2016 10:01:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/b4e2f5c0-9075-4ae1-a3fe-de24c1a3d21e?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjRlMmY1YzAtOTA3NS00YWUxLWEzZmUtZGUyNGMxYTNkMjFlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/162afb30-2576-46a9-b2fe-fd6b8d3aae88?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMTYyYWZiMzAtMjU3Ni00NmE5LWIyZmUtZmQ2YjhkM2FhZTg4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2002,10 +1892,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"b4e2f5c0-9075-4ae1-a3fe-de24c1a3d21e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T16:14:54.017645+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"162afb30-2576-46a9-b2fe-fd6b8d3aae88\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-22T10:59:25.7430176+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "140" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2020,10 +1910,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130999764799930695" ], "x-ms-request-id": [ - "8e3fd9ce-4ca1-4d2c-a2da-1d676dc1db3d" + "e7dc6a8a-3825-4b4c-aaeb-ecc810b51d4d" ], "Cache-Control": [ "no-cache" @@ -2033,23 +1923,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14832" + "14969" ], "x-ms-correlation-request-id": [ - "f5a8c384-c10d-41fc-bd84-a738363283cf" + "dc7e8779-2d46-4d1b-b717-b405b7e5293d" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T151656Z:f5a8c384-c10d-41fc-bd84-a738363283cf" + "NORTHCENTRALUS:20160222T100157Z:dc7e8779-2d46-4d1b-b717-b405b7e5293d" ], "Date": [ - "Tue, 16 Feb 2016 15:16:55 GMT" + "Mon, 22 Feb 2016 10:01:57 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/b4e2f5c0-9075-4ae1-a3fe-de24c1a3d21e?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjRlMmY1YzAtOTA3NS00YWUxLWEzZmUtZGUyNGMxYTNkMjFlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/162afb30-2576-46a9-b2fe-fd6b8d3aae88?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMTYyYWZiMzAtMjU3Ni00NmE5LWIyZmUtZmQ2YjhkM2FhZTg4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2057,10 +1947,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"b4e2f5c0-9075-4ae1-a3fe-de24c1a3d21e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T16:14:54.017645+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"162afb30-2576-46a9-b2fe-fd6b8d3aae88\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-22T10:59:25.7430176+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "140" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2075,10 +1965,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130999764799930695" ], "x-ms-request-id": [ - "8110e068-282a-4f56-8c53-2d8a3370c872" + "02dab920-241b-48ea-a2d2-228e027ac981" ], "Cache-Control": [ "no-cache" @@ -2088,23 +1978,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14830" + "14968" ], "x-ms-correlation-request-id": [ - "9e7c716e-30d7-4415-85fa-cf7303862aae" + "22bf3a4b-c0c7-4707-bd49-5de3fb05ab65" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T151726Z:9e7c716e-30d7-4415-85fa-cf7303862aae" + "NORTHCENTRALUS:20160222T100227Z:22bf3a4b-c0c7-4707-bd49-5de3fb05ab65" ], "Date": [ - "Tue, 16 Feb 2016 15:17:25 GMT" + "Mon, 22 Feb 2016 10:02:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/b4e2f5c0-9075-4ae1-a3fe-de24c1a3d21e?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjRlMmY1YzAtOTA3NS00YWUxLWEzZmUtZGUyNGMxYTNkMjFlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/162afb30-2576-46a9-b2fe-fd6b8d3aae88?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMTYyYWZiMzAtMjU3Ni00NmE5LWIyZmUtZmQ2YjhkM2FhZTg4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2112,10 +2002,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"b4e2f5c0-9075-4ae1-a3fe-de24c1a3d21e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T16:14:54.017645+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"162afb30-2576-46a9-b2fe-fd6b8d3aae88\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-22T10:59:25.7430176+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "140" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2130,10 +2020,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130999764799930695" ], "x-ms-request-id": [ - "30e7e70d-0ab8-449d-b6c0-8ed08ba31c67" + "7d48877c-6241-49eb-a5bc-6ef66586e011" ], "Cache-Control": [ "no-cache" @@ -2143,23 +2033,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14828" + "14966" ], "x-ms-correlation-request-id": [ - "ab6e5383-a9db-4d3c-9fe3-8cf3ce815a2d" + "ae24834a-f93d-4c5c-8249-9a998ecb24ad" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T151756Z:ab6e5383-a9db-4d3c-9fe3-8cf3ce815a2d" + "NORTHCENTRALUS:20160222T100258Z:ae24834a-f93d-4c5c-8249-9a998ecb24ad" ], "Date": [ - "Tue, 16 Feb 2016 15:17:56 GMT" + "Mon, 22 Feb 2016 10:02:57 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/b4e2f5c0-9075-4ae1-a3fe-de24c1a3d21e?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjRlMmY1YzAtOTA3NS00YWUxLWEzZmUtZGUyNGMxYTNkMjFlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/162afb30-2576-46a9-b2fe-fd6b8d3aae88?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMTYyYWZiMzAtMjU3Ni00NmE5LWIyZmUtZmQ2YjhkM2FhZTg4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2167,10 +2057,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"b4e2f5c0-9075-4ae1-a3fe-de24c1a3d21e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T16:14:54.017645+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"162afb30-2576-46a9-b2fe-fd6b8d3aae88\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-22T10:59:25.7430176+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "140" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2185,10 +2075,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130999764799930695" ], "x-ms-request-id": [ - "4243fcf2-2402-4827-aabb-70c93825c028" + "4e8713c2-8f80-4916-917a-1106171e9da6" ], "Cache-Control": [ "no-cache" @@ -2198,23 +2088,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14826" + "14965" ], "x-ms-correlation-request-id": [ - "95dd066a-9c1e-487d-b5b5-2569318c1575" + "ebd56539-0eb4-4b95-8d9b-a6505ef5eb64" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T151826Z:95dd066a-9c1e-487d-b5b5-2569318c1575" + "NORTHCENTRALUS:20160222T100328Z:ebd56539-0eb4-4b95-8d9b-a6505ef5eb64" ], "Date": [ - "Tue, 16 Feb 2016 15:18:26 GMT" + "Mon, 22 Feb 2016 10:03:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/b4e2f5c0-9075-4ae1-a3fe-de24c1a3d21e?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjRlMmY1YzAtOTA3NS00YWUxLWEzZmUtZGUyNGMxYTNkMjFlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/162afb30-2576-46a9-b2fe-fd6b8d3aae88?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMTYyYWZiMzAtMjU3Ni00NmE5LWIyZmUtZmQ2YjhkM2FhZTg4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2222,10 +2112,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"b4e2f5c0-9075-4ae1-a3fe-de24c1a3d21e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T16:14:54.017645+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"162afb30-2576-46a9-b2fe-fd6b8d3aae88\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-22T10:59:25.7430176+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "140" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2240,10 +2130,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130999764799930695" ], "x-ms-request-id": [ - "0299b8e7-546c-4566-98ac-971e74116a19" + "b5685980-7765-4e4c-ac57-88b301d6e240" ], "Cache-Control": [ "no-cache" @@ -2253,23 +2143,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14824" + "14964" ], "x-ms-correlation-request-id": [ - "7a624384-f298-46b0-b13c-0ad166c1c4a7" + "76ef9ab5-57d2-42ad-a83b-4be5efbfcf56" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T151856Z:7a624384-f298-46b0-b13c-0ad166c1c4a7" + "NORTHCENTRALUS:20160222T100358Z:76ef9ab5-57d2-42ad-a83b-4be5efbfcf56" ], "Date": [ - "Tue, 16 Feb 2016 15:18:56 GMT" + "Mon, 22 Feb 2016 10:03:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/b4e2f5c0-9075-4ae1-a3fe-de24c1a3d21e?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjRlMmY1YzAtOTA3NS00YWUxLWEzZmUtZGUyNGMxYTNkMjFlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/162afb30-2576-46a9-b2fe-fd6b8d3aae88?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMTYyYWZiMzAtMjU3Ni00NmE5LWIyZmUtZmQ2YjhkM2FhZTg4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2277,10 +2167,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"b4e2f5c0-9075-4ae1-a3fe-de24c1a3d21e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T16:14:54.017645+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"162afb30-2576-46a9-b2fe-fd6b8d3aae88\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-22T10:59:25.7430176+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "140" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2295,10 +2185,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130999764799930695" ], "x-ms-request-id": [ - "0800a0f9-ea57-42f8-b576-edac839c7f32" + "88f44118-3e3b-4a30-92dc-67bf4c742fa0" ], "Cache-Control": [ "no-cache" @@ -2308,23 +2198,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14816" + "14963" ], "x-ms-correlation-request-id": [ - "fba9e5e7-acb1-40c6-b0f3-346ed0ec591b" + "26dd4ca6-cd76-49b8-898b-848fe7c5e5f1" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T151926Z:fba9e5e7-acb1-40c6-b0f3-346ed0ec591b" + "NORTHCENTRALUS:20160222T100428Z:26dd4ca6-cd76-49b8-898b-848fe7c5e5f1" ], "Date": [ - "Tue, 16 Feb 2016 15:19:26 GMT" + "Mon, 22 Feb 2016 10:04:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/b4e2f5c0-9075-4ae1-a3fe-de24c1a3d21e?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjRlMmY1YzAtOTA3NS00YWUxLWEzZmUtZGUyNGMxYTNkMjFlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/162afb30-2576-46a9-b2fe-fd6b8d3aae88?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMTYyYWZiMzAtMjU3Ni00NmE5LWIyZmUtZmQ2YjhkM2FhZTg4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2332,10 +2222,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"b4e2f5c0-9075-4ae1-a3fe-de24c1a3d21e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T16:14:54.017645+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"162afb30-2576-46a9-b2fe-fd6b8d3aae88\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-22T10:59:25.7430176+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "140" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2350,10 +2240,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130999764799930695" ], "x-ms-request-id": [ - "518cf776-7381-49e4-a7e9-dfe13c275501" + "12f4a02c-4cf1-40e1-a33f-20c9be52c3d1" ], "Cache-Control": [ "no-cache" @@ -2363,23 +2253,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14813" + "14962" ], "x-ms-correlation-request-id": [ - "34a3257e-30e7-402a-8471-741635fa4b06" + "bc987ecf-b243-4ff7-a696-f7086172ef50" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T151957Z:34a3257e-30e7-402a-8471-741635fa4b06" + "NORTHCENTRALUS:20160222T100458Z:bc987ecf-b243-4ff7-a696-f7086172ef50" ], "Date": [ - "Tue, 16 Feb 2016 15:19:56 GMT" + "Mon, 22 Feb 2016 10:04:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/b4e2f5c0-9075-4ae1-a3fe-de24c1a3d21e?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjRlMmY1YzAtOTA3NS00YWUxLWEzZmUtZGUyNGMxYTNkMjFlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/162afb30-2576-46a9-b2fe-fd6b8d3aae88?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMTYyYWZiMzAtMjU3Ni00NmE5LWIyZmUtZmQ2YjhkM2FhZTg4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2387,10 +2277,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"b4e2f5c0-9075-4ae1-a3fe-de24c1a3d21e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T16:14:54.017645+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"162afb30-2576-46a9-b2fe-fd6b8d3aae88\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-22T10:59:25.7430176+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "140" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2405,10 +2295,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130999764799930695" ], "x-ms-request-id": [ - "fc2cdf3b-2fca-42bd-ab29-2244f97cbd50" + "df9a0240-5494-42c0-80bc-acafbc875341" ], "Cache-Control": [ "no-cache" @@ -2418,23 +2308,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14816" + "14967" ], "x-ms-correlation-request-id": [ - "84863f03-f084-4ba5-8840-db1fcdf8dbc6" + "b0aa8d30-1118-41ef-b7e2-ab6c99aee309" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T152027Z:84863f03-f084-4ba5-8840-db1fcdf8dbc6" + "NORTHCENTRALUS:20160222T100528Z:b0aa8d30-1118-41ef-b7e2-ab6c99aee309" ], "Date": [ - "Tue, 16 Feb 2016 15:20:26 GMT" + "Mon, 22 Feb 2016 10:05:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/b4e2f5c0-9075-4ae1-a3fe-de24c1a3d21e?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjRlMmY1YzAtOTA3NS00YWUxLWEzZmUtZGUyNGMxYTNkMjFlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/162afb30-2576-46a9-b2fe-fd6b8d3aae88?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMTYyYWZiMzAtMjU3Ni00NmE5LWIyZmUtZmQ2YjhkM2FhZTg4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2442,10 +2332,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"b4e2f5c0-9075-4ae1-a3fe-de24c1a3d21e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T16:14:54.017645+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"162afb30-2576-46a9-b2fe-fd6b8d3aae88\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-22T10:59:25.7430176+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "140" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2460,10 +2350,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130999764799930695" ], "x-ms-request-id": [ - "477aa92f-3b79-4088-9f5f-ca64fd178854" + "df0ed639-373d-4952-815a-201ecbf612c6" ], "Cache-Control": [ "no-cache" @@ -2473,23 +2363,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14813" + "14966" ], "x-ms-correlation-request-id": [ - "fd127be8-71ed-4ec7-a1b4-5e5285b4ce1a" + "149378c6-a8e0-47aa-a90f-1cec648b719d" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T152057Z:fd127be8-71ed-4ec7-a1b4-5e5285b4ce1a" + "NORTHCENTRALUS:20160222T100559Z:149378c6-a8e0-47aa-a90f-1cec648b719d" ], "Date": [ - "Tue, 16 Feb 2016 15:20:57 GMT" + "Mon, 22 Feb 2016 10:05:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/b4e2f5c0-9075-4ae1-a3fe-de24c1a3d21e?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjRlMmY1YzAtOTA3NS00YWUxLWEzZmUtZGUyNGMxYTNkMjFlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/162afb30-2576-46a9-b2fe-fd6b8d3aae88?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMTYyYWZiMzAtMjU3Ni00NmE5LWIyZmUtZmQ2YjhkM2FhZTg4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2497,10 +2387,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"b4e2f5c0-9075-4ae1-a3fe-de24c1a3d21e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T16:14:54.017645+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"162afb30-2576-46a9-b2fe-fd6b8d3aae88\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-22T10:59:25.7430176+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "140" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2515,10 +2405,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130999764799930695" ], "x-ms-request-id": [ - "258bb458-0bef-45c9-a6db-11eba30a4685" + "2e1ac735-d2dd-438f-81bc-b53b78e8fe00" ], "Cache-Control": [ "no-cache" @@ -2528,23 +2418,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14808" + "14963" ], "x-ms-correlation-request-id": [ - "47f50cc6-a08a-4f03-a72e-b243782fec9b" + "c8e5fb42-2242-480b-a7c5-2f4a0efad2e9" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T152127Z:47f50cc6-a08a-4f03-a72e-b243782fec9b" + "NORTHCENTRALUS:20160222T100629Z:c8e5fb42-2242-480b-a7c5-2f4a0efad2e9" ], "Date": [ - "Tue, 16 Feb 2016 15:21:26 GMT" + "Mon, 22 Feb 2016 10:06:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/b4e2f5c0-9075-4ae1-a3fe-de24c1a3d21e?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjRlMmY1YzAtOTA3NS00YWUxLWEzZmUtZGUyNGMxYTNkMjFlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/162afb30-2576-46a9-b2fe-fd6b8d3aae88?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMTYyYWZiMzAtMjU3Ni00NmE5LWIyZmUtZmQ2YjhkM2FhZTg4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2552,10 +2442,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"b4e2f5c0-9075-4ae1-a3fe-de24c1a3d21e\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-02-16T16:14:54.017645+01:00\",\r\n \"endTime\": \"2016-02-16T16:21:50.671231+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"162afb30-2576-46a9-b2fe-fd6b8d3aae88\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-02-22T10:59:25.7430176+01:00\",\r\n \"endTime\": \"2016-02-22T11:06:37.427729+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "189" + "190" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2570,10 +2460,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130999764799930695" ], "x-ms-request-id": [ - "fea66346-dd22-41ef-ba83-c48cdfb7f830" + "f5d09169-a3c8-4beb-9eb7-62dfdec5c652" ], "Cache-Control": [ "no-cache" @@ -2583,23 +2473,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14805" + "14962" ], "x-ms-correlation-request-id": [ - "44b3d4a1-c209-4e46-8a8e-b9ff2523d754" + "6b8fccf7-4570-46a7-8cf8-8f82dd4fe34f" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T152157Z:44b3d4a1-c209-4e46-8a8e-b9ff2523d754" + "NORTHCENTRALUS:20160222T100659Z:6b8fccf7-4570-46a7-8cf8-8f82dd4fe34f" ], "Date": [ - "Tue, 16 Feb 2016 15:21:57 GMT" + "Mon, 22 Feb 2016 10:06:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczI2OTE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Compute/virtualMachines/vmcrptestps9762?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczk3NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczk3NjI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2607,7 +2497,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"7dbdc860-a1bc-4dc5-8185-dd49fda78b4b\",\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\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2691.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2691.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2691.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/networkInterfaces/nic0crptestps2691\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691\",\r\n \"name\": \"vmcrptestps2691\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"3e37240e-26c3-4e0d-a1f0-bfc93fbf28bc\",\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\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps9762.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps9762.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps9762.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\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 \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Network/networkInterfaces/nic0crptestps9762\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Compute/virtualMachines/vmcrptestps9762\",\r\n \"name\": \"vmcrptestps9762\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "2103" @@ -2625,10 +2515,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130999764799930695" ], "x-ms-request-id": [ - "b306cd01-55b3-47fd-a9c6-28cac6634ef0" + "ef944dc1-1eca-49b0-a892-067b3a9a49e1" ], "Cache-Control": [ "no-cache" @@ -2638,28 +2528,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14804" + "14961" ], "x-ms-correlation-request-id": [ - "c2db5cf4-f473-45b9-ac46-f5ab39e6a485" + "277cb2fb-262a-489e-b2fc-eb370f9fd1cf" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T152157Z:c2db5cf4-f473-45b9-ac46-f5ab39e6a485" + "NORTHCENTRALUS:20160222T100659Z:277cb2fb-262a-489e-b2fc-eb370f9fd1cf" ], "Date": [ - "Tue, 16 Feb 2016 15:21:57 GMT" + "Mon, 22 Feb 2016 10:06:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczI2OTE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Compute/virtualMachines/vmcrptestps9762?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczk3NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczk3NjI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e4fda424-ce7e-4d8e-9c23-f222543fd420" + "fae6449c-8d0c-4a4a-9d0f-f0f6ac0e3788" ], "accept-language": [ "en-US" @@ -2668,7 +2558,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"7dbdc860-a1bc-4dc5-8185-dd49fda78b4b\",\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\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2691.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2691.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2691.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/networkInterfaces/nic0crptestps2691\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\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\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691/extensions/BGInfo\",\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691\",\r\n \"name\": \"vmcrptestps2691\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"3e37240e-26c3-4e0d-a1f0-bfc93fbf28bc\",\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\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps9762.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps9762.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps9762.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\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 \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Network/networkInterfaces/nic0crptestps9762\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\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\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Compute/virtualMachines/vmcrptestps9762/extensions/BGInfo\",\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Compute/virtualMachines/vmcrptestps9762\",\r\n \"name\": \"vmcrptestps9762\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "2657" @@ -2686,10 +2576,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130999764799930695" ], "x-ms-request-id": [ - "a3595c3e-68e4-467d-b9d2-2dc47af1b2c6" + "751a1d88-9ff8-46dc-8826-39cb488cebbd" ], "Cache-Control": [ "no-cache" @@ -2699,28 +2589,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14790" + "14951" ], "x-ms-correlation-request-id": [ - "3014fac3-f5ba-46de-b450-3b96520fc914" + "d0f8c02a-0980-4c39-96c7-8488ed34ca7a" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T152334Z:3014fac3-f5ba-46de-b450-3b96520fc914" + "NORTHCENTRALUS:20160222T100834Z:d0f8c02a-0980-4c39-96c7-8488ed34ca7a" ], "Date": [ - "Tue, 16 Feb 2016 15:23:34 GMT" + "Mon, 22 Feb 2016 10:08:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczI2OTE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Compute/virtualMachines/vmcrptestps9762?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczk3NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczk3NjI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d6078a9b-6ff9-4776-8f8f-50c83ff1cfd2" + "e5126e16-a62c-4f5c-9b87-64e9add1d98b" ], "accept-language": [ "en-US" @@ -2729,7 +2619,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"7dbdc860-a1bc-4dc5-8185-dd49fda78b4b\",\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\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2691.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2691.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2691.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/networkInterfaces/nic0crptestps2691\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\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\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691/extensions/BGInfo\",\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691\",\r\n \"name\": \"vmcrptestps2691\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"3e37240e-26c3-4e0d-a1f0-bfc93fbf28bc\",\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\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps9762.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps9762.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps9762.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\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 \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Network/networkInterfaces/nic0crptestps9762\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\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\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Compute/virtualMachines/vmcrptestps9762/extensions/BGInfo\",\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Compute/virtualMachines/vmcrptestps9762\",\r\n \"name\": \"vmcrptestps9762\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "2657" @@ -2747,10 +2637,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130999764799930695" ], "x-ms-request-id": [ - "9393a934-aaac-4124-80ef-60459b95f575" + "8bab4704-9128-4b19-857d-81999c643a15" ], "Cache-Control": [ "no-cache" @@ -2760,28 +2650,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14789" + "14950" ], "x-ms-correlation-request-id": [ - "5207e109-887d-40a3-abf7-dfc3ee1c4246" + "5936d4e2-20da-4c86-ba2f-fba909b4ca9a" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T152334Z:5207e109-887d-40a3-abf7-dfc3ee1c4246" + "NORTHCENTRALUS:20160222T100834Z:5936d4e2-20da-4c86-ba2f-fba909b4ca9a" ], "Date": [ - "Tue, 16 Feb 2016 15:23:34 GMT" + "Mon, 22 Feb 2016 10:08:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczI2OTE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Compute/virtualMachines/vmcrptestps9762?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczk3NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczk3NjI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3a4a95ea-7b13-4b79-a5cb-019849226231" + "e43d6974-c4c5-49c5-92eb-e0f4724da9ad" ], "accept-language": [ "en-US" @@ -2790,7 +2680,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"7dbdc860-a1bc-4dc5-8185-dd49fda78b4b\",\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\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2691.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2691.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2691.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/networkInterfaces/nic0crptestps2691\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\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\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691/extensions/BGInfo\",\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691\",\r\n \"name\": \"vmcrptestps2691\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"3e37240e-26c3-4e0d-a1f0-bfc93fbf28bc\",\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\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps9762.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps9762.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps9762.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\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 \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Network/networkInterfaces/nic0crptestps9762\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\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\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Compute/virtualMachines/vmcrptestps9762/extensions/BGInfo\",\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Compute/virtualMachines/vmcrptestps9762\",\r\n \"name\": \"vmcrptestps9762\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "2657" @@ -2808,10 +2698,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130999764799930695" ], "x-ms-request-id": [ - "9c6eb407-cc84-4e8e-a76b-67d0de958c79" + "01f3c090-32a8-4fdd-9715-59369f66198b" ], "Cache-Control": [ "no-cache" @@ -2821,28 +2711,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14788" + "14950" ], "x-ms-correlation-request-id": [ - "d7530e8e-3bd9-4c68-be26-07277bf4d65f" + "378113b0-2ad3-4ad3-80e8-c7f0391f1f0e" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T152334Z:d7530e8e-3bd9-4c68-be26-07277bf4d65f" + "NORTHCENTRALUS:20160222T101431Z:378113b0-2ad3-4ad3-80e8-c7f0391f1f0e" ], "Date": [ - "Tue, 16 Feb 2016 15:23:34 GMT" + "Mon, 22 Feb 2016 10:14:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczI2OTE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Compute/virtualMachines/vmcrptestps9762?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczk3NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczk3NjI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2b9c5eae-fbbe-4dd6-9c57-08be444efab7" + "0c47716e-9677-40a8-9317-ad29d30ce6f7" ], "accept-language": [ "en-US" @@ -2851,7 +2741,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"7dbdc860-a1bc-4dc5-8185-dd49fda78b4b\",\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\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2691.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2691.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2691.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/networkInterfaces/nic0crptestps2691\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\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\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691/extensions/BGInfo\",\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691\",\r\n \"name\": \"vmcrptestps2691\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"3e37240e-26c3-4e0d-a1f0-bfc93fbf28bc\",\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\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps9762.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps9762.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps9762.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\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 \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Network/networkInterfaces/nic0crptestps9762\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\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\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Compute/virtualMachines/vmcrptestps9762/extensions/BGInfo\",\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Compute/virtualMachines/vmcrptestps9762\",\r\n \"name\": \"vmcrptestps9762\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "2657" @@ -2869,10 +2759,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130999764799930695" ], "x-ms-request-id": [ - "f47b2393-e783-421b-a1ee-e07c05f88109" + "4e3d5fa9-63e9-4fc4-8b49-a807b0d7ba4e" ], "Cache-Control": [ "no-cache" @@ -2882,28 +2772,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14786" + "14948" ], "x-ms-correlation-request-id": [ - "35018ac4-8372-4e55-b22d-03b4cecff61a" + "81e89da6-9e57-4302-a9e6-fd1ba8b0b281" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T152337Z:35018ac4-8372-4e55-b22d-03b4cecff61a" + "NORTHCENTRALUS:20160222T101434Z:81e89da6-9e57-4302-a9e6-fd1ba8b0b281" ], "Date": [ - "Tue, 16 Feb 2016 15:23:36 GMT" + "Mon, 22 Feb 2016 10:14:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczI2OTE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Compute/virtualMachines/vmcrptestps9762?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczk3NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczk3NjI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "58cd02bf-86d8-4655-a236-eeb8576a03d0" + "1bd4c92b-8af2-4956-a686-43af4f9762b8" ], "accept-language": [ "en-US" @@ -2912,7 +2802,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"7dbdc860-a1bc-4dc5-8185-dd49fda78b4b\",\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\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2691.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2691.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2691.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/networkInterfaces/nic0crptestps2691\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\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\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691/extensions/BGInfo\",\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Azure.Diagnostics\",\r\n \"type\": \"IaaSDiagnostics\",\r\n \"typeHandlerVersion\": \"1.5\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yKF9Ub3RhbClcJSBQcm9jZXNzb3IgVGltZSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yIEluZm9ybWF0aW9uKF9Ub3RhbClcUHJvY2Vzc29yIEZyZXF1ZW5jeSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XEF2YWlsYWJsZSBCeXRlcyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcVENQdjZcU2VnbWVudHMgUmV0cmFuc21pdHRlZC9zZWMiIHNhbXBsZVJhdGU9IlBUMU0iIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFRDUHY0XFNlZ21lbnRzIFJldHJhbnNtaXR0ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrIEludGVyZmFjZSgqKVxCeXRlcyBTZW50L3NlYyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29yayBJbnRlcmZhY2UoKilcQnl0ZXMgUmVjZWl2ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691/extensions/IaaSDiagnostics\",\r\n \"name\": \"IaaSDiagnostics\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691\",\r\n \"name\": \"vmcrptestps2691\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"3e37240e-26c3-4e0d-a1f0-bfc93fbf28bc\",\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\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps9762.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps9762.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps9762.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\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 \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Network/networkInterfaces/nic0crptestps9762\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\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\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Compute/virtualMachines/vmcrptestps9762/extensions/BGInfo\",\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Azure.Diagnostics\",\r\n \"type\": \"IaaSDiagnostics\",\r\n \"typeHandlerVersion\": \"1.5\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yKF9Ub3RhbClcJSBQcm9jZXNzb3IgVGltZSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yIEluZm9ybWF0aW9uKF9Ub3RhbClcUHJvY2Vzc29yIEZyZXF1ZW5jeSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XEF2YWlsYWJsZSBCeXRlcyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcVENQdjZcU2VnbWVudHMgUmV0cmFuc21pdHRlZC9zZWMiIHNhbXBsZVJhdGU9IlBUMU0iIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFRDUHY0XFNlZ21lbnRzIFJldHJhbnNtaXR0ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrIEludGVyZmFjZSgqKVxCeXRlcyBTZW50L3NlYyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29yayBJbnRlcmZhY2UoKilcQnl0ZXMgUmVjZWl2ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Compute/virtualMachines/vmcrptestps9762/extensions/IaaSDiagnostics\",\r\n \"name\": \"IaaSDiagnostics\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Compute/virtualMachines/vmcrptestps9762\",\r\n \"name\": \"vmcrptestps9762\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "4518" @@ -2930,10 +2820,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130999764799930695" ], "x-ms-request-id": [ - "5e8b435b-e449-4712-9107-561efe40b7d6" + "c9a3d496-48e0-4f93-b129-457c9f56b3e8" ], "Cache-Control": [ "no-cache" @@ -2943,28 +2833,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14780" + "14936" ], "x-ms-correlation-request-id": [ - "9092550a-8d1a-46db-88fe-41aa5fa27563" + "778cb0b0-310e-48b6-bc70-2b3a283f0229" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T152615Z:9092550a-8d1a-46db-88fe-41aa5fa27563" + "NORTHCENTRALUS:20160222T101712Z:778cb0b0-310e-48b6-bc70-2b3a283f0229" ], "Date": [ - "Tue, 16 Feb 2016 15:26:14 GMT" + "Mon, 22 Feb 2016 10:17:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczI2OTE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Compute/virtualMachines/vmcrptestps9762?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczk3NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczk3NjI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fbff749c-981b-46de-ba96-4e64e5794086" + "e5c93089-f3e4-446f-81d5-23cc819e072b" ], "accept-language": [ "en-US" @@ -2973,7 +2863,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"7dbdc860-a1bc-4dc5-8185-dd49fda78b4b\",\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\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2691.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2691.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2691.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/networkInterfaces/nic0crptestps2691\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"type\": \"AzureCATExtensionHandler\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_A2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"osdisk.connminute\",\r\n \"value\": \"stocrptestps2691.minute\"\r\n },\r\n {\r\n \"key\": \"osdisk.connhour\",\r\n \"value\": \"stocrptestps2691.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.1\",\r\n \"value\": \"stocrptestps2691.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.1\",\r\n \"value\": \"stocrptestps2691.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.2\",\r\n \"value\": \"stocrptestps2691.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.2\",\r\n \"value\": \"stocrptestps2691.hour\"\r\n },\r\n {\r\n \"key\": \"stocrptestps2691.hour.uri\",\r\n \"value\": \"https://stocrptestps2691.table.core.windows.net/$MetricsHourPrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps2691.minute.uri\",\r\n \"value\": \"https://stocrptestps2691.table.core.windows.net/$MetricsMinutePrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps2691.hour.name\",\r\n \"value\": \"stocrptestps2691\"\r\n },\r\n {\r\n \"key\": \"stocrptestps2691.minute.name\",\r\n \"value\": \"stocrptestps2691\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps2691\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps2691.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691/extensions/AzureCATExtensionHandler\",\r\n \"name\": \"AzureCATExtensionHandler\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691/extensions/BGInfo\",\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Azure.Diagnostics\",\r\n \"type\": \"IaaSDiagnostics\",\r\n \"typeHandlerVersion\": \"1.5\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yKF9Ub3RhbClcJSBQcm9jZXNzb3IgVGltZSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yIEluZm9ybWF0aW9uKF9Ub3RhbClcUHJvY2Vzc29yIEZyZXF1ZW5jeSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XEF2YWlsYWJsZSBCeXRlcyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcVENQdjZcU2VnbWVudHMgUmV0cmFuc21pdHRlZC9zZWMiIHNhbXBsZVJhdGU9IlBUMU0iIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFRDUHY0XFNlZ21lbnRzIFJldHJhbnNtaXR0ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrIEludGVyZmFjZSgqKVxCeXRlcyBTZW50L3NlYyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29yayBJbnRlcmZhY2UoKilcQnl0ZXMgUmVjZWl2ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691/extensions/IaaSDiagnostics\",\r\n \"name\": \"IaaSDiagnostics\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691\",\r\n \"name\": \"vmcrptestps2691\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"3e37240e-26c3-4e0d-a1f0-bfc93fbf28bc\",\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\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps9762.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps9762.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps9762.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\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 \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Network/networkInterfaces/nic0crptestps9762\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"type\": \"AzureCATExtensionHandler\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_A2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"osdisk.connminute\",\r\n \"value\": \"stocrptestps9762.minute\"\r\n },\r\n {\r\n \"key\": \"osdisk.connhour\",\r\n \"value\": \"stocrptestps9762.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.1\",\r\n \"value\": \"stocrptestps9762.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.1\",\r\n \"value\": \"stocrptestps9762.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.2\",\r\n \"value\": \"stocrptestps9762.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.2\",\r\n \"value\": \"stocrptestps9762.hour\"\r\n },\r\n {\r\n \"key\": \"stocrptestps9762.hour.uri\",\r\n \"value\": \"https://stocrptestps9762.table.core.windows.net/$MetricsHourPrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps9762.minute.uri\",\r\n \"value\": \"https://stocrptestps9762.table.core.windows.net/$MetricsMinutePrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps9762.hour.name\",\r\n \"value\": \"stocrptestps9762\"\r\n },\r\n {\r\n \"key\": \"stocrptestps9762.minute.name\",\r\n \"value\": \"stocrptestps9762\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps9762\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps9762.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Compute/virtualMachines/vmcrptestps9762/extensions/AzureCATExtensionHandler\",\r\n \"name\": \"AzureCATExtensionHandler\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Compute/virtualMachines/vmcrptestps9762/extensions/BGInfo\",\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Azure.Diagnostics\",\r\n \"type\": \"IaaSDiagnostics\",\r\n \"typeHandlerVersion\": \"1.5\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yKF9Ub3RhbClcJSBQcm9jZXNzb3IgVGltZSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yIEluZm9ybWF0aW9uKF9Ub3RhbClcUHJvY2Vzc29yIEZyZXF1ZW5jeSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XEF2YWlsYWJsZSBCeXRlcyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcVENQdjZcU2VnbWVudHMgUmV0cmFuc21pdHRlZC9zZWMiIHNhbXBsZVJhdGU9IlBUMU0iIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFRDUHY0XFNlZ21lbnRzIFJldHJhbnNtaXR0ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrIEludGVyZmFjZSgqKVxCeXRlcyBTZW50L3NlYyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29yayBJbnRlcmZhY2UoKilcQnl0ZXMgUmVjZWl2ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Compute/virtualMachines/vmcrptestps9762/extensions/IaaSDiagnostics\",\r\n \"name\": \"IaaSDiagnostics\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Compute/virtualMachines/vmcrptestps9762\",\r\n \"name\": \"vmcrptestps9762\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "6804" @@ -2991,10 +2881,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130999764799930695" ], "x-ms-request-id": [ - "7a6221af-66bb-40f8-9f15-3eb4e776700a" + "245058a2-af90-445d-b40f-1ff00cfaf911" ], "Cache-Control": [ "no-cache" @@ -3004,28 +2894,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14765" + "14930" ], "x-ms-correlation-request-id": [ - "374b66c3-53fc-4890-b018-acd1f786b0bd" + "d3fc594f-aca6-4f0e-8ad9-56215e60d414" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T152919Z:374b66c3-53fc-4890-b018-acd1f786b0bd" + "NORTHCENTRALUS:20160222T101940Z:d3fc594f-aca6-4f0e-8ad9-56215e60d414" ], "Date": [ - "Tue, 16 Feb 2016 15:29:18 GMT" + "Mon, 22 Feb 2016 10:19:39 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczI2OTE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Compute/virtualMachines/vmcrptestps9762?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczk3NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczk3NjI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cecaaf3a-b691-4a56-8d8e-c005dc5e3234" + "96bf5bd0-5e54-4fae-bac9-ba80d022bd30" ], "accept-language": [ "en-US" @@ -3034,7 +2924,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"7dbdc860-a1bc-4dc5-8185-dd49fda78b4b\",\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\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2691.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2691.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2691.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/networkInterfaces/nic0crptestps2691\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"type\": \"AzureCATExtensionHandler\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_A2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"osdisk.connminute\",\r\n \"value\": \"stocrptestps2691.minute\"\r\n },\r\n {\r\n \"key\": \"osdisk.connhour\",\r\n \"value\": \"stocrptestps2691.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.1\",\r\n \"value\": \"stocrptestps2691.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.1\",\r\n \"value\": \"stocrptestps2691.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.2\",\r\n \"value\": \"stocrptestps2691.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.2\",\r\n \"value\": \"stocrptestps2691.hour\"\r\n },\r\n {\r\n \"key\": \"stocrptestps2691.hour.uri\",\r\n \"value\": \"https://stocrptestps2691.table.core.windows.net/$MetricsHourPrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps2691.minute.uri\",\r\n \"value\": \"https://stocrptestps2691.table.core.windows.net/$MetricsMinutePrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps2691.hour.name\",\r\n \"value\": \"stocrptestps2691\"\r\n },\r\n {\r\n \"key\": \"stocrptestps2691.minute.name\",\r\n \"value\": \"stocrptestps2691\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps2691\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps2691.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691/extensions/AzureCATExtensionHandler\",\r\n \"name\": \"AzureCATExtensionHandler\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691/extensions/BGInfo\",\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Azure.Diagnostics\",\r\n \"type\": \"IaaSDiagnostics\",\r\n \"typeHandlerVersion\": \"1.5\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yKF9Ub3RhbClcJSBQcm9jZXNzb3IgVGltZSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yIEluZm9ybWF0aW9uKF9Ub3RhbClcUHJvY2Vzc29yIEZyZXF1ZW5jeSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XEF2YWlsYWJsZSBCeXRlcyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcVENQdjZcU2VnbWVudHMgUmV0cmFuc21pdHRlZC9zZWMiIHNhbXBsZVJhdGU9IlBUMU0iIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFRDUHY0XFNlZ21lbnRzIFJldHJhbnNtaXR0ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrIEludGVyZmFjZSgqKVxCeXRlcyBTZW50L3NlYyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29yayBJbnRlcmZhY2UoKilcQnl0ZXMgUmVjZWl2ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691/extensions/IaaSDiagnostics\",\r\n \"name\": \"IaaSDiagnostics\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691\",\r\n \"name\": \"vmcrptestps2691\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"3e37240e-26c3-4e0d-a1f0-bfc93fbf28bc\",\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\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps9762.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps9762.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps9762.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\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 \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Network/networkInterfaces/nic0crptestps9762\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"type\": \"AzureCATExtensionHandler\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_A2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"osdisk.connminute\",\r\n \"value\": \"stocrptestps9762.minute\"\r\n },\r\n {\r\n \"key\": \"osdisk.connhour\",\r\n \"value\": \"stocrptestps9762.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.1\",\r\n \"value\": \"stocrptestps9762.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.1\",\r\n \"value\": \"stocrptestps9762.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.2\",\r\n \"value\": \"stocrptestps9762.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.2\",\r\n \"value\": \"stocrptestps9762.hour\"\r\n },\r\n {\r\n \"key\": \"stocrptestps9762.hour.uri\",\r\n \"value\": \"https://stocrptestps9762.table.core.windows.net/$MetricsHourPrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps9762.minute.uri\",\r\n \"value\": \"https://stocrptestps9762.table.core.windows.net/$MetricsMinutePrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps9762.hour.name\",\r\n \"value\": \"stocrptestps9762\"\r\n },\r\n {\r\n \"key\": \"stocrptestps9762.minute.name\",\r\n \"value\": \"stocrptestps9762\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps9762\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps9762.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Compute/virtualMachines/vmcrptestps9762/extensions/AzureCATExtensionHandler\",\r\n \"name\": \"AzureCATExtensionHandler\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Compute/virtualMachines/vmcrptestps9762/extensions/BGInfo\",\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Azure.Diagnostics\",\r\n \"type\": \"IaaSDiagnostics\",\r\n \"typeHandlerVersion\": \"1.5\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yKF9Ub3RhbClcJSBQcm9jZXNzb3IgVGltZSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yIEluZm9ybWF0aW9uKF9Ub3RhbClcUHJvY2Vzc29yIEZyZXF1ZW5jeSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XEF2YWlsYWJsZSBCeXRlcyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcVENQdjZcU2VnbWVudHMgUmV0cmFuc21pdHRlZC9zZWMiIHNhbXBsZVJhdGU9IlBUMU0iIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFRDUHY0XFNlZ21lbnRzIFJldHJhbnNtaXR0ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrIEludGVyZmFjZSgqKVxCeXRlcyBTZW50L3NlYyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29yayBJbnRlcmZhY2UoKilcQnl0ZXMgUmVjZWl2ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Compute/virtualMachines/vmcrptestps9762/extensions/IaaSDiagnostics\",\r\n \"name\": \"IaaSDiagnostics\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Compute/virtualMachines/vmcrptestps9762\",\r\n \"name\": \"vmcrptestps9762\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "6804" @@ -3052,10 +2942,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130999764799930695" ], "x-ms-request-id": [ - "50a4a9f9-3a95-42b7-b2a4-b734c6f4f42c" + "8a4d9939-01a2-472a-9987-561159f96418" ], "Cache-Control": [ "no-cache" @@ -3065,28 +2955,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14761" + "14928" ], "x-ms-correlation-request-id": [ - "c7d48d4b-5565-4433-af0d-da6f17e2e96b" + "b66b3a46-a515-457b-a58a-f3d954041a96" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T152951Z:c7d48d4b-5565-4433-af0d-da6f17e2e96b" + "NORTHCENTRALUS:20160222T101952Z:b66b3a46-a515-457b-a58a-f3d954041a96" ], "Date": [ - "Tue, 16 Feb 2016 15:29:51 GMT" + "Mon, 22 Feb 2016 10:19:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczI2OTE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Compute/virtualMachines/vmcrptestps9762?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczk3NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczk3NjI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e56890e7-b209-4c2f-b606-000318af1c7b" + "1ecba17d-9fdf-473a-a108-3330308be1aa" ], "accept-language": [ "en-US" @@ -3095,7 +2985,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"7dbdc860-a1bc-4dc5-8185-dd49fda78b4b\",\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\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2691.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2691.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2691.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/networkInterfaces/nic0crptestps2691\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"type\": \"AzureCATExtensionHandler\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_A2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"osdisk.connminute\",\r\n \"value\": \"stocrptestps2691.minute\"\r\n },\r\n {\r\n \"key\": \"osdisk.connhour\",\r\n \"value\": \"stocrptestps2691.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.1\",\r\n \"value\": \"stocrptestps2691.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.1\",\r\n \"value\": \"stocrptestps2691.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.2\",\r\n \"value\": \"stocrptestps2691.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.2\",\r\n \"value\": \"stocrptestps2691.hour\"\r\n },\r\n {\r\n \"key\": \"stocrptestps2691.hour.uri\",\r\n \"value\": \"https://stocrptestps2691.table.core.windows.net/$MetricsHourPrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps2691.minute.uri\",\r\n \"value\": \"https://stocrptestps2691.table.core.windows.net/$MetricsMinutePrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps2691.hour.name\",\r\n \"value\": \"stocrptestps2691\"\r\n },\r\n {\r\n \"key\": \"stocrptestps2691.minute.name\",\r\n \"value\": \"stocrptestps2691\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps2691\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps2691.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691/extensions/AzureCATExtensionHandler\",\r\n \"name\": \"AzureCATExtensionHandler\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691/extensions/BGInfo\",\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Azure.Diagnostics\",\r\n \"type\": \"IaaSDiagnostics\",\r\n \"typeHandlerVersion\": \"1.5\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yKF9Ub3RhbClcJSBQcm9jZXNzb3IgVGltZSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yIEluZm9ybWF0aW9uKF9Ub3RhbClcUHJvY2Vzc29yIEZyZXF1ZW5jeSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XEF2YWlsYWJsZSBCeXRlcyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcVENQdjZcU2VnbWVudHMgUmV0cmFuc21pdHRlZC9zZWMiIHNhbXBsZVJhdGU9IlBUMU0iIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFRDUHY0XFNlZ21lbnRzIFJldHJhbnNtaXR0ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrIEludGVyZmFjZSgqKVxCeXRlcyBTZW50L3NlYyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29yayBJbnRlcmZhY2UoKilcQnl0ZXMgUmVjZWl2ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691/extensions/IaaSDiagnostics\",\r\n \"name\": \"IaaSDiagnostics\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691\",\r\n \"name\": \"vmcrptestps2691\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"3e37240e-26c3-4e0d-a1f0-bfc93fbf28bc\",\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\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps9762.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps9762.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps9762.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\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 \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Network/networkInterfaces/nic0crptestps9762\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"type\": \"AzureCATExtensionHandler\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_A2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"osdisk.connminute\",\r\n \"value\": \"stocrptestps9762.minute\"\r\n },\r\n {\r\n \"key\": \"osdisk.connhour\",\r\n \"value\": \"stocrptestps9762.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.1\",\r\n \"value\": \"stocrptestps9762.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.1\",\r\n \"value\": \"stocrptestps9762.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.2\",\r\n \"value\": \"stocrptestps9762.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.2\",\r\n \"value\": \"stocrptestps9762.hour\"\r\n },\r\n {\r\n \"key\": \"stocrptestps9762.hour.uri\",\r\n \"value\": \"https://stocrptestps9762.table.core.windows.net/$MetricsHourPrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps9762.minute.uri\",\r\n \"value\": \"https://stocrptestps9762.table.core.windows.net/$MetricsMinutePrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps9762.hour.name\",\r\n \"value\": \"stocrptestps9762\"\r\n },\r\n {\r\n \"key\": \"stocrptestps9762.minute.name\",\r\n \"value\": \"stocrptestps9762\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps9762\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps9762.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Compute/virtualMachines/vmcrptestps9762/extensions/AzureCATExtensionHandler\",\r\n \"name\": \"AzureCATExtensionHandler\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Compute/virtualMachines/vmcrptestps9762/extensions/BGInfo\",\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Azure.Diagnostics\",\r\n \"type\": \"IaaSDiagnostics\",\r\n \"typeHandlerVersion\": \"1.5\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yKF9Ub3RhbClcJSBQcm9jZXNzb3IgVGltZSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yIEluZm9ybWF0aW9uKF9Ub3RhbClcUHJvY2Vzc29yIEZyZXF1ZW5jeSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XEF2YWlsYWJsZSBCeXRlcyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcVENQdjZcU2VnbWVudHMgUmV0cmFuc21pdHRlZC9zZWMiIHNhbXBsZVJhdGU9IlBUMU0iIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFRDUHY0XFNlZ21lbnRzIFJldHJhbnNtaXR0ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrIEludGVyZmFjZSgqKVxCeXRlcyBTZW50L3NlYyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29yayBJbnRlcmZhY2UoKilcQnl0ZXMgUmVjZWl2ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Compute/virtualMachines/vmcrptestps9762/extensions/IaaSDiagnostics\",\r\n \"name\": \"IaaSDiagnostics\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Compute/virtualMachines/vmcrptestps9762\",\r\n \"name\": \"vmcrptestps9762\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "6804" @@ -3113,10 +3003,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130999764799930695" ], "x-ms-request-id": [ - "39059582-b208-4676-8bef-da28d0ee5934" + "04608f8d-8752-4572-8766-bbf267290fad" ], "Cache-Control": [ "no-cache" @@ -3126,28 +3016,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14793" + "14926" ], "x-ms-correlation-request-id": [ - "b0d69ff7-7d14-4abf-b810-da6b83a31f2b" + "74b4e35c-7224-4091-9c0c-227c0c8423be" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T160124Z:b0d69ff7-7d14-4abf-b810-da6b83a31f2b" + "NORTHCENTRALUS:20160222T101957Z:74b4e35c-7224-4091-9c0c-227c0c8423be" ], "Date": [ - "Tue, 16 Feb 2016 16:01:23 GMT" + "Mon, 22 Feb 2016 10:19:57 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczI2OTE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Compute/virtualMachines/vmcrptestps9762?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczk3NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczk3NjI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "196fb6c8-b10e-40d8-979f-57608644bf9f" + "2dd6d876-8693-4a3f-bf31-2b7697c9c6c0" ], "accept-language": [ "en-US" @@ -3156,7 +3046,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"7dbdc860-a1bc-4dc5-8185-dd49fda78b4b\",\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\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2691.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2691.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2691.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/networkInterfaces/nic0crptestps2691\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\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\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691/extensions/BGInfo\",\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Azure.Diagnostics\",\r\n \"type\": \"IaaSDiagnostics\",\r\n \"typeHandlerVersion\": \"1.5\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yKF9Ub3RhbClcJSBQcm9jZXNzb3IgVGltZSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yIEluZm9ybWF0aW9uKF9Ub3RhbClcUHJvY2Vzc29yIEZyZXF1ZW5jeSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XEF2YWlsYWJsZSBCeXRlcyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcVENQdjZcU2VnbWVudHMgUmV0cmFuc21pdHRlZC9zZWMiIHNhbXBsZVJhdGU9IlBUMU0iIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFRDUHY0XFNlZ21lbnRzIFJldHJhbnNtaXR0ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrIEludGVyZmFjZSgqKVxCeXRlcyBTZW50L3NlYyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29yayBJbnRlcmZhY2UoKilcQnl0ZXMgUmVjZWl2ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691/extensions/IaaSDiagnostics\",\r\n \"name\": \"IaaSDiagnostics\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691\",\r\n \"name\": \"vmcrptestps2691\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"3e37240e-26c3-4e0d-a1f0-bfc93fbf28bc\",\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\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps9762.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps9762.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps9762.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\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 \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Network/networkInterfaces/nic0crptestps9762\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\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\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Compute/virtualMachines/vmcrptestps9762/extensions/BGInfo\",\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Azure.Diagnostics\",\r\n \"type\": \"IaaSDiagnostics\",\r\n \"typeHandlerVersion\": \"1.5\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yKF9Ub3RhbClcJSBQcm9jZXNzb3IgVGltZSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yIEluZm9ybWF0aW9uKF9Ub3RhbClcUHJvY2Vzc29yIEZyZXF1ZW5jeSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XEF2YWlsYWJsZSBCeXRlcyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcVENQdjZcU2VnbWVudHMgUmV0cmFuc21pdHRlZC9zZWMiIHNhbXBsZVJhdGU9IlBUMU0iIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFRDUHY0XFNlZ21lbnRzIFJldHJhbnNtaXR0ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrIEludGVyZmFjZSgqKVxCeXRlcyBTZW50L3NlYyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29yayBJbnRlcmZhY2UoKilcQnl0ZXMgUmVjZWl2ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Compute/virtualMachines/vmcrptestps9762/extensions/IaaSDiagnostics\",\r\n \"name\": \"IaaSDiagnostics\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Compute/virtualMachines/vmcrptestps9762\",\r\n \"name\": \"vmcrptestps9762\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "4518" @@ -3174,10 +3064,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130999764799930695" ], "x-ms-request-id": [ - "6409e8e2-66c6-4a08-9197-d05738c6e2f0" + "69a6eff4-f546-4f85-8d57-e06c3099ea91" ], "Cache-Control": [ "no-cache" @@ -3187,28 +3077,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14787" + "14924" ], "x-ms-correlation-request-id": [ - "1c8701e0-2e23-4d60-ac30-872f6484f357" + "a03c4e51-2d84-4044-b1da-aee25847e4e8" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T160225Z:1c8701e0-2e23-4d60-ac30-872f6484f357" + "NORTHCENTRALUS:20160222T102059Z:a03c4e51-2d84-4044-b1da-aee25847e4e8" ], "Date": [ - "Tue, 16 Feb 2016 16:02:24 GMT" + "Mon, 22 Feb 2016 10:20:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/publishers?api-version=2015-06-15", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/publishers?api-version=2015-06-15", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3b272547-2ea1-4909-a258-6e30738850b5" + "c04615ed-b365-4a57-a89d-6b3a11c1967d" ], "accept-language": [ "en-US" @@ -3217,10 +3107,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4ward365\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/4ward365\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"active-navigation\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/active-navigation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"adam-software\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/adam-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"adatao\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/adatao\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"adobe\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/adobe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"adobe_test\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/adobe_test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"adra-match\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/adra-match\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aimsinnovation\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/aimsinnovation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"algebraix-data\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/algebraix-data\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alteryx\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/alteryx\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"altiar\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/altiar\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appcelerator\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/appcelerator\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appcitoinc\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/appcitoinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"apprenda\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/apprenda\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appveyorci\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/appveyorci\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appzero\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/appzero\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"array_networks\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/array_networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aspex-managed-cloud\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/aspex-managed-cloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"avepoint\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/avepoint\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aviatrix-systems\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/aviatrix-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"axway\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/axway\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azuresyncfusion\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/azuresyncfusion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bizagi\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/bizagi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"biztalk360\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/biztalk360\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blackberry\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/blackberry\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"boundlessgeo\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/boundlessgeo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"brocade_communications\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/brocade_communications\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bwappengine\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/bwappengine\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"caringo\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/caringo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cautelalabs\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/cautelalabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"checkpointsystems\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/checkpointsystems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cherwell\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/cherwell\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cisco\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/cisco\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"citrix\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/citrix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"clickberry\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/clickberry\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloud-cruiser\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloud-cruiser\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudbolt-software\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudbolt-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudera1qaz2wsx\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudera1qaz2wsx\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudhouse\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudhouse\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"CloudLinkEMC.SecureVM.Test\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/CloudLinkEMC.SecureVM.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Confer.TestSensor\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Confer.TestSensor\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"consensys\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/consensys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cordis\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/cordis\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cortical-io\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/cortical-io\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"credativ\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/credativ\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Dans.Windows.App\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Dans.Windows.App\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Dans2.Windows.App\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Dans2.Windows.App\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Dans3.Windows.App\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Dans3.Windows.App\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datacastle\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/datacastle\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dataexpeditioninc\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/dataexpeditioninc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dataiku\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/dataiku\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dataliberation\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/dataliberation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datasunrise\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/datasunrise\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"defacto_global_\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/defacto_global_\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dell-software\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/dell-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"denyall\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/denyall\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"docscorp-us\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/docscorp-us\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dolbydeveloper\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/dolbydeveloper\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dome9\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/dome9\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"donovapub\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/donovapub\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"easyterritory\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/easyterritory\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"edevtech\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/edevtech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"egress\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/egress\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eip\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/eip\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eip-eipower\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/eip-eipower\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elastacloud\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/elastacloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eloquera\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/eloquera\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eperi\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/eperi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ESET.FileSecurity\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/ESET.FileSecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eurotech\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/eurotech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"exit-games\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/exit-games\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"expertime\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/expertime\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"filebridge\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/filebridge\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"flexerasoftware\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/flexerasoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"forscene\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/forscene\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fortycloud\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/fortycloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fw\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/fw\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"g-data-software\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/g-data-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"greathorn\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/greathorn\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"haivision\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/haivision\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"halobicloud\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/halobicloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iamcloud\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/iamcloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ibabs-eu\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/ibabs-eu\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"imaginecommunications\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/imaginecommunications\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"imc\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/imc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"imperva\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/imperva\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"incredibuild\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/incredibuild\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"informatica\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/informatica\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infostrat\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/infostrat\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intel\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/intel\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ishlangu-load-balancer-adc\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/ishlangu-load-balancer-adc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jedox\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/jedox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jitterbit_integration\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/jitterbit_integration\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kepion\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/kepion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kollective\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/kollective\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"le\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/le\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lieberlieber\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/lieberlieber\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"LocalTest.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/LocalTest.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"logi-analytics\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/logi-analytics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"loginpeople\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/loginpeople\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"luxoft\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/luxoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"magelia\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/magelia\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"manageengine\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/manageengine\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mariadb\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/mariadb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mediazenie\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/mediazenie\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"memsql\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/memsql\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mendix\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/mendix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mentalnotes\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/mentalnotes\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mesosphere\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/mesosphere\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-ads\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-ads\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-r-products\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-r-products\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.Internal\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.Internal\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Test\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.SiteRecovery.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.OSTCExtensions.Test\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.OSTCExtensions.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Install\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Install\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Internal\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Internal\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.PaaS\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.PaaS\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Preview\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Preview\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Telemetry\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Telemetry\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Test.0\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Test.0\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Test.1\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Test.1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Test0\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Test0\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Test2\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Test2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Test3\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Test3\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.UtcTest\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.UtcTest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Wmf\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Wmf\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Wmf4Test\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Wmf4Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Wmf5\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Wmf5\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.ETWTraceListenerService\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.Azure.ETWTraceListenerService\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.ServiceProfiler\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.ServiceProfiler\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.ServiceProfiler.Test\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.ServiceProfiler.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftWindowsServerRemoteDesktop\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerRemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"miracl_linux\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/miracl_linux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mokxa-technologies\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/mokxa-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nasuni\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/nasuni\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"new-signature\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/new-signature\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nextlimit\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/nextlimit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nexus\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/nexus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nuxeo\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/nuxeo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"officeclipsuite\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/officeclipsuite\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"op5\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/op5\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"openmeap\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/openmeap\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"opennebulasystems\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/opennebulasystems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"opentext\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/opentext\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"panzura-file-system\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/panzura-file-system\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pointmatter\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/pointmatter\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"predictionio\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/predictionio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"predixion\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/predixion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"prime-strategy\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/prime-strategy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"primestream\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/primestream\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ptv_group\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/ptv_group\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pxlag_swiss\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/pxlag_swiss\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"quasardb\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/quasardb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"RedHat\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/RedHat\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rocketsoftware\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/rocketsoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rocket_software\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/rocket_software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"saama\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/saama\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scalebase\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/scalebase\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"searchblox\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/searchblox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sensorberg\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/sensorberg\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"servoy\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/servoy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"shavlik\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/shavlik\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"snip2code\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/snip2code\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stonefly\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/stonefly\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"storreduce\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/storreduce\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stratalux\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/stratalux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sunview-software\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/sunview-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"talon\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/talon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tentity\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/tentity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.HP.AppDefender\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.HP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity2\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.TrendMicro.DeepSecurity2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity3\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.TrendMicro.DeepSecurity3\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test1.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test1.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thinkboxsoftware\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/thinkboxsoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"topdesk\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/topdesk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test2\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/TrendMicro.DeepSecurity.Test2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unidesk\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/unidesk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unidesk-corp\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/unidesk-corp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vbot\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/vbot\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vecompsoftware\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/vecompsoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vircom\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/vircom\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"virtualworks\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/virtualworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vmturbo\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/vmturbo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Vormetric.VormetricTransparentEncryption\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Vormetric.VormetricTransparentEncryption\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"WAD-VMSS.Test\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/WAD-VMSS.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"WAD2AI.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/WAD2AI.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"WADVMSS.Test\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/WADVMSS.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"waratek\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/waratek\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"warewolf-esb\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/warewolf-esb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"watchfulsoftware\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/watchfulsoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xebialabs\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/xebialabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xmpro\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/xmpro\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xrm\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/xrm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zementis\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/zementis\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/zend\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zoomdata\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/zoomdata\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4ward365\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/4ward365\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Acronis\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Acronis\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Acronis2\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Acronis2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"active-navigation\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/active-navigation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"adam-software\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/adam-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"adatao\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/adatao\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"adobe\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/adobe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"adobe_test\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/adobe_test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"adra-match\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/adra-match\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aimsinnovation\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/aimsinnovation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"algebraix-data\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/algebraix-data\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alteryx\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/alteryx\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"altiar\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/altiar\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appcelerator\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/appcelerator\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appcitoinc\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/appcitoinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"apprenda\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/apprenda\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appveyorci\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/appveyorci\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appzero\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/appzero\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"array_networks\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/array_networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aspex-managed-cloud\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/aspex-managed-cloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"avepoint\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/avepoint\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aviatrix-systems\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/aviatrix-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"axway\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/axway\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azuresyncfusion\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/azuresyncfusion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bizagi\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/bizagi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"biztalk360\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/biztalk360\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blackberry\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/blackberry\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"boundlessgeo\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/boundlessgeo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"brocade_communications\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/brocade_communications\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bwappengine\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/bwappengine\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"caringo\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/caringo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cautelalabs\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/cautelalabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"checkpointsystems\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/checkpointsystems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cherwell\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/cherwell\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cisco\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/cisco\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"citrix\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/citrix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"clickberry\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/clickberry\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloud-cruiser\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloud-cruiser\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudbees\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudbees\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudbolt-software\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudbolt-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudera1qaz2wsx\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudera1qaz2wsx\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudhouse\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudhouse\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"CloudLinkEMC.SecureVM.Test\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/CloudLinkEMC.SecureVM.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Confer.TestSensor\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Confer.TestSensor\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"consensys\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/consensys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cordis\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/cordis\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cortical-io\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/cortical-io\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"credativ\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/credativ\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Dans.Windows.App\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Dans.Windows.App\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Dans2.Windows.App\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Dans2.Windows.App\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Dans3.Windows.App\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Dans3.Windows.App\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datacastle\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/datacastle\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dataexpeditioninc\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/dataexpeditioninc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dataiku\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/dataiku\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dataliberation\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/dataliberation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datasunrise\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/datasunrise\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"defacto_global_\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/defacto_global_\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dell-software\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/dell-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"denyall\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/denyall\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"docscorp-us\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/docscorp-us\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dolbydeveloper\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/dolbydeveloper\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dome9\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/dome9\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"donovapub\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/donovapub\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"easyterritory\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/easyterritory\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"edevtech\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/edevtech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"egress\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/egress\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eip\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/eip\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eip-eipower\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/eip-eipower\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elastacloud\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/elastacloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eloquera\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/eloquera\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eperi\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/eperi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ESET.FileSecurity\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/ESET.FileSecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eurotech\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/eurotech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"exit-games\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/exit-games\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"expertime\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/expertime\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"filebridge\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/filebridge\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"flexerasoftware\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/flexerasoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"forscene\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/forscene\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fortycloud\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/fortycloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fw\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/fw\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"g-data-software\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/g-data-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"greathorn\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/greathorn\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"haivision\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/haivision\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"halobicloud\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/halobicloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iamcloud\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/iamcloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ibabs-eu\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/ibabs-eu\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"imaginecommunications\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/imaginecommunications\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"imc\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/imc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"imperva\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/imperva\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"incredibuild\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/incredibuild\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"informatica\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/informatica\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infostrat\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/infostrat\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intel\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/intel\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ishlangu-load-balancer-adc\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/ishlangu-load-balancer-adc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jedox\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/jedox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jitterbit_integration\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/jitterbit_integration\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kepion\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/kepion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kollective\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/kollective\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"le\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/le\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lieberlieber\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/lieberlieber\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"LocalTest.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/LocalTest.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"logi-analytics\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/logi-analytics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"loginpeople\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/loginpeople\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"luxoft\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/luxoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"magelia\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/magelia\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"manageengine\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/manageengine\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mariadb\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/mariadb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mediazenie\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/mediazenie\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"memsql\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/memsql\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mendix\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/mendix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mentalnotes\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/mentalnotes\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mesosphere\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/mesosphere\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-ads\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-ads\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-r-products\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-r-products\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.Internal\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.Internal\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Test\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.SiteRecovery.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.OSTCExtensions.Test\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.OSTCExtensions.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Install\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Install\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Internal\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Internal\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.PaaS\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.PaaS\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Preview\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Preview\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Release.Test\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Release.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Telemetry\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Telemetry\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Test.0\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Test.0\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Test.1\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Test.1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Test0\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Test0\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Test2\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Test2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Test3\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Test3\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.UtcTest\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.UtcTest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Wmf\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Wmf\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Wmf4Test\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Wmf4Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Wmf5\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Wmf5\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.WmfRTM\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.WmfRTM\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.ETWTraceListenerService\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.Azure.ETWTraceListenerService\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.ServiceProfiler\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.ServiceProfiler\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.ServiceProfiler.Test\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.ServiceProfiler.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftWindowsServerRemoteDesktop\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerRemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"miracl_linux\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/miracl_linux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mokxa-technologies\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/mokxa-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"msrazuresapservices\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/msrazuresapservices\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nasuni\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/nasuni\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"new-signature\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/new-signature\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nextlimit\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/nextlimit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nexus\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/nexus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nuxeo\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/nuxeo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"officeclipsuite\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/officeclipsuite\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"op5\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/op5\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"openmeap\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/openmeap\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"opennebulasystems\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/opennebulasystems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"opentext\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/opentext\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"panzura-file-system\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/panzura-file-system\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pointmatter\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/pointmatter\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"predictionio\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/predictionio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"predixion\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/predixion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"prime-strategy\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/prime-strategy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"primestream\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/primestream\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ptv_group\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/ptv_group\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pxlag_swiss\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/pxlag_swiss\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"quasardb\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/quasardb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"RedHat\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/RedHat\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rocketsoftware\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/rocketsoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rocket_software\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/rocket_software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"saama\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/saama\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scalebase\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/scalebase\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"searchblox\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/searchblox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sensorberg\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/sensorberg\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"servoy\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/servoy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"shavlik\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/shavlik\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"snip2code\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/snip2code\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stonefly\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/stonefly\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"storreduce\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/storreduce\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stratalux\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/stratalux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sunview-software\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/sunview-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"talon\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/talon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tentity\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/tentity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.HP.AppDefender\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.HP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity2\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.TrendMicro.DeepSecurity2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity3\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.TrendMicro.DeepSecurity3\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test1.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test1.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thinkboxsoftware\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/thinkboxsoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"topdesk\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/topdesk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test2\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/TrendMicro.DeepSecurity.Test2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unidesk\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/unidesk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unidesk-corp\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/unidesk-corp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vbot\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/vbot\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vecompsoftware\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/vecompsoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vircom\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/vircom\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"virtualworks\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/virtualworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vmturbo\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/vmturbo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Vormetric.VormetricTransparentEncryption\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Vormetric.VormetricTransparentEncryption\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"WAD-VMSS.Test\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/WAD-VMSS.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"WAD2AI.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/WAD2AI.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"WADVMSS.Test\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/WADVMSS.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"waratek\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/waratek\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"warewolf-esb\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/warewolf-esb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"watchfulsoftware\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/watchfulsoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xebialabs\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/xebialabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xmpro\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/xmpro\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xrm\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/xrm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zementis\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/zementis\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/zend\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zoomdata\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/zoomdata\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "75349" + "76443" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3235,7 +3125,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3b77b967-2194-460d-b328-5df2c8a7d998" + "dc44b444-560d-468a-ba32-5702471b80c8" ], "Cache-Control": [ "no-cache" @@ -3245,28 +3135,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14803" + "14960" ], "x-ms-correlation-request-id": [ - "a2215dab-6a9b-4a4c-ae8d-b4542040058a" + "e0216ca4-59f4-4b1d-badc-1cc440287953" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T152158Z:a2215dab-6a9b-4a4c-ae8d-b4542040058a" + "NORTHCENTRALUS:20160222T100700Z:e0216ca4-59f4-4b1d-badc-1cc440287953" ], "Date": [ - "Tue, 16 Feb 2016 15:21:58 GMT" + "Mon, 22 Feb 2016 10:06:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types?api-version=2015-06-15", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types?api-version=2015-06-15", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4b822928-28c4-45cb-a1d3-3c8d4051524d" + "59ba7455-f977-4eef-89fe-ab755aef6cdd" ], "accept-language": [ "en-US" @@ -3275,7 +3165,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"CustomScriptExtension\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"JsonADDomainExtension\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/JsonADDomainExtension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"VMAccessAgent\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"CustomScriptExtension\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"JsonADDomainExtension\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/JsonADDomainExtension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"VMAccessAgent\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "1033" @@ -3293,7 +3183,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d2f83ac8-b3ff-47af-8b26-00e4cfcc221b" + "18956237-2880-452f-a605-20084925989e" ], "Cache-Control": [ "no-cache" @@ -3303,28 +3193,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14802" + "14959" ], "x-ms-correlation-request-id": [ - "de965209-1e2b-46e2-abf0-1a7d0276fe6f" + "a5bcacab-84f3-4af3-9de1-f70f2fc07c3a" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T152158Z:de965209-1e2b-46e2-abf0-1a7d0276fe6f" + "NORTHCENTRALUS:20160222T100700Z:a5bcacab-84f3-4af3-9de1-f70f2fc07c3a" ], "Date": [ - "Tue, 16 Feb 2016 15:21:58 GMT" + "Mon, 22 Feb 2016 10:06:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/BGInfo/versions?api-version=2015-06-15", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/BGInfo/versions?api-version=2015-06-15", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9CR0luZm8vdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b0ba4761-3515-4b76-9e96-e184c923bada" + "8220be73-5ed4-48f1-a802-1f724e80f6e8" ], "accept-language": [ "en-US" @@ -3333,7 +3223,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"name\": \"2.1\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/Subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/2.1\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2.1\",\r\n \"id\": \"/Subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/2.1\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "252" @@ -3351,7 +3241,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f84f2647-40da-4742-a04d-a2a2471c79eb" + "03fb230e-acf3-42d8-bf9f-46ada22fd160" ], "Cache-Control": [ "no-cache" @@ -3361,23 +3251,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14801" + "14958" ], "x-ms-correlation-request-id": [ - "12e45275-863d-46e6-8b81-3e428faab2ed" + "ab5ad55c-5c1b-4571-b449-25cf946c56fd" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T152158Z:12e45275-863d-46e6-8b81-3e428faab2ed" + "NORTHCENTRALUS:20160222T100700Z:ab5ad55c-5c1b-4571-b449-25cf946c56fd" ], "Date": [ - "Tue, 16 Feb 2016 15:21:58 GMT" + "Mon, 22 Feb 2016 10:07:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691/extensions/BGInfo?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczI2OTEvZXh0ZW5zaW9ucy9CR0luZm8/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Compute/virtualMachines/vmcrptestps9762/extensions/BGInfo?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczk3NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczk3NjIvZXh0ZW5zaW9ucy9CR0luZm8/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true\r\n }\r\n}", "RequestHeaders": { @@ -3388,7 +3278,7 @@ "187" ], "x-ms-client-request-id": [ - "28c792c2-6903-4bd3-9ce2-76e61c8b7a92" + "0fab0dff-2807-4873-8750-6dbe48d47eb8" ], "accept-language": [ "en-US" @@ -3397,7 +3287,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691/extensions/BGInfo\",\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Compute/virtualMachines/vmcrptestps9762/extensions/BGInfo\",\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "475" @@ -3412,16 +3302,16 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/7a26e0f5-a2a5-4833-83d7-4c730bb441da?api-version=2015-06-15" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/9a15b57d-5721-4989-b77a-358ad0375a12?api-version=2015-06-15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130999764799930695" ], "x-ms-request-id": [ - "7a26e0f5-a2a5-4833-83d7-4c730bb441da" + "9a15b57d-5721-4989-b77a-358ad0375a12" ], "Cache-Control": [ "no-cache" @@ -3431,23 +3321,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1198" ], "x-ms-correlation-request-id": [ - "5a6aeb1b-73e5-4e55-a786-a4750d90228a" + "92a2814e-5c82-45d1-97ec-c634c589ec86" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T152203Z:5a6aeb1b-73e5-4e55-a786-a4750d90228a" + "NORTHCENTRALUS:20160222T100703Z:92a2814e-5c82-45d1-97ec-c634c589ec86" ], "Date": [ - "Tue, 16 Feb 2016 15:22:03 GMT" + "Mon, 22 Feb 2016 10:07:03 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/7a26e0f5-a2a5-4833-83d7-4c730bb441da?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvN2EyNmUwZjUtYTJhNS00ODMzLTgzZDctNGM3MzBiYjQ0MWRhP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/9a15b57d-5721-4989-b77a-358ad0375a12?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOWExNWI1N2QtNTcyMS00OTg5LWI3N2EtMzU4YWQwMzc1YTEyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3455,7 +3345,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"7a26e0f5-a2a5-4833-83d7-4c730bb441da\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T16:22:01.1399099+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"9a15b57d-5721-4989-b77a-358ad0375a12\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-22T11:07:02.0994686+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3473,10 +3363,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130999764799930695" ], "x-ms-request-id": [ - "463a924e-6e8d-4cd3-bd9e-9b31f6517648" + "b4509c9f-3d5e-4447-8c10-3acc457afb5d" ], "Cache-Control": [ "no-cache" @@ -3486,23 +3376,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14797" + "14956" ], "x-ms-correlation-request-id": [ - "bc55c2b8-1335-41ed-9755-7af4236aca48" + "c0550c3b-6a79-4a34-a466-99142eb47352" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T152233Z:bc55c2b8-1335-41ed-9755-7af4236aca48" + "NORTHCENTRALUS:20160222T100733Z:c0550c3b-6a79-4a34-a466-99142eb47352" ], "Date": [ - "Tue, 16 Feb 2016 15:22:33 GMT" + "Mon, 22 Feb 2016 10:07:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/7a26e0f5-a2a5-4833-83d7-4c730bb441da?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvN2EyNmUwZjUtYTJhNS00ODMzLTgzZDctNGM3MzBiYjQ0MWRhP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/9a15b57d-5721-4989-b77a-358ad0375a12?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOWExNWI1N2QtNTcyMS00OTg5LWI3N2EtMzU4YWQwMzc1YTEyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3510,7 +3400,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"7a26e0f5-a2a5-4833-83d7-4c730bb441da\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T16:22:01.1399099+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"9a15b57d-5721-4989-b77a-358ad0375a12\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-22T11:07:02.0994686+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3528,10 +3418,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130999764799930695" ], "x-ms-request-id": [ - "ee151cbe-536a-4f00-ad62-f891d4138597" + "db12c226-2cfb-4ee2-a1ca-2737aad939da" ], "Cache-Control": [ "no-cache" @@ -3541,23 +3431,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14795" + "14955" ], "x-ms-correlation-request-id": [ - "b3f7032b-f1e7-4a75-9e72-49af581477d5" + "bc66d3e0-2ed4-418b-80c9-db5a49087201" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T152303Z:b3f7032b-f1e7-4a75-9e72-49af581477d5" + "NORTHCENTRALUS:20160222T100803Z:bc66d3e0-2ed4-418b-80c9-db5a49087201" ], "Date": [ - "Tue, 16 Feb 2016 15:23:03 GMT" + "Mon, 22 Feb 2016 10:08:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/7a26e0f5-a2a5-4833-83d7-4c730bb441da?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvN2EyNmUwZjUtYTJhNS00ODMzLTgzZDctNGM3MzBiYjQ0MWRhP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/9a15b57d-5721-4989-b77a-358ad0375a12?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOWExNWI1N2QtNTcyMS00OTg5LWI3N2EtMzU4YWQwMzc1YTEyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3565,7 +3455,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"7a26e0f5-a2a5-4833-83d7-4c730bb441da\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-02-16T16:22:01.1399099+01:00\",\r\n \"endTime\": \"2016-02-16T16:23:21.7175127+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"9a15b57d-5721-4989-b77a-358ad0375a12\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-02-22T11:07:02.0994686+01:00\",\r\n \"endTime\": \"2016-02-22T11:08:23.9114288+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "191" @@ -3583,10 +3473,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130999764799930695" ], "x-ms-request-id": [ - "2a1d6573-ea96-4906-8766-4c64f527950d" + "42828c36-95eb-48d9-b7cb-a63f8f033f12" ], "Cache-Control": [ "no-cache" @@ -3596,23 +3486,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14792" + "14953" ], "x-ms-correlation-request-id": [ - "62712e0c-06fb-4f1f-a881-45143cff9f87" + "e6a066a3-0bc0-4e5c-82de-433b998fdcf1" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T152333Z:62712e0c-06fb-4f1f-a881-45143cff9f87" + "NORTHCENTRALUS:20160222T100833Z:e6a066a3-0bc0-4e5c-82de-433b998fdcf1" ], "Date": [ - "Tue, 16 Feb 2016 15:23:33 GMT" + "Mon, 22 Feb 2016 10:08:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691/extensions/BGInfo?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczI2OTEvZXh0ZW5zaW9ucy9CR0luZm8/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Compute/virtualMachines/vmcrptestps9762/extensions/BGInfo?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczk3NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczk3NjIvZXh0ZW5zaW9ucy9CR0luZm8/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3620,7 +3510,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691/extensions/BGInfo\",\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Compute/virtualMachines/vmcrptestps9762/extensions/BGInfo\",\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "476" @@ -3638,10 +3528,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130999764799930695" ], "x-ms-request-id": [ - "15243d60-969e-43a5-9f1e-92a6e14b5a5a" + "0e7db79c-24d9-4829-9a00-18764a82d505" ], "Cache-Control": [ "no-cache" @@ -3651,28 +3541,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14791" + "14952" ], "x-ms-correlation-request-id": [ - "f4694034-7eeb-4597-ab99-1fe1011efa53" + "1e0e768b-b69d-4790-882e-a2af839f320a" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T152334Z:f4694034-7eeb-4597-ab99-1fe1011efa53" + "NORTHCENTRALUS:20160222T100834Z:1e0e768b-b69d-4790-882e-a2af839f320a" ], "Date": [ - "Tue, 16 Feb 2016 15:23:34 GMT" + "Mon, 22 Feb 2016 10:08:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691?$expand=instanceView&api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczI2OTE/JGV4cGFuZD1pbnN0YW5jZVZpZXcmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Compute/virtualMachines/vmcrptestps9762?$expand=instanceView&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczk3NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczk3NjI/JGV4cGFuZD1pbnN0YW5jZVZpZXcmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "afadc78c-2d0e-4133-99df-c2846ec77a81" + "75fcda68-03be-4229-a66c-ad0914c371c7" ], "accept-language": [ "en-US" @@ -3681,7 +3571,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"7dbdc860-a1bc-4dc5-8185-dd49fda78b4b\",\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\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2691.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2691.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2691.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/networkInterfaces/nic0crptestps2691\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.7.1198.735\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"GuestAgent is running and accepting new configurations.\",\r\n \"time\": \"2016-02-16T16:23:34+01:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": [\r\n {\r\n \"type\": \"Microsoft.Compute.BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"Plugin enabled (name: Microsoft.Compute.BGInfo, version: 2.1).\"\r\n }\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"osDisk\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T16:22:01.5618017+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T16:22:01.6867815+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T16:22:01.6867815+01:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"extensions\": [\r\n {\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute.BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"Plugin enabled (name: Microsoft.Compute.BGInfo, version: 2.1).\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T16:23:21.6550201+01:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691/extensions/BGInfo\",\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691\",\r\n \"name\": \"vmcrptestps2691\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"3e37240e-26c3-4e0d-a1f0-bfc93fbf28bc\",\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\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps9762.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps9762.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps9762.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\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 \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Network/networkInterfaces/nic0crptestps9762\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.7.1198.735\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"GuestAgent is running and accepting new configurations.\",\r\n \"time\": \"2016-02-22T11:14:23+01:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": [\r\n {\r\n \"type\": \"Microsoft.Compute.BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"Plugin enabled (name: Microsoft.Compute.BGInfo, version: 2.1).\"\r\n }\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"osDisk\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-22T11:07:02.9431928+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-22T11:07:03.0368979+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-22T11:07:03.0368979+01:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"extensions\": [\r\n {\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute.BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"Plugin enabled (name: Microsoft.Compute.BGInfo, version: 2.1).\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-22T11:08:23.8020373+01:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Compute/virtualMachines/vmcrptestps9762/extensions/BGInfo\",\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Compute/virtualMachines/vmcrptestps9762\",\r\n \"name\": \"vmcrptestps9762\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "5349" @@ -3699,10 +3589,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130999764799930695" ], "x-ms-request-id": [ - "fa7e22c6-6bac-40fe-8704-f925d1f4ce4c" + "b152fad8-7b68-4b33-b6b4-c30b2e130e73" ], "Cache-Control": [ "no-cache" @@ -3712,28 +3602,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14787" + "14949" ], "x-ms-correlation-request-id": [ - "6045a23b-15d2-4b2c-bb3d-e495b5914db6" + "d446c5ec-d7ba-4694-b2df-5ad6cad914fa" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T152335Z:6045a23b-15d2-4b2c-bb3d-e495b5914db6" + "NORTHCENTRALUS:20160222T101432Z:d446c5ec-d7ba-4694-b2df-5ad6cad914fa" ], "Date": [ - "Tue, 16 Feb 2016 15:23:34 GMT" + "Mon, 22 Feb 2016 10:14:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691?$expand=instanceView&api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczI2OTE/JGV4cGFuZD1pbnN0YW5jZVZpZXcmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Compute/virtualMachines/vmcrptestps9762?$expand=instanceView&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczk3NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczk3NjI/JGV4cGFuZD1pbnN0YW5jZVZpZXcmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5619b38f-dbd1-4d31-b0d1-213bef736188" + "8c6030f6-d270-4e06-b8f4-7fa48f0d34bf" ], "accept-language": [ "en-US" @@ -3742,7 +3632,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"7dbdc860-a1bc-4dc5-8185-dd49fda78b4b\",\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\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2691.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2691.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2691.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/networkInterfaces/nic0crptestps2691\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.7.1198.735\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"GuestAgent is running and accepting new configurations.\",\r\n \"time\": \"2016-02-16T16:23:34+01:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": [\r\n {\r\n \"type\": \"Microsoft.Compute.BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"Plugin enabled (name: Microsoft.Compute.BGInfo, version: 2.1).\"\r\n }\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"osDisk\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T16:22:01.5618017+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T16:22:01.6867815+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T16:22:01.6867815+01:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"extensions\": [\r\n {\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute.BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"Plugin enabled (name: Microsoft.Compute.BGInfo, version: 2.1).\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T16:23:21.6550201+01:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691/extensions/BGInfo\",\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691\",\r\n \"name\": \"vmcrptestps2691\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"3e37240e-26c3-4e0d-a1f0-bfc93fbf28bc\",\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\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps9762.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps9762.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps9762.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\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 \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Network/networkInterfaces/nic0crptestps9762\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.7.1198.735\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"GuestAgent is running and accepting new configurations.\",\r\n \"time\": \"2016-02-22T11:14:23+01:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": [\r\n {\r\n \"type\": \"Microsoft.Compute.BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"Plugin enabled (name: Microsoft.Compute.BGInfo, version: 2.1).\"\r\n }\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"osDisk\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-22T11:07:02.9431928+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-22T11:07:03.0368979+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-22T11:07:03.0368979+01:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"extensions\": [\r\n {\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute.BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"Plugin enabled (name: Microsoft.Compute.BGInfo, version: 2.1).\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-22T11:08:23.8020373+01:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Compute/virtualMachines/vmcrptestps9762/extensions/BGInfo\",\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Compute/virtualMachines/vmcrptestps9762\",\r\n \"name\": \"vmcrptestps9762\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "5349" @@ -3760,10 +3650,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130999764799930695" ], "x-ms-request-id": [ - "a8fb785b-a625-44bb-bd22-f2a1efeba9fa" + "f17e2544-543a-4e94-bd9d-2fe5c2500720" ], "Cache-Control": [ "no-cache" @@ -3773,28 +3663,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14785" + "14947" ], "x-ms-correlation-request-id": [ - "0b623519-ddd2-4d57-9200-e49a3299fb01" + "24d075e5-313f-4851-a8c3-1e315739bb3c" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T152337Z:0b623519-ddd2-4d57-9200-e49a3299fb01" + "NORTHCENTRALUS:20160222T101434Z:24d075e5-313f-4851-a8c3-1e315739bb3c" ], "Date": [ - "Tue, 16 Feb 2016 15:23:36 GMT" + "Mon, 22 Feb 2016 10:14:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691?$expand=instanceView&api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczI2OTE/JGV4cGFuZD1pbnN0YW5jZVZpZXcmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Compute/virtualMachines/vmcrptestps9762?$expand=instanceView&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczk3NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczk3NjI/JGV4cGFuZD1pbnN0YW5jZVZpZXcmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3bef5790-c3b9-44c9-aefa-4bea5d10c185" + "32e6926e-218d-48c1-9347-c6c0f9e76557" ], "accept-language": [ "en-US" @@ -3803,10 +3693,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"7dbdc860-a1bc-4dc5-8185-dd49fda78b4b\",\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\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2691.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2691.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2691.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\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 \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Network/networkInterfaces/nic0crptestps2691\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.7.1198.735\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"GuestAgent is running and accepting new configurations.\",\r\n \"time\": \"2016-02-16T16:29:45+01:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": [\r\n {\r\n \"type\": \"Microsoft.Azure.Diagnostics.IaaSDiagnostics\",\r\n \"typeHandlerVersion\": \"1.5.8.0\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"Diagnostics extension running\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring.AzureCATExtensionHandler\",\r\n \"typeHandlerVersion\": \"2.2.0.68\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Compute.BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"Plugin enabled (name: Microsoft.Compute.BGInfo, version: 2.1).\"\r\n }\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"osDisk\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T16:29:21.308975+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T16:29:21.308975+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T16:29:21.308975+01:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"extensions\": [\r\n {\r\n \"name\": \"AzureCATExtensionHandler\",\r\n \"type\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring.AzureCATExtensionHandler\",\r\n \"typeHandlerVersion\": \"2.2.0.68\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"deploymentId=0a25142e-5ac7-4f42-91c9-9c3b7ff5263f roleInstance=_vmcrptestps2691\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute.BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"Plugin enabled (name: Microsoft.Compute.BGInfo, version: 2.1).\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"IaaSDiagnostics\",\r\n \"type\": \"Microsoft.Azure.Diagnostics.IaaSDiagnostics\",\r\n \"typeHandlerVersion\": \"1.5.8.0\",\r\n \"substatuses\": [\r\n {\r\n \"code\": \"ComponentStatus//succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"N/A\"\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"Diagnostic extension set successfully\",\r\n \"time\": \"2016-02-16T16:28:34+01:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-16T16:29:39.9806962+01:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"type\": \"AzureCATExtensionHandler\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_A2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"osdisk.connminute\",\r\n \"value\": \"stocrptestps2691.minute\"\r\n },\r\n {\r\n \"key\": \"osdisk.connhour\",\r\n \"value\": \"stocrptestps2691.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.1\",\r\n \"value\": \"stocrptestps2691.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.1\",\r\n \"value\": \"stocrptestps2691.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.2\",\r\n \"value\": \"stocrptestps2691.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.2\",\r\n \"value\": \"stocrptestps2691.hour\"\r\n },\r\n {\r\n \"key\": \"stocrptestps2691.hour.uri\",\r\n \"value\": \"https://stocrptestps2691.table.core.windows.net/$MetricsHourPrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps2691.minute.uri\",\r\n \"value\": \"https://stocrptestps2691.table.core.windows.net/$MetricsMinutePrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps2691.hour.name\",\r\n \"value\": \"stocrptestps2691\"\r\n },\r\n {\r\n \"key\": \"stocrptestps2691.minute.name\",\r\n \"value\": \"stocrptestps2691\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps2691\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps2691.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691/extensions/AzureCATExtensionHandler\",\r\n \"name\": \"AzureCATExtensionHandler\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691/extensions/BGInfo\",\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Azure.Diagnostics\",\r\n \"type\": \"IaaSDiagnostics\",\r\n \"typeHandlerVersion\": \"1.5\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yKF9Ub3RhbClcJSBQcm9jZXNzb3IgVGltZSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yIEluZm9ybWF0aW9uKF9Ub3RhbClcUHJvY2Vzc29yIEZyZXF1ZW5jeSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XEF2YWlsYWJsZSBCeXRlcyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcVENQdjZcU2VnbWVudHMgUmV0cmFuc21pdHRlZC9zZWMiIHNhbXBsZVJhdGU9IlBUMU0iIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFRDUHY0XFNlZ21lbnRzIFJldHJhbnNtaXR0ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrIEludGVyZmFjZSgqKVxCeXRlcyBTZW50L3NlYyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29yayBJbnRlcmZhY2UoKilcQnl0ZXMgUmVjZWl2ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691/extensions/IaaSDiagnostics\",\r\n \"name\": \"IaaSDiagnostics\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691\",\r\n \"name\": \"vmcrptestps2691\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"3e37240e-26c3-4e0d-a1f0-bfc93fbf28bc\",\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\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps9762.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 \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps9762.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps9762.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\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 \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Network/networkInterfaces/nic0crptestps9762\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.7.1198.735\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"GuestAgent is running and accepting new configurations.\",\r\n \"time\": \"2016-02-22T11:19:43+01:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": [\r\n {\r\n \"type\": \"Microsoft.Azure.Diagnostics.IaaSDiagnostics\",\r\n \"typeHandlerVersion\": \"1.5.8.0\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"Diagnostics extension running\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring.AzureCATExtensionHandler\",\r\n \"typeHandlerVersion\": \"2.2.0.68\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Compute.BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"Plugin enabled (name: Microsoft.Compute.BGInfo, version: 2.1).\"\r\n }\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"osDisk\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-22T11:17:14.1283112+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-22T11:17:14.1283112+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-22T11:17:14.1283112+01:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"extensions\": [\r\n {\r\n \"name\": \"AzureCATExtensionHandler\",\r\n \"type\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring.AzureCATExtensionHandler\",\r\n \"typeHandlerVersion\": \"2.2.0.68\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"deploymentId=a29f6e6a-9452-4926-8374-ae9229e9b7de roleInstance=_vmcrptestps9762\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute.BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"Plugin enabled (name: Microsoft.Compute.BGInfo, version: 2.1).\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"IaaSDiagnostics\",\r\n \"type\": \"Microsoft.Azure.Diagnostics.IaaSDiagnostics\",\r\n \"typeHandlerVersion\": \"1.5.8.0\",\r\n \"substatuses\": [\r\n {\r\n \"code\": \"ComponentStatus//succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"N/A\"\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"Diagnostic extension set successfully\",\r\n \"time\": \"2016-02-22T11:17:51+01:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2016-02-22T11:18:04.7689316+01:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"type\": \"AzureCATExtensionHandler\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_A2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"osdisk.connminute\",\r\n \"value\": \"stocrptestps9762.minute\"\r\n },\r\n {\r\n \"key\": \"osdisk.connhour\",\r\n \"value\": \"stocrptestps9762.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.1\",\r\n \"value\": \"stocrptestps9762.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.1\",\r\n \"value\": \"stocrptestps9762.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.2\",\r\n \"value\": \"stocrptestps9762.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.2\",\r\n \"value\": \"stocrptestps9762.hour\"\r\n },\r\n {\r\n \"key\": \"stocrptestps9762.hour.uri\",\r\n \"value\": \"https://stocrptestps9762.table.core.windows.net/$MetricsHourPrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps9762.minute.uri\",\r\n \"value\": \"https://stocrptestps9762.table.core.windows.net/$MetricsMinutePrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps9762.hour.name\",\r\n \"value\": \"stocrptestps9762\"\r\n },\r\n {\r\n \"key\": \"stocrptestps9762.minute.name\",\r\n \"value\": \"stocrptestps9762\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps9762\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps9762.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Compute/virtualMachines/vmcrptestps9762/extensions/AzureCATExtensionHandler\",\r\n \"name\": \"AzureCATExtensionHandler\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Compute/virtualMachines/vmcrptestps9762/extensions/BGInfo\",\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Azure.Diagnostics\",\r\n \"type\": \"IaaSDiagnostics\",\r\n \"typeHandlerVersion\": \"1.5\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yKF9Ub3RhbClcJSBQcm9jZXNzb3IgVGltZSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yIEluZm9ybWF0aW9uKF9Ub3RhbClcUHJvY2Vzc29yIEZyZXF1ZW5jeSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XEF2YWlsYWJsZSBCeXRlcyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcVENQdjZcU2VnbWVudHMgUmV0cmFuc21pdHRlZC9zZWMiIHNhbXBsZVJhdGU9IlBUMU0iIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFRDUHY0XFNlZ21lbnRzIFJldHJhbnNtaXR0ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrIEludGVyZmFjZSgqKVxCeXRlcyBTZW50L3NlYyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29yayBJbnRlcmZhY2UoKilcQnl0ZXMgUmVjZWl2ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Compute/virtualMachines/vmcrptestps9762/extensions/IaaSDiagnostics\",\r\n \"name\": \"IaaSDiagnostics\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Compute/virtualMachines/vmcrptestps9762\",\r\n \"name\": \"vmcrptestps9762\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "11464" + "11467" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3821,10 +3711,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130999764799930695" ], "x-ms-request-id": [ - "f67bb7ec-e997-41d5-bb17-4c4c6f6ea590" + "ec1136f4-6529-439a-be20-f3f3a656aa65" ], "Cache-Control": [ "no-cache" @@ -3834,92 +3724,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14760" - ], - "x-ms-correlation-request-id": [ - "fa6c469c-3596-4f15-bc46-29503427d8eb" - ], - "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T152951Z:fa6c469c-3596-4f15-bc46-29503427d8eb" - ], - "Date": [ - "Tue, 16 Feb 2016 15:29:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "055d0067-ca16-40a5-a0ce-5c45cbb99996" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/ase/providers/Microsoft.Storage/storageAccounts/ase7745\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"ase7745\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-08-22T12:09:54.6487474Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ase7745.blob.core.windows.net/\",\r\n \"file\": \"https://ase7745.file.core.windows.net/\",\r\n \"queue\": \"https://ase7745.queue.core.windows.net/\",\r\n \"table\": \"https://ase7745.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/benolwtlz6gcrtv2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"benolwtlz6gcrtv2\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-02T15:37:42.4160913Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://benolwtlz6gcrtv2.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/sapresourcegroup/providers/Microsoft.Storage/storageAccounts/de8da241d96f400ba8791029\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"de8da241d96f400ba8791029\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-09-18T13:22:47.5628749Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://de8da241d96f400ba8791029.blob.core.windows.net/\",\r\n \"file\": \"https://de8da241d96f400ba8791029.file.core.windows.net/\",\r\n \"queue\": \"https://de8da241d96f400ba8791029.queue.core.windows.net/\",\r\n \"table\": \"https://de8da241d96f400ba8791029.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/group-4/providers/Microsoft.Storage/storageAccounts/dsdevstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"dsdevstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-22T21:10:41.790448Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://dsdevstorage.blob.core.windows.net/\",\r\n \"file\": \"https://dsdevstorage.file.core.windows.net/\",\r\n \"queue\": \"https://dsdevstorage.queue.core.windows.net/\",\r\n \"table\": \"https://dsdevstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduscherp/providers/Microsoft.Storage/storageAccounts/erpio6r4un3ewfnm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"erpio6r4un3ewfnm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-08T12:41:16.6105852Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://erpio6r4un3ewfnm.blob.core.windows.net/\",\r\n \"file\": \"https://erpio6r4un3ewfnm.file.core.windows.net/\",\r\n \"queue\": \"https://erpio6r4un3ewfnm.queue.core.windows.net/\",\r\n \"table\": \"https://erpio6r4un3ewfnm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/glsresgroup1/providers/Microsoft.Storage/storageAccounts/glsstoraccount1\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"glsstoraccount1\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T12:37:47.5420067Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://glsstoraccount1.blob.core.windows.net/\",\r\n \"file\": \"https://glsstoraccount1.file.core.windows.net/\",\r\n \"queue\": \"https://glsstoraccount1.queue.core.windows.net/\",\r\n \"table\": \"https://glsstoraccount1.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmpremstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmpremstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:21.7378841Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmpremstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmpremstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmpremstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmpremstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmstdstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmstdstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:22.2160008Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmstdstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmstdstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmstdstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmstdstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-test2/providers/Microsoft.Storage/storageAccounts/gortestacc2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gortestacc2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-08T21:18:17.9028388Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gortestacc2.blob.core.windows.net/\",\r\n \"file\": \"https://gortestacc2.file.core.windows.net/\",\r\n \"queue\": \"https://gortestacc2.queue.core.windows.net/\",\r\n \"table\": \"https://gortestacc2.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-04-16T13:50:52.0015725Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspacepremium\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspacepremium\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-10-23T10:22:10.7216809Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspacepremium.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvmtest/providers/Microsoft.Storage/storageAccounts/lvmtestspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmtestspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T16:56:41.5005505Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmtestspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmtestspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmtestspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmtestspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduschdply4/providers/Microsoft.Storage/storageAccounts/qassle2xgziurjau\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"qassle2xgziurjau\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T14:29:32.9856364Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://qassle2xgziurjau.blob.core.windows.net/\",\r\n \"file\": \"https://qassle2xgziurjau.file.core.windows.net/\",\r\n \"queue\": \"https://qassle2xgziurjau.queue.core.windows.net/\",\r\n \"table\": \"https://qassle2xgziurjau.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduschdply3/providers/Microsoft.Storage/storageAccounts/qasxxtruocsxaqvc\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"qasxxtruocsxaqvc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T13:43:03.8950522Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://qasxxtruocsxaqvc.blob.core.windows.net/\",\r\n \"file\": \"https://qasxxtruocsxaqvc.file.core.windows.net/\",\r\n \"queue\": \"https://qasxxtruocsxaqvc.queue.core.windows.net/\",\r\n \"table\": \"https://qasxxtruocsxaqvc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-eml2/providers/Microsoft.Storage/storageAccounts/rgeml2stacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"rgeml2stacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T08:00:29.8670815Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://rgeml2stacc.blob.core.windows.net/\",\r\n \"file\": \"https://rgeml2stacc.file.core.windows.net/\",\r\n \"queue\": \"https://rgeml2stacc.queue.core.windows.net/\",\r\n \"table\": \"https://rgeml2stacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/sapcalrg/providers/Microsoft.Storage/storageAccounts/sapcalrg8522\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"sapcalrg8522\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-28T06:54:16.0456896Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sapcalrg8522.blob.core.windows.net/\",\r\n \"file\": \"https://sapcalrg8522.file.core.windows.net/\",\r\n \"queue\": \"https://sapcalrg8522.queue.core.windows.net/\",\r\n \"table\": \"https://sapcalrg8522.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/saperpdemo859644\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"saperpdemo859644\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-01-26T11:02:43.8634331Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saperpdemo859644.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1prstacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1prstacc\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-12-10T17:35:29.0415914Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1prstacc.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1ststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1ststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-10T17:36:26.4810072Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1ststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saphana1ststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saphana1ststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saphana1ststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-linux-docu-tests/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saplinuxdocuststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-24T09:25:04.4473982Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-linux-docu-tests-we/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststaccwe\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saplinuxdocuststaccwe\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-25T13:11:50.5477032Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststaccwe.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststaccwe.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststaccwe.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststaccwe.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/sappseduscsape012612030\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"sappseduscsape012612030\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2016-01-26T11:03:56.0307387Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sappseduscsape012612030.blob.core.windows.net/\",\r\n \"file\": \"https://sappseduscsape012612030.file.core.windows.net/\",\r\n \"queue\": \"https://sappseduscsape012612030.queue.core.windows.net/\",\r\n \"table\": \"https://sappseduscsape012612030.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"westeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/saptesiarm/providers/Microsoft.Storage/storageAccounts/saptesiarm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saptesiarm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-08-27T12:13:00.4049179Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptesiarm.blob.core.windows.net/\",\r\n \"file\": \"https://saptesiarm.file.core.windows.net/\",\r\n \"queue\": \"https://saptesiarm.queue.core.windows.net/\",\r\n \"table\": \"https://saptesiarm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/saptestrajrg/providers/Microsoft.Storage/storageAccounts/saptestrajrg4518\",\r\n \"location\": \"westus\",\r\n \"name\": \"saptestrajrg4518\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-07-22T19:24:21.1065762Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptestrajrg4518.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Storage/storageAccounts/stocrptestps2691\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps2691\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T15:14:23.8540635Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps2691.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps2691.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps2691.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps2691.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/temptestsap\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"temptestsap\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-10T14:03:58.3799849Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://temptestsap.blob.core.windows.net/\",\r\n \"file\": \"https://temptestsap.file.core.windows.net/\",\r\n \"queue\": \"https://temptestsap.queue.core.windows.net/\",\r\n \"table\": \"https://temptestsap.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "17095" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "cc3048ec-cef9-4913-aafd-f82449834d1a" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14594" + "14927" ], "x-ms-correlation-request-id": [ - "cc3048ec-cef9-4913-aafd-f82449834d1a" + "3e792938-4515-449f-b227-879e1f015ef5" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T152336Z:cc3048ec-cef9-4913-aafd-f82449834d1a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "NORTHCENTRALUS:20160222T101952Z:3e792938-4515-449f-b227-879e1f015ef5" ], "Date": [ - "Tue, 16 Feb 2016 15:23:35 GMT" + "Mon, 22 Feb 2016 10:19:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dc03a374-2431-4310-86a6-bde20886d7b6" + "3a28ce41-9f6e-40b1-afc4-7bd581f0eaab" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/ase/providers/Microsoft.Storage/storageAccounts/ase7745\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"ase7745\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-08-22T12:09:54.6487474Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ase7745.blob.core.windows.net/\",\r\n \"file\": \"https://ase7745.file.core.windows.net/\",\r\n \"queue\": \"https://ase7745.queue.core.windows.net/\",\r\n \"table\": \"https://ase7745.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/benolwtlz6gcrtv2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"benolwtlz6gcrtv2\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-02T15:37:42.4160913Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://benolwtlz6gcrtv2.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/sapresourcegroup/providers/Microsoft.Storage/storageAccounts/de8da241d96f400ba8791029\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"de8da241d96f400ba8791029\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-09-18T13:22:47.5628749Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://de8da241d96f400ba8791029.blob.core.windows.net/\",\r\n \"file\": \"https://de8da241d96f400ba8791029.file.core.windows.net/\",\r\n \"queue\": \"https://de8da241d96f400ba8791029.queue.core.windows.net/\",\r\n \"table\": \"https://de8da241d96f400ba8791029.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/group-4/providers/Microsoft.Storage/storageAccounts/dsdevstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"dsdevstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-22T21:10:41.790448Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://dsdevstorage.blob.core.windows.net/\",\r\n \"file\": \"https://dsdevstorage.file.core.windows.net/\",\r\n \"queue\": \"https://dsdevstorage.queue.core.windows.net/\",\r\n \"table\": \"https://dsdevstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduscherp/providers/Microsoft.Storage/storageAccounts/erpio6r4un3ewfnm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"erpio6r4un3ewfnm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-08T12:41:16.6105852Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://erpio6r4un3ewfnm.blob.core.windows.net/\",\r\n \"file\": \"https://erpio6r4un3ewfnm.file.core.windows.net/\",\r\n \"queue\": \"https://erpio6r4un3ewfnm.queue.core.windows.net/\",\r\n \"table\": \"https://erpio6r4un3ewfnm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/glsresgroup1/providers/Microsoft.Storage/storageAccounts/glsstoraccount1\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"glsstoraccount1\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T12:37:47.5420067Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://glsstoraccount1.blob.core.windows.net/\",\r\n \"file\": \"https://glsstoraccount1.file.core.windows.net/\",\r\n \"queue\": \"https://glsstoraccount1.queue.core.windows.net/\",\r\n \"table\": \"https://glsstoraccount1.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmpremstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmpremstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:21.7378841Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmpremstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmpremstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmpremstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmpremstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmstdstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmstdstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:22.2160008Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmstdstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmstdstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmstdstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmstdstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-test2/providers/Microsoft.Storage/storageAccounts/gortestacc2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gortestacc2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-08T21:18:17.9028388Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gortestacc2.blob.core.windows.net/\",\r\n \"file\": \"https://gortestacc2.file.core.windows.net/\",\r\n \"queue\": \"https://gortestacc2.queue.core.windows.net/\",\r\n \"table\": \"https://gortestacc2.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-04-16T13:50:52.0015725Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspacepremium\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspacepremium\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-10-23T10:22:10.7216809Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspacepremium.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvmtest/providers/Microsoft.Storage/storageAccounts/lvmtestspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmtestspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T16:56:41.5005505Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmtestspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmtestspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmtestspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmtestspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduschdply4/providers/Microsoft.Storage/storageAccounts/qassle2xgziurjau\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"qassle2xgziurjau\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T14:29:32.9856364Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://qassle2xgziurjau.blob.core.windows.net/\",\r\n \"file\": \"https://qassle2xgziurjau.file.core.windows.net/\",\r\n \"queue\": \"https://qassle2xgziurjau.queue.core.windows.net/\",\r\n \"table\": \"https://qassle2xgziurjau.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduschdply3/providers/Microsoft.Storage/storageAccounts/qasxxtruocsxaqvc\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"qasxxtruocsxaqvc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T13:43:03.8950522Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://qasxxtruocsxaqvc.blob.core.windows.net/\",\r\n \"file\": \"https://qasxxtruocsxaqvc.file.core.windows.net/\",\r\n \"queue\": \"https://qasxxtruocsxaqvc.queue.core.windows.net/\",\r\n \"table\": \"https://qasxxtruocsxaqvc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-eml2/providers/Microsoft.Storage/storageAccounts/rgeml2stacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"rgeml2stacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T08:00:29.8670815Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://rgeml2stacc.blob.core.windows.net/\",\r\n \"file\": \"https://rgeml2stacc.file.core.windows.net/\",\r\n \"queue\": \"https://rgeml2stacc.queue.core.windows.net/\",\r\n \"table\": \"https://rgeml2stacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/sapcalrg/providers/Microsoft.Storage/storageAccounts/sapcalrg8522\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"sapcalrg8522\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-28T06:54:16.0456896Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sapcalrg8522.blob.core.windows.net/\",\r\n \"file\": \"https://sapcalrg8522.file.core.windows.net/\",\r\n \"queue\": \"https://sapcalrg8522.queue.core.windows.net/\",\r\n \"table\": \"https://sapcalrg8522.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/saperpdemo859644\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"saperpdemo859644\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-01-26T11:02:43.8634331Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saperpdemo859644.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1prstacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1prstacc\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-12-10T17:35:29.0415914Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1prstacc.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1ststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1ststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-10T17:36:26.4810072Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1ststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saphana1ststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saphana1ststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saphana1ststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-linux-docu-tests/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saplinuxdocuststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-24T09:25:04.4473982Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-linux-docu-tests-we/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststaccwe\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saplinuxdocuststaccwe\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-25T13:11:50.5477032Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststaccwe.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststaccwe.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststaccwe.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststaccwe.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/sappseduscsape012612030\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"sappseduscsape012612030\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2016-01-26T11:03:56.0307387Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sappseduscsape012612030.blob.core.windows.net/\",\r\n \"file\": \"https://sappseduscsape012612030.file.core.windows.net/\",\r\n \"queue\": \"https://sappseduscsape012612030.queue.core.windows.net/\",\r\n \"table\": \"https://sappseduscsape012612030.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"westeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/saptesiarm/providers/Microsoft.Storage/storageAccounts/saptesiarm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saptesiarm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-08-27T12:13:00.4049179Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptesiarm.blob.core.windows.net/\",\r\n \"file\": \"https://saptesiarm.file.core.windows.net/\",\r\n \"queue\": \"https://saptesiarm.queue.core.windows.net/\",\r\n \"table\": \"https://saptesiarm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/saptestrajrg/providers/Microsoft.Storage/storageAccounts/saptestrajrg4518\",\r\n \"location\": \"westus\",\r\n \"name\": \"saptestrajrg4518\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-07-22T19:24:21.1065762Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptestrajrg4518.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Storage/storageAccounts/stocrptestps2691\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps2691\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T15:14:23.8540635Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps2691.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps2691.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps2691.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps2691.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/temptestsap\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"temptestsap\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-10T14:03:58.3799849Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://temptestsap.blob.core.windows.net/\",\r\n \"file\": \"https://temptestsap.file.core.windows.net/\",\r\n \"queue\": \"https://temptestsap.queue.core.windows.net/\",\r\n \"table\": \"https://temptestsap.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/benolwtlz6gcrtv2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"benolwtlz6gcrtv2\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-02T15:37:42.4160913Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://benolwtlz6gcrtv2.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/sapresourcegroup/providers/Microsoft.Storage/storageAccounts/de8da241d96f400ba8791029\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"de8da241d96f400ba8791029\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-09-18T13:22:47.5628749Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://de8da241d96f400ba8791029.blob.core.windows.net/\",\r\n \"file\": \"https://de8da241d96f400ba8791029.file.core.windows.net/\",\r\n \"queue\": \"https://de8da241d96f400ba8791029.queue.core.windows.net/\",\r\n \"table\": \"https://de8da241d96f400ba8791029.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/group-4/providers/Microsoft.Storage/storageAccounts/dsdevstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"dsdevstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-22T21:10:41.790448Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://dsdevstorage.blob.core.windows.net/\",\r\n \"file\": \"https://dsdevstorage.file.core.windows.net/\",\r\n \"queue\": \"https://dsdevstorage.queue.core.windows.net/\",\r\n \"table\": \"https://dsdevstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/seduscherp/providers/Microsoft.Storage/storageAccounts/erpio6r4un3ewfnm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"erpio6r4un3ewfnm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-08T12:41:16.6105852Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://erpio6r4un3ewfnm.blob.core.windows.net/\",\r\n \"file\": \"https://erpio6r4un3ewfnm.file.core.windows.net/\",\r\n \"queue\": \"https://erpio6r4un3ewfnm.queue.core.windows.net/\",\r\n \"table\": \"https://erpio6r4un3ewfnm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/fdfdfdf/providers/Microsoft.Storage/storageAccounts/fdfdfdf2537\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"fdfdfdf2537\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-17T10:07:55.1390685Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://fdfdfdf2537.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/fdfdfdf/providers/Microsoft.Storage/storageAccounts/fdfdfdf2925\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"fdfdfdf2925\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-17T10:07:55.715138Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://fdfdfdf2925.blob.core.windows.net/\",\r\n \"file\": \"https://fdfdfdf2925.file.core.windows.net/\",\r\n \"queue\": \"https://fdfdfdf2925.queue.core.windows.net/\",\r\n \"table\": \"https://fdfdfdf2925.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/glsresgroup1/providers/Microsoft.Storage/storageAccounts/glsstoraccount1\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"glsstoraccount1\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T12:37:47.5420067Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://glsstoraccount1.blob.core.windows.net/\",\r\n \"file\": \"https://glsstoraccount1.file.core.windows.net/\",\r\n \"queue\": \"https://glsstoraccount1.queue.core.windows.net/\",\r\n \"table\": \"https://glsstoraccount1.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmpremstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmpremstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:21.7378841Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmpremstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmpremstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmpremstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmpremstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmstdstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmstdstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:22.2160008Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmstdstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmstdstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmstdstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmstdstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-clust-arm/providers/Microsoft.Storage/storageAccounts/gorclustarmstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorclustarmstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-17T14:59:23.8666219Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorclustarmstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorclustarmstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorclustarmstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorclustarmstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {\r\n \"displayName\": \"StorageAccount\"\r\n },\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-test2/providers/Microsoft.Storage/storageAccounts/gortestacc2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gortestacc2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-08T21:18:17.9028388Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gortestacc2.blob.core.windows.net/\",\r\n \"file\": \"https://gortestacc2.file.core.windows.net/\",\r\n \"queue\": \"https://gortestacc2.queue.core.windows.net/\",\r\n \"table\": \"https://gortestacc2.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-04-16T13:50:52.0015725Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspacepremium\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspacepremium\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-10-23T10:22:10.7216809Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspacepremium.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/lvmtest/providers/Microsoft.Storage/storageAccounts/lvmtestspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmtestspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T16:56:41.5005505Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmtestspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmtestspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmtestspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmtestspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/seduschdply3/providers/Microsoft.Storage/storageAccounts/qasxxtruocsxaqvc\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"qasxxtruocsxaqvc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-22T09:01:37.416284Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://qasxxtruocsxaqvc.blob.core.windows.net/\",\r\n \"file\": \"https://qasxxtruocsxaqvc.file.core.windows.net/\",\r\n \"queue\": \"https://qasxxtruocsxaqvc.queue.core.windows.net/\",\r\n \"table\": \"https://qasxxtruocsxaqvc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-eml2/providers/Microsoft.Storage/storageAccounts/rgeml2stacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"rgeml2stacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T08:00:29.8670815Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://rgeml2stacc.blob.core.windows.net/\",\r\n \"file\": \"https://rgeml2stacc.file.core.windows.net/\",\r\n \"queue\": \"https://rgeml2stacc.queue.core.windows.net/\",\r\n \"table\": \"https://rgeml2stacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/sapcalrg/providers/Microsoft.Storage/storageAccounts/sapcalrg8522\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"sapcalrg8522\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-28T06:54:16.0456896Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sapcalrg8522.blob.core.windows.net/\",\r\n \"file\": \"https://sapcalrg8522.file.core.windows.net/\",\r\n \"queue\": \"https://sapcalrg8522.queue.core.windows.net/\",\r\n \"table\": \"https://sapcalrg8522.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/saperpdemo859644\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"saperpdemo859644\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-01-26T11:02:43.8634331Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saperpdemo859644.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1prstacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1prstacc\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-12-10T17:35:29.0415914Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1prstacc.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1ststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1ststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-10T17:36:26.4810072Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1ststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saphana1ststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saphana1ststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saphana1ststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-sap-linux-docu-tests/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saplinuxdocuststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-24T09:25:04.4473982Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-sap-linux-docu-tests-we/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststaccwe\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saplinuxdocuststaccwe\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-25T13:11:50.5477032Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststaccwe.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststaccwe.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststaccwe.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststaccwe.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/sappseduscsape012612030\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"sappseduscsape012612030\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2016-01-26T11:03:56.0307387Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sappseduscsape012612030.blob.core.windows.net/\",\r\n \"file\": \"https://sappseduscsape012612030.file.core.windows.net/\",\r\n \"queue\": \"https://sappseduscsape012612030.queue.core.windows.net/\",\r\n \"table\": \"https://sappseduscsape012612030.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"westeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/saptesiarm/providers/Microsoft.Storage/storageAccounts/saptesiarm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saptesiarm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-08-27T12:13:00.4049179Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptesiarm.blob.core.windows.net/\",\r\n \"file\": \"https://saptesiarm.file.core.windows.net/\",\r\n \"queue\": \"https://saptesiarm.queue.core.windows.net/\",\r\n \"table\": \"https://saptesiarm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/saptestrajrg/providers/Microsoft.Storage/storageAccounts/saptestrajrg4518\",\r\n \"location\": \"westus\",\r\n \"name\": \"saptestrajrg4518\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-07-22T19:24:21.1065762Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptestrajrg4518.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Storage/storageAccounts/stocrptestps9762\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps9762\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-22T09:58:56.8703529Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps9762.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps9762.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps9762.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps9762.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/temptestsap\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"temptestsap\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-10T14:03:58.3799849Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://temptestsap.blob.core.windows.net/\",\r\n \"file\": \"https://temptestsap.file.core.windows.net/\",\r\n \"queue\": \"https://temptestsap.queue.core.windows.net/\",\r\n \"table\": \"https://temptestsap.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-ts2-test/providers/Microsoft.Storage/storageAccounts/ts2cdlko5xtxpo3k\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"ts2cdlko5xtxpo3k\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-17T14:39:15.5207487Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ts2cdlko5xtxpo3k.blob.core.windows.net/\",\r\n \"file\": \"https://ts2cdlko5xtxpo3k.file.core.windows.net/\",\r\n \"queue\": \"https://ts2cdlko5xtxpo3k.queue.core.windows.net/\",\r\n \"table\": \"https://ts2cdlko5xtxpo3k.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "17095" + "18282" ], "Content-Type": [ "application/json" @@ -3931,7 +3766,7 @@ "no-cache" ], "x-ms-request-id": [ - "30287782-96a2-452c-a930-2cf0a480c5b9" + "20642ea4-9653-4231-bb06-35778bbc7fbd" ], "Cache-Control": [ "no-cache" @@ -3941,40 +3776,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14593" + "14946" ], "x-ms-correlation-request-id": [ - "30287782-96a2-452c-a930-2cf0a480c5b9" + "20642ea4-9653-4231-bb06-35778bbc7fbd" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T152337Z:30287782-96a2-452c-a930-2cf0a480c5b9" + "NORTHCENTRALUS:20160222T101435Z:20642ea4-9653-4231-bb06-35778bbc7fbd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Feb 2016 15:23:36 GMT" + "Mon, 22 Feb 2016 10:14:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d32b4e0d-e65d-4d83-9af7-ce98b5f0113f" + "633638b0-ce69-4ec7-b235-9ea9e1e3c7ed" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/ase/providers/Microsoft.Storage/storageAccounts/ase7745\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"ase7745\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-08-22T12:09:54.6487474Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ase7745.blob.core.windows.net/\",\r\n \"file\": \"https://ase7745.file.core.windows.net/\",\r\n \"queue\": \"https://ase7745.queue.core.windows.net/\",\r\n \"table\": \"https://ase7745.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/benolwtlz6gcrtv2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"benolwtlz6gcrtv2\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-02T15:37:42.4160913Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://benolwtlz6gcrtv2.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/sapresourcegroup/providers/Microsoft.Storage/storageAccounts/de8da241d96f400ba8791029\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"de8da241d96f400ba8791029\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-09-18T13:22:47.5628749Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://de8da241d96f400ba8791029.blob.core.windows.net/\",\r\n \"file\": \"https://de8da241d96f400ba8791029.file.core.windows.net/\",\r\n \"queue\": \"https://de8da241d96f400ba8791029.queue.core.windows.net/\",\r\n \"table\": \"https://de8da241d96f400ba8791029.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/group-4/providers/Microsoft.Storage/storageAccounts/dsdevstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"dsdevstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-22T21:10:41.790448Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://dsdevstorage.blob.core.windows.net/\",\r\n \"file\": \"https://dsdevstorage.file.core.windows.net/\",\r\n \"queue\": \"https://dsdevstorage.queue.core.windows.net/\",\r\n \"table\": \"https://dsdevstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduscherp/providers/Microsoft.Storage/storageAccounts/erpio6r4un3ewfnm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"erpio6r4un3ewfnm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-08T12:41:16.6105852Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://erpio6r4un3ewfnm.blob.core.windows.net/\",\r\n \"file\": \"https://erpio6r4un3ewfnm.file.core.windows.net/\",\r\n \"queue\": \"https://erpio6r4un3ewfnm.queue.core.windows.net/\",\r\n \"table\": \"https://erpio6r4un3ewfnm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/glsresgroup1/providers/Microsoft.Storage/storageAccounts/glsstoraccount1\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"glsstoraccount1\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T12:37:47.5420067Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://glsstoraccount1.blob.core.windows.net/\",\r\n \"file\": \"https://glsstoraccount1.file.core.windows.net/\",\r\n \"queue\": \"https://glsstoraccount1.queue.core.windows.net/\",\r\n \"table\": \"https://glsstoraccount1.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmpremstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmpremstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:21.7378841Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmpremstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmpremstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmpremstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmpremstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmstdstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmstdstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:22.2160008Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmstdstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmstdstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmstdstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmstdstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/gor-test2/providers/Microsoft.Storage/storageAccounts/gortestacc2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gortestacc2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-08T21:18:17.9028388Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gortestacc2.blob.core.windows.net/\",\r\n \"file\": \"https://gortestacc2.file.core.windows.net/\",\r\n \"queue\": \"https://gortestacc2.queue.core.windows.net/\",\r\n \"table\": \"https://gortestacc2.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-04-16T13:50:52.0015725Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspacepremium\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspacepremium\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-10-23T10:22:10.7216809Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspacepremium.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/lvmtest/providers/Microsoft.Storage/storageAccounts/lvmtestspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmtestspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T16:56:41.5005505Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmtestspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmtestspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmtestspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmtestspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduschdply5/providers/Microsoft.Storage/storageAccounts/qas77jupdwscgujq\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"qas77jupdwscgujq\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T15:25:13.5232627Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://qas77jupdwscgujq.blob.core.windows.net/\",\r\n \"file\": \"https://qas77jupdwscgujq.file.core.windows.net/\",\r\n \"queue\": \"https://qas77jupdwscgujq.queue.core.windows.net/\",\r\n \"table\": \"https://qas77jupdwscgujq.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-eml2/providers/Microsoft.Storage/storageAccounts/rgeml2stacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"rgeml2stacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T08:00:29.8670815Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://rgeml2stacc.blob.core.windows.net/\",\r\n \"file\": \"https://rgeml2stacc.file.core.windows.net/\",\r\n \"queue\": \"https://rgeml2stacc.queue.core.windows.net/\",\r\n \"table\": \"https://rgeml2stacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/sapcalrg/providers/Microsoft.Storage/storageAccounts/sapcalrg8522\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"sapcalrg8522\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-28T06:54:16.0456896Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sapcalrg8522.blob.core.windows.net/\",\r\n \"file\": \"https://sapcalrg8522.file.core.windows.net/\",\r\n \"queue\": \"https://sapcalrg8522.queue.core.windows.net/\",\r\n \"table\": \"https://sapcalrg8522.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/saperpdemo859644\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"saperpdemo859644\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-01-26T11:02:43.8634331Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saperpdemo859644.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1prstacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1prstacc\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-12-10T17:35:29.0415914Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1prstacc.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1ststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1ststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-10T17:36:26.4810072Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1ststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saphana1ststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saphana1ststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saphana1ststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-linux-docu-tests/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saplinuxdocuststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-24T09:25:04.4473982Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-linux-docu-tests-we/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststaccwe\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saplinuxdocuststaccwe\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-25T13:11:50.5477032Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststaccwe.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststaccwe.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststaccwe.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststaccwe.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/sappseduscsape012612030\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"sappseduscsape012612030\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2016-01-26T11:03:56.0307387Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sappseduscsape012612030.blob.core.windows.net/\",\r\n \"file\": \"https://sappseduscsape012612030.file.core.windows.net/\",\r\n \"queue\": \"https://sappseduscsape012612030.queue.core.windows.net/\",\r\n \"table\": \"https://sappseduscsape012612030.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"westeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/saptesiarm/providers/Microsoft.Storage/storageAccounts/saptesiarm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saptesiarm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-08-27T12:13:00.4049179Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptesiarm.blob.core.windows.net/\",\r\n \"file\": \"https://saptesiarm.file.core.windows.net/\",\r\n \"queue\": \"https://saptesiarm.queue.core.windows.net/\",\r\n \"table\": \"https://saptesiarm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/saptestrajrg/providers/Microsoft.Storage/storageAccounts/saptestrajrg4518\",\r\n \"location\": \"westus\",\r\n \"name\": \"saptestrajrg4518\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-07-22T19:24:21.1065762Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptestrajrg4518.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Storage/storageAccounts/stocrptestps2691\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps2691\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T15:14:23.8540635Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps2691.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps2691.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps2691.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps2691.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/temptestsap\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"temptestsap\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-10T14:03:58.3799849Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://temptestsap.blob.core.windows.net/\",\r\n \"file\": \"https://temptestsap.file.core.windows.net/\",\r\n \"queue\": \"https://temptestsap.queue.core.windows.net/\",\r\n \"table\": \"https://temptestsap.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/benolwtlz6gcrtv2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"benolwtlz6gcrtv2\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-02T15:37:42.4160913Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://benolwtlz6gcrtv2.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/sapresourcegroup/providers/Microsoft.Storage/storageAccounts/de8da241d96f400ba8791029\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"de8da241d96f400ba8791029\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-09-18T13:22:47.5628749Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://de8da241d96f400ba8791029.blob.core.windows.net/\",\r\n \"file\": \"https://de8da241d96f400ba8791029.file.core.windows.net/\",\r\n \"queue\": \"https://de8da241d96f400ba8791029.queue.core.windows.net/\",\r\n \"table\": \"https://de8da241d96f400ba8791029.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/group-4/providers/Microsoft.Storage/storageAccounts/dsdevstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"dsdevstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-22T21:10:41.790448Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://dsdevstorage.blob.core.windows.net/\",\r\n \"file\": \"https://dsdevstorage.file.core.windows.net/\",\r\n \"queue\": \"https://dsdevstorage.queue.core.windows.net/\",\r\n \"table\": \"https://dsdevstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/seduscherp/providers/Microsoft.Storage/storageAccounts/erpio6r4un3ewfnm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"erpio6r4un3ewfnm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-08T12:41:16.6105852Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://erpio6r4un3ewfnm.blob.core.windows.net/\",\r\n \"file\": \"https://erpio6r4un3ewfnm.file.core.windows.net/\",\r\n \"queue\": \"https://erpio6r4un3ewfnm.queue.core.windows.net/\",\r\n \"table\": \"https://erpio6r4un3ewfnm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/fdfdfdf/providers/Microsoft.Storage/storageAccounts/fdfdfdf2537\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"fdfdfdf2537\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-02-17T10:07:55.1390685Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://fdfdfdf2537.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/fdfdfdf/providers/Microsoft.Storage/storageAccounts/fdfdfdf2925\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"fdfdfdf2925\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-17T10:07:55.715138Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://fdfdfdf2925.blob.core.windows.net/\",\r\n \"file\": \"https://fdfdfdf2925.file.core.windows.net/\",\r\n \"queue\": \"https://fdfdfdf2925.queue.core.windows.net/\",\r\n \"table\": \"https://fdfdfdf2925.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/glsresgroup1/providers/Microsoft.Storage/storageAccounts/glsstoraccount1\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"glsstoraccount1\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-16T12:37:47.5420067Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://glsstoraccount1.blob.core.windows.net/\",\r\n \"file\": \"https://glsstoraccount1.file.core.windows.net/\",\r\n \"queue\": \"https://glsstoraccount1.queue.core.windows.net/\",\r\n \"table\": \"https://glsstoraccount1.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmpremstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmpremstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:21.7378841Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmpremstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmpremstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmpremstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmpremstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-sql2014arm/providers/Microsoft.Storage/storageAccounts/gorarmstdstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorarmstdstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-29T23:39:22.2160008Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorarmstdstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorarmstdstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorarmstdstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorarmstdstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-clust-arm/providers/Microsoft.Storage/storageAccounts/gorclustarmstorage\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gorclustarmstorage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-17T14:59:23.8666219Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gorclustarmstorage.blob.core.windows.net/\",\r\n \"file\": \"https://gorclustarmstorage.file.core.windows.net/\",\r\n \"queue\": \"https://gorclustarmstorage.queue.core.windows.net/\",\r\n \"table\": \"https://gorclustarmstorage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {\r\n \"displayName\": \"StorageAccount\"\r\n },\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-test2/providers/Microsoft.Storage/storageAccounts/gortestacc2\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"gortestacc2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-08T21:18:17.9028388Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gortestacc2.blob.core.windows.net/\",\r\n \"file\": \"https://gortestacc2.file.core.windows.net/\",\r\n \"queue\": \"https://gortestacc2.queue.core.windows.net/\",\r\n \"table\": \"https://gortestacc2.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-04-16T13:50:52.0015725Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/lvm/providers/Microsoft.Storage/storageAccounts/lvmspacepremium\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmspacepremium\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-10-23T10:22:10.7216809Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmspacepremium.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/lvmtest/providers/Microsoft.Storage/storageAccounts/lvmtestspace\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"lvmtestspace\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T16:56:41.5005505Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://lvmtestspace.blob.core.windows.net/\",\r\n \"file\": \"https://lvmtestspace.file.core.windows.net/\",\r\n \"queue\": \"https://lvmtestspace.queue.core.windows.net/\",\r\n \"table\": \"https://lvmtestspace.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/seduschdply3/providers/Microsoft.Storage/storageAccounts/qasxxtruocsxaqvc\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"qasxxtruocsxaqvc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-22T09:01:37.416284Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://qasxxtruocsxaqvc.blob.core.windows.net/\",\r\n \"file\": \"https://qasxxtruocsxaqvc.file.core.windows.net/\",\r\n \"queue\": \"https://qasxxtruocsxaqvc.queue.core.windows.net/\",\r\n \"table\": \"https://qasxxtruocsxaqvc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-eml2/providers/Microsoft.Storage/storageAccounts/rgeml2stacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"rgeml2stacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-10-26T08:00:29.8670815Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://rgeml2stacc.blob.core.windows.net/\",\r\n \"file\": \"https://rgeml2stacc.file.core.windows.net/\",\r\n \"queue\": \"https://rgeml2stacc.queue.core.windows.net/\",\r\n \"table\": \"https://rgeml2stacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/sapcalrg/providers/Microsoft.Storage/storageAccounts/sapcalrg8522\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"sapcalrg8522\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-01-28T06:54:16.0456896Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sapcalrg8522.blob.core.windows.net/\",\r\n \"file\": \"https://sapcalrg8522.file.core.windows.net/\",\r\n \"queue\": \"https://sapcalrg8522.queue.core.windows.net/\",\r\n \"table\": \"https://sapcalrg8522.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/saperpdemo859644\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"saperpdemo859644\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2016-01-26T11:02:43.8634331Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saperpdemo859644.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1prstacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1prstacc\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-12-10T17:35:29.0415914Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1prstacc.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-h1-sap-tests/providers/Microsoft.Storage/storageAccounts/saphana1ststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saphana1ststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-12-10T17:36:26.4810072Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saphana1ststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saphana1ststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saphana1ststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saphana1ststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-sap-linux-docu-tests/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststacc\",\r\n \"location\": \"westus\",\r\n \"name\": \"saplinuxdocuststacc\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-24T09:25:04.4473982Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststacc.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststacc.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststacc.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststacc.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-sap-linux-docu-tests-we/providers/Microsoft.Storage/storageAccounts/saplinuxdocuststaccwe\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saplinuxdocuststaccwe\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-25T13:11:50.5477032Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saplinuxdocuststaccwe.blob.core.windows.net/\",\r\n \"file\": \"https://saplinuxdocuststaccwe.file.core.windows.net/\",\r\n \"queue\": \"https://saplinuxdocuststaccwe.queue.core.windows.net/\",\r\n \"table\": \"https://saplinuxdocuststaccwe.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/seduschdocu/providers/Microsoft.Storage/storageAccounts/sappseduscsape012612030\",\r\n \"location\": \"northeurope\",\r\n \"name\": \"sappseduscsape012612030\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2016-01-26T11:03:56.0307387Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sappseduscsape012612030.blob.core.windows.net/\",\r\n \"file\": \"https://sappseduscsape012612030.file.core.windows.net/\",\r\n \"queue\": \"https://sappseduscsape012612030.queue.core.windows.net/\",\r\n \"table\": \"https://sappseduscsape012612030.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"westeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/saptesiarm/providers/Microsoft.Storage/storageAccounts/saptesiarm\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"saptesiarm\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2015-08-27T12:13:00.4049179Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptesiarm.blob.core.windows.net/\",\r\n \"file\": \"https://saptesiarm.file.core.windows.net/\",\r\n \"queue\": \"https://saptesiarm.queue.core.windows.net/\",\r\n \"table\": \"https://saptesiarm.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/saptestrajrg/providers/Microsoft.Storage/storageAccounts/saptestrajrg4518\",\r\n \"location\": \"westus\",\r\n \"name\": \"saptestrajrg4518\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-07-22T19:24:21.1065762Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saptestrajrg4518.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Storage/storageAccounts/stocrptestps9762\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps9762\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-22T09:58:56.8703529Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps9762.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps9762.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps9762.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps9762.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/rg-sap-ll-azure-tests-we/providers/Microsoft.Storage/storageAccounts/temptestsap\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"temptestsap\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-10T14:03:58.3799849Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://temptestsap.blob.core.windows.net/\",\r\n \"file\": \"https://temptestsap.file.core.windows.net/\",\r\n \"queue\": \"https://temptestsap.queue.core.windows.net/\",\r\n \"table\": \"https://temptestsap.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/gor-ts2-test/providers/Microsoft.Storage/storageAccounts/ts2cdlko5xtxpo3k\",\r\n \"location\": \"westeurope\",\r\n \"name\": \"ts2cdlko5xtxpo3k\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2016-02-17T14:39:15.5207487Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ts2cdlko5xtxpo3k.blob.core.windows.net/\",\r\n \"file\": \"https://ts2cdlko5xtxpo3k.file.core.windows.net/\",\r\n \"queue\": \"https://ts2cdlko5xtxpo3k.queue.core.windows.net/\",\r\n \"table\": \"https://ts2cdlko5xtxpo3k.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "16406" + "18282" ], "Content-Type": [ "application/json" @@ -3986,7 +3821,7 @@ "no-cache" ], "x-ms-request-id": [ - "32a269be-330c-4628-aaee-2e7f7e23489d" + "097def5a-b816-4b2d-b8a6-5bd8d36bcfc3" ], "Cache-Control": [ "no-cache" @@ -3996,28 +3831,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14864" + "14847" ], "x-ms-correlation-request-id": [ - "32a269be-330c-4628-aaee-2e7f7e23489d" + "097def5a-b816-4b2d-b8a6-5bd8d36bcfc3" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T152952Z:32a269be-330c-4628-aaee-2e7f7e23489d" + "NORTHCENTRALUS:20160222T101953Z:097def5a-b816-4b2d-b8a6-5bd8d36bcfc3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Feb 2016 15:29:52 GMT" + "Mon, 22 Feb 2016 10:19:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691/extensions/IaaSDiagnostics?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczI2OTEvZXh0ZW5zaW9ucy9JYWFTRGlhZ25vc3RpY3M/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Compute/virtualMachines/vmcrptestps9762/extensions/IaaSDiagnostics?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczk3NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczk3NjIvZXh0ZW5zaW9ucy9JYWFTRGlhZ25vc3RpY3M/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Azure.Diagnostics\",\r\n \"type\": \"IaaSDiagnostics\",\r\n \"typeHandlerVersion\": \"1.5\",\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yKF9Ub3RhbClcJSBQcm9jZXNzb3IgVGltZSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yIEluZm9ybWF0aW9uKF9Ub3RhbClcUHJvY2Vzc29yIEZyZXF1ZW5jeSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XEF2YWlsYWJsZSBCeXRlcyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcVENQdjZcU2VnbWVudHMgUmV0cmFuc21pdHRlZC9zZWMiIHNhbXBsZVJhdGU9IlBUMU0iIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFRDUHY0XFNlZ21lbnRzIFJldHJhbnNtaXR0ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrIEludGVyZmFjZSgqKVxCeXRlcyBTZW50L3NlYyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29yayBJbnRlcmZhY2UoKilcQnl0ZXMgUmVjZWl2ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"protectedSettings\": {\r\n \"storageAccountName\": \"stocrptestps2691\",\r\n \"storageAccountKey\": \"ksbyRlxAgqiyj0T6m8/jNJkzfJOUm+tYeTfeHuIPoAR8my4OeyDrwitpaMkzY3ldPO6fvGus0iW1r5Af4qhI0g==\",\r\n \"storageAccountEndPoint\": \"https://core.windows.net\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Azure.Diagnostics\",\r\n \"type\": \"IaaSDiagnostics\",\r\n \"typeHandlerVersion\": \"1.5\",\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yKF9Ub3RhbClcJSBQcm9jZXNzb3IgVGltZSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yIEluZm9ybWF0aW9uKF9Ub3RhbClcUHJvY2Vzc29yIEZyZXF1ZW5jeSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XEF2YWlsYWJsZSBCeXRlcyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcVENQdjZcU2VnbWVudHMgUmV0cmFuc21pdHRlZC9zZWMiIHNhbXBsZVJhdGU9IlBUMU0iIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFRDUHY0XFNlZ21lbnRzIFJldHJhbnNtaXR0ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrIEludGVyZmFjZSgqKVxCeXRlcyBTZW50L3NlYyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29yayBJbnRlcmZhY2UoKilcQnl0ZXMgUmVjZWl2ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"protectedSettings\": {\r\n \"storageAccountName\": \"stocrptestps9762\",\r\n \"storageAccountKey\": \"XXK7r6OibQw4aD/9uQx1D1oVqp4qM3pwK3cGX4utqflFuAV3vaybT3SNVkheNJRzIyBtXFs+ndMH+qCmX8wtrQ==\",\r\n \"storageAccountEndPoint\": \"https://core.windows.net\"\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -4026,7 +3861,7 @@ "1735" ], "x-ms-client-request-id": [ - "5ba3f354-6678-41aa-afdd-61d71f89a056" + "137fef56-565b-4085-b4f2-0d0186c50284" ], "accept-language": [ "en-US" @@ -4035,7 +3870,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Azure.Diagnostics\",\r\n \"type\": \"IaaSDiagnostics\",\r\n \"typeHandlerVersion\": \"1.5\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yKF9Ub3RhbClcJSBQcm9jZXNzb3IgVGltZSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yIEluZm9ybWF0aW9uKF9Ub3RhbClcUHJvY2Vzc29yIEZyZXF1ZW5jeSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XEF2YWlsYWJsZSBCeXRlcyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcVENQdjZcU2VnbWVudHMgUmV0cmFuc21pdHRlZC9zZWMiIHNhbXBsZVJhdGU9IlBUMU0iIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFRDUHY0XFNlZ21lbnRzIFJldHJhbnNtaXR0ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrIEludGVyZmFjZSgqKVxCeXRlcyBTZW50L3NlYyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29yayBJbnRlcmZhY2UoKilcQnl0ZXMgUmVjZWl2ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691/extensions/IaaSDiagnostics\",\r\n \"name\": \"IaaSDiagnostics\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Azure.Diagnostics\",\r\n \"type\": \"IaaSDiagnostics\",\r\n \"typeHandlerVersion\": \"1.5\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yKF9Ub3RhbClcJSBQcm9jZXNzb3IgVGltZSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yIEluZm9ybWF0aW9uKF9Ub3RhbClcUHJvY2Vzc29yIEZyZXF1ZW5jeSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XEF2YWlsYWJsZSBCeXRlcyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcVENQdjZcU2VnbWVudHMgUmV0cmFuc21pdHRlZC9zZWMiIHNhbXBsZVJhdGU9IlBUMU0iIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFRDUHY0XFNlZ21lbnRzIFJldHJhbnNtaXR0ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrIEludGVyZmFjZSgqKVxCeXRlcyBTZW50L3NlYyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29yayBJbnRlcmZhY2UoKilcQnl0ZXMgUmVjZWl2ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Compute/virtualMachines/vmcrptestps9762/extensions/IaaSDiagnostics\",\r\n \"name\": \"IaaSDiagnostics\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1801" @@ -4050,16 +3885,16 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/fdd21def-ca56-4d59-85b7-7e0a914f3d72?api-version=2015-06-15" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/510cd7cc-6162-4f7d-973d-11594b7a4f39?api-version=2015-06-15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130999764799930695" ], "x-ms-request-id": [ - "fdd21def-ca56-4d59-85b7-7e0a914f3d72" + "510cd7cc-6162-4f7d-973d-11594b7a4f39" ], "Cache-Control": [ "no-cache" @@ -4069,23 +3904,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1197" ], "x-ms-correlation-request-id": [ - "67e00cc2-09c9-41e2-9f19-588197cca1bd" + "cf17c9b9-7141-47ab-b536-0c47fbe810ba" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T152343Z:67e00cc2-09c9-41e2-9f19-588197cca1bd" + "NORTHCENTRALUS:20160222T101440Z:cf17c9b9-7141-47ab-b536-0c47fbe810ba" ], "Date": [ - "Tue, 16 Feb 2016 15:23:43 GMT" + "Mon, 22 Feb 2016 10:14:39 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/fdd21def-ca56-4d59-85b7-7e0a914f3d72?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZmRkMjFkZWYtY2E1Ni00ZDU5LTg1YjctN2UwYTkxNGYzZDcyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/510cd7cc-6162-4f7d-973d-11594b7a4f39?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNTEwY2Q3Y2MtNjE2Mi00ZjdkLTk3M2QtMTE1OTRiN2E0ZjM5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4093,10 +3928,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"fdd21def-ca56-4d59-85b7-7e0a914f3d72\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T16:23:42.6236353+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"510cd7cc-6162-4f7d-973d-11594b7a4f39\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-22T11:14:39.253257+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "140" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4111,10 +3946,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130999764799930695" ], "x-ms-request-id": [ - "6c4318c9-2a10-49db-b740-0a19f047cc18" + "91955e96-50d9-4af4-991e-8b69212c2c75" ], "Cache-Control": [ "no-cache" @@ -4124,23 +3959,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14782" + "14946" ], "x-ms-correlation-request-id": [ - "7a4c8741-0d80-4ec0-8e55-cbb332858d39" + "74f365b9-c554-42b3-9b61-d7b9408160ac" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T152414Z:7a4c8741-0d80-4ec0-8e55-cbb332858d39" + "NORTHCENTRALUS:20160222T101510Z:74f365b9-c554-42b3-9b61-d7b9408160ac" ], "Date": [ - "Tue, 16 Feb 2016 15:24:13 GMT" + "Mon, 22 Feb 2016 10:15:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/fdd21def-ca56-4d59-85b7-7e0a914f3d72?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZmRkMjFkZWYtY2E1Ni00ZDU5LTg1YjctN2UwYTkxNGYzZDcyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/510cd7cc-6162-4f7d-973d-11594b7a4f39?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNTEwY2Q3Y2MtNjE2Mi00ZjdkLTk3M2QtMTE1OTRiN2E0ZjM5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4148,10 +3983,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"fdd21def-ca56-4d59-85b7-7e0a914f3d72\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T16:23:42.6236353+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"510cd7cc-6162-4f7d-973d-11594b7a4f39\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-22T11:14:39.253257+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "140" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4166,10 +4001,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130999764799930695" ], "x-ms-request-id": [ - "086b007b-ba06-4556-a4f4-07335335b30b" + "eac61d28-4daf-493b-a296-f8706335ad2a" ], "Cache-Control": [ "no-cache" @@ -4179,23 +4014,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14781" + "14943" ], "x-ms-correlation-request-id": [ - "6c614333-4ee3-4d1b-8aa5-20159da397a4" + "8d3e1223-7746-4fac-8a26-38f898327f61" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T152444Z:6c614333-4ee3-4d1b-8aa5-20159da397a4" + "NORTHCENTRALUS:20160222T101540Z:8d3e1223-7746-4fac-8a26-38f898327f61" ], "Date": [ - "Tue, 16 Feb 2016 15:24:43 GMT" + "Mon, 22 Feb 2016 10:15:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/fdd21def-ca56-4d59-85b7-7e0a914f3d72?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZmRkMjFkZWYtY2E1Ni00ZDU5LTg1YjctN2UwYTkxNGYzZDcyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/510cd7cc-6162-4f7d-973d-11594b7a4f39?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNTEwY2Q3Y2MtNjE2Mi00ZjdkLTk3M2QtMTE1OTRiN2E0ZjM5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4203,10 +4038,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"fdd21def-ca56-4d59-85b7-7e0a914f3d72\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T16:23:42.6236353+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"510cd7cc-6162-4f7d-973d-11594b7a4f39\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-22T11:14:39.253257+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "140" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4221,10 +4056,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130999764799930695" ], "x-ms-request-id": [ - "22f2dc93-e951-4ada-b0cc-72c0c262b874" + "c83f136b-0cf7-4fb3-b095-134c14b7073e" ], "Cache-Control": [ "no-cache" @@ -4234,23 +4069,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14785" + "14941" ], "x-ms-correlation-request-id": [ - "8c56a5d3-ba1e-4df9-8474-9c72f3cf44b1" + "330db649-ab57-48b1-8347-bf4737a3ae90" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T152514Z:8c56a5d3-ba1e-4df9-8474-9c72f3cf44b1" + "NORTHCENTRALUS:20160222T101611Z:330db649-ab57-48b1-8347-bf4737a3ae90" ], "Date": [ - "Tue, 16 Feb 2016 15:25:13 GMT" + "Mon, 22 Feb 2016 10:16:11 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/fdd21def-ca56-4d59-85b7-7e0a914f3d72?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZmRkMjFkZWYtY2E1Ni00ZDU5LTg1YjctN2UwYTkxNGYzZDcyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/510cd7cc-6162-4f7d-973d-11594b7a4f39?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNTEwY2Q3Y2MtNjE2Mi00ZjdkLTk3M2QtMTE1OTRiN2E0ZjM5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4258,10 +4093,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"fdd21def-ca56-4d59-85b7-7e0a914f3d72\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T16:23:42.6236353+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"510cd7cc-6162-4f7d-973d-11594b7a4f39\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-22T11:14:39.253257+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "140" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4276,10 +4111,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130999764799930695" ], "x-ms-request-id": [ - "2be46c15-91a4-4a00-aaf8-5822bc4ba1a1" + "22fc8918-2c43-4a98-86c6-52c7f15c877e" ], "Cache-Control": [ "no-cache" @@ -4289,23 +4124,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14784" + "14939" ], "x-ms-correlation-request-id": [ - "c1776f3d-19a0-437f-aae8-c7c4fe73d8a8" + "740b9239-9134-42d8-a82c-bf0202890603" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T152544Z:c1776f3d-19a0-437f-aae8-c7c4fe73d8a8" + "NORTHCENTRALUS:20160222T101641Z:740b9239-9134-42d8-a82c-bf0202890603" ], "Date": [ - "Tue, 16 Feb 2016 15:25:44 GMT" + "Mon, 22 Feb 2016 10:16:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/fdd21def-ca56-4d59-85b7-7e0a914f3d72?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZmRkMjFkZWYtY2E1Ni00ZDU5LTg1YjctN2UwYTkxNGYzZDcyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/510cd7cc-6162-4f7d-973d-11594b7a4f39?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNTEwY2Q3Y2MtNjE2Mi00ZjdkLTk3M2QtMTE1OTRiN2E0ZjM5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4313,7 +4148,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"fdd21def-ca56-4d59-85b7-7e0a914f3d72\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-02-16T16:23:42.6236353+01:00\",\r\n \"endTime\": \"2016-02-16T16:25:57.513401+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"510cd7cc-6162-4f7d-973d-11594b7a4f39\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-02-22T11:14:39.253257+01:00\",\r\n \"endTime\": \"2016-02-22T11:16:49.4095569+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "190" @@ -4331,10 +4166,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130999764799930695" ], "x-ms-request-id": [ - "7c967a76-0bac-4917-96b9-e920e43887bc" + "b548b328-cce5-42bf-999f-f422415ea8c9" ], "Cache-Control": [ "no-cache" @@ -4344,23 +4179,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14782" + "14938" ], "x-ms-correlation-request-id": [ - "9c705cb0-fe8e-455d-81e3-297dd63e67b4" + "653f5394-0c66-4887-98c4-75450c5c2797" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T152614Z:9c705cb0-fe8e-455d-81e3-297dd63e67b4" + "NORTHCENTRALUS:20160222T101711Z:653f5394-0c66-4887-98c4-75450c5c2797" ], "Date": [ - "Tue, 16 Feb 2016 15:26:14 GMT" + "Mon, 22 Feb 2016 10:17:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691/extensions/IaaSDiagnostics?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczI2OTEvZXh0ZW5zaW9ucy9JYWFTRGlhZ25vc3RpY3M/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Compute/virtualMachines/vmcrptestps9762/extensions/IaaSDiagnostics?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczk3NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczk3NjIvZXh0ZW5zaW9ucy9JYWFTRGlhZ25vc3RpY3M/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4368,7 +4203,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Azure.Diagnostics\",\r\n \"type\": \"IaaSDiagnostics\",\r\n \"typeHandlerVersion\": \"1.5\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yKF9Ub3RhbClcJSBQcm9jZXNzb3IgVGltZSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yIEluZm9ybWF0aW9uKF9Ub3RhbClcUHJvY2Vzc29yIEZyZXF1ZW5jeSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XEF2YWlsYWJsZSBCeXRlcyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcVENQdjZcU2VnbWVudHMgUmV0cmFuc21pdHRlZC9zZWMiIHNhbXBsZVJhdGU9IlBUMU0iIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFRDUHY0XFNlZ21lbnRzIFJldHJhbnNtaXR0ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrIEludGVyZmFjZSgqKVxCeXRlcyBTZW50L3NlYyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29yayBJbnRlcmZhY2UoKilcQnl0ZXMgUmVjZWl2ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691/extensions/IaaSDiagnostics\",\r\n \"name\": \"IaaSDiagnostics\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Azure.Diagnostics\",\r\n \"type\": \"IaaSDiagnostics\",\r\n \"typeHandlerVersion\": \"1.5\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"xmlCfg\": \"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxQZXJmb3JtYW5jZUNvdW50ZXJzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yKF9Ub3RhbClcJSBQcm9jZXNzb3IgVGltZSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yIEluZm9ybWF0aW9uKF9Ub3RhbClcUHJvY2Vzc29yIEZyZXF1ZW5jeSIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XEF2YWlsYWJsZSBCeXRlcyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcVENQdjZcU2VnbWVudHMgUmV0cmFuc21pdHRlZC9zZWMiIHNhbXBsZVJhdGU9IlBUMU0iIC8+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFRDUHY0XFNlZ21lbnRzIFJldHJhbnNtaXR0ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrIEludGVyZmFjZSgqKVxCeXRlcyBTZW50L3NlYyIgc2FtcGxlUmF0ZT0iUFQxTSIgLz48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29yayBJbnRlcmZhY2UoKilcQnl0ZXMgUmVjZWl2ZWQvc2VjIiBzYW1wbGVSYXRlPSJQVDFNIiAvPjwvUGVyZm9ybWFuY2VDb3VudGVycz48L0RpYWdub3N0aWNNb25pdG9yQ29uZmlndXJhdGlvbj48L1dhZENmZz4=\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Compute/virtualMachines/vmcrptestps9762/extensions/IaaSDiagnostics\",\r\n \"name\": \"IaaSDiagnostics\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1802" @@ -4386,10 +4221,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130999764799930695" ], "x-ms-request-id": [ - "3d10f75f-a6c1-4de8-b703-30905665209e" + "a40c2232-e3fb-4bb3-8a93-832da211048e" ], "Cache-Control": [ "no-cache" @@ -4399,25 +4234,25 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14781" + "14937" ], "x-ms-correlation-request-id": [ - "c9297aa4-5725-436c-9eed-dd81f912d9f5" + "fa5bbd9d-2225-4a27-ac7c-170eb724d3d4" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T152615Z:c9297aa4-5725-436c-9eed-dd81f912d9f5" + "NORTHCENTRALUS:20160222T101712Z:fa5bbd9d-2225-4a27-ac7c-170eb724d3d4" ], "Date": [ - "Tue, 16 Feb 2016 15:26:14 GMT" + "Mon, 22 Feb 2016 10:17:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691/extensions/AzureCATExtensionHandler?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczI2OTEvZXh0ZW5zaW9ucy9BenVyZUNBVEV4dGVuc2lvbkhhbmRsZXI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Compute/virtualMachines/vmcrptestps9762/extensions/AzureCATExtensionHandler?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczk3NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczk3NjIvZXh0ZW5zaW9ucy9BenVyZUNBVEV4dGVuc2lvbkhhbmRsZXI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"type\": \"AzureCATExtensionHandler\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_A2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"osdisk.connminute\",\r\n \"value\": \"stocrptestps2691.minute\"\r\n },\r\n {\r\n \"key\": \"osdisk.connhour\",\r\n \"value\": \"stocrptestps2691.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.1\",\r\n \"value\": \"stocrptestps2691.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.1\",\r\n \"value\": \"stocrptestps2691.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.2\",\r\n \"value\": \"stocrptestps2691.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.2\",\r\n \"value\": \"stocrptestps2691.hour\"\r\n },\r\n {\r\n \"key\": \"stocrptestps2691.hour.uri\",\r\n \"value\": \"https://stocrptestps2691.table.core.windows.net/$MetricsHourPrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps2691.minute.uri\",\r\n \"value\": \"https://stocrptestps2691.table.core.windows.net/$MetricsMinutePrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps2691.hour.name\",\r\n \"value\": \"stocrptestps2691\"\r\n },\r\n {\r\n \"key\": \"stocrptestps2691.minute.name\",\r\n \"value\": \"stocrptestps2691\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps2691\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps2691.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"protectedSettings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"stocrptestps2691.hour.key\",\r\n \"value\": \"ksbyRlxAgqiyj0T6m8/jNJkzfJOUm+tYeTfeHuIPoAR8my4OeyDrwitpaMkzY3ldPO6fvGus0iW1r5Af4qhI0g==\"\r\n },\r\n {\r\n \"key\": \"stocrptestps2691.minute.key\",\r\n \"value\": \"ksbyRlxAgqiyj0T6m8/jNJkzfJOUm+tYeTfeHuIPoAR8my4OeyDrwitpaMkzY3ldPO6fvGus0iW1r5Af4qhI0g==\"\r\n },\r\n {\r\n \"key\": \"wad.key\",\r\n \"value\": \"ksbyRlxAgqiyj0T6m8/jNJkzfJOUm+tYeTfeHuIPoAR8my4OeyDrwitpaMkzY3ldPO6fvGus0iW1r5Af4qhI0g==\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"type\": \"AzureCATExtensionHandler\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_A2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"osdisk.connminute\",\r\n \"value\": \"stocrptestps9762.minute\"\r\n },\r\n {\r\n \"key\": \"osdisk.connhour\",\r\n \"value\": \"stocrptestps9762.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.1\",\r\n \"value\": \"stocrptestps9762.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.1\",\r\n \"value\": \"stocrptestps9762.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.2\",\r\n \"value\": \"stocrptestps9762.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.2\",\r\n \"value\": \"stocrptestps9762.hour\"\r\n },\r\n {\r\n \"key\": \"stocrptestps9762.hour.uri\",\r\n \"value\": \"https://stocrptestps9762.table.core.windows.net/$MetricsHourPrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps9762.minute.uri\",\r\n \"value\": \"https://stocrptestps9762.table.core.windows.net/$MetricsMinutePrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps9762.hour.name\",\r\n \"value\": \"stocrptestps9762\"\r\n },\r\n {\r\n \"key\": \"stocrptestps9762.minute.name\",\r\n \"value\": \"stocrptestps9762\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps9762\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps9762.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"protectedSettings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"stocrptestps9762.hour.key\",\r\n \"value\": \"XXK7r6OibQw4aD/9uQx1D1oVqp4qM3pwK3cGX4utqflFuAV3vaybT3SNVkheNJRzIyBtXFs+ndMH+qCmX8wtrQ==\"\r\n },\r\n {\r\n \"key\": \"stocrptestps9762.minute.key\",\r\n \"value\": \"XXK7r6OibQw4aD/9uQx1D1oVqp4qM3pwK3cGX4utqflFuAV3vaybT3SNVkheNJRzIyBtXFs+ndMH+qCmX8wtrQ==\"\r\n },\r\n {\r\n \"key\": \"wad.key\",\r\n \"value\": \"XXK7r6OibQw4aD/9uQx1D1oVqp4qM3pwK3cGX4utqflFuAV3vaybT3SNVkheNJRzIyBtXFs+ndMH+qCmX8wtrQ==\"\r\n }\r\n ]\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -4426,7 +4261,7 @@ "3891" ], "x-ms-client-request-id": [ - "ac403b81-db38-4e02-aeed-4cf2de340c10" + "413ce46a-2033-49f2-a7f4-b25c5e332a4c" ], "accept-language": [ "en-US" @@ -4435,7 +4270,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"type\": \"AzureCATExtensionHandler\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_A2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"osdisk.connminute\",\r\n \"value\": \"stocrptestps2691.minute\"\r\n },\r\n {\r\n \"key\": \"osdisk.connhour\",\r\n \"value\": \"stocrptestps2691.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.1\",\r\n \"value\": \"stocrptestps2691.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.1\",\r\n \"value\": \"stocrptestps2691.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.2\",\r\n \"value\": \"stocrptestps2691.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.2\",\r\n \"value\": \"stocrptestps2691.hour\"\r\n },\r\n {\r\n \"key\": \"stocrptestps2691.hour.uri\",\r\n \"value\": \"https://stocrptestps2691.table.core.windows.net/$MetricsHourPrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps2691.minute.uri\",\r\n \"value\": \"https://stocrptestps2691.table.core.windows.net/$MetricsMinutePrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps2691.hour.name\",\r\n \"value\": \"stocrptestps2691\"\r\n },\r\n {\r\n \"key\": \"stocrptestps2691.minute.name\",\r\n \"value\": \"stocrptestps2691\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps2691\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps2691.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691/extensions/AzureCATExtensionHandler\",\r\n \"name\": \"AzureCATExtensionHandler\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"type\": \"AzureCATExtensionHandler\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_A2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"osdisk.connminute\",\r\n \"value\": \"stocrptestps9762.minute\"\r\n },\r\n {\r\n \"key\": \"osdisk.connhour\",\r\n \"value\": \"stocrptestps9762.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.1\",\r\n \"value\": \"stocrptestps9762.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.1\",\r\n \"value\": \"stocrptestps9762.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.2\",\r\n \"value\": \"stocrptestps9762.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.2\",\r\n \"value\": \"stocrptestps9762.hour\"\r\n },\r\n {\r\n \"key\": \"stocrptestps9762.hour.uri\",\r\n \"value\": \"https://stocrptestps9762.table.core.windows.net/$MetricsHourPrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps9762.minute.uri\",\r\n \"value\": \"https://stocrptestps9762.table.core.windows.net/$MetricsMinutePrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps9762.hour.name\",\r\n \"value\": \"stocrptestps9762\"\r\n },\r\n {\r\n \"key\": \"stocrptestps9762.minute.name\",\r\n \"value\": \"stocrptestps9762\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps9762\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps9762.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Compute/virtualMachines/vmcrptestps9762/extensions/AzureCATExtensionHandler\",\r\n \"name\": \"AzureCATExtensionHandler\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "2226" @@ -4450,16 +4285,16 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/65deaf1b-fdda-45d0-9102-b586ca528e3b?api-version=2015-06-15" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/00bfb9cf-4be3-48c9-ab2c-8e5c94902af2?api-version=2015-06-15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130999764799930695" ], "x-ms-request-id": [ - "65deaf1b-fdda-45d0-9102-b586ca528e3b" + "00bfb9cf-4be3-48c9-ab2c-8e5c94902af2" ], "Cache-Control": [ "no-cache" @@ -4469,23 +4304,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1196" ], "x-ms-correlation-request-id": [ - "16c94ac5-525f-400a-a54d-b667710a3319" + "7f9ec6dd-b07f-411d-bcbe-b00ba6f3b06b" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T152617Z:16c94ac5-525f-400a-a54d-b667710a3319" + "NORTHCENTRALUS:20160222T101714Z:7f9ec6dd-b07f-411d-bcbe-b00ba6f3b06b" ], "Date": [ - "Tue, 16 Feb 2016 15:26:17 GMT" + "Mon, 22 Feb 2016 10:17:14 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/65deaf1b-fdda-45d0-9102-b586ca528e3b?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNjVkZWFmMWItZmRkYS00NWQwLTkxMDItYjU4NmNhNTI4ZTNiP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/00bfb9cf-4be3-48c9-ab2c-8e5c94902af2?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMDBiZmI5Y2YtNGJlMy00OGM5LWFiMmMtOGU1Yzk0OTAyYWYyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4493,7 +4328,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"65deaf1b-fdda-45d0-9102-b586ca528e3b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T16:26:16.6226732+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"00bfb9cf-4be3-48c9-ab2c-8e5c94902af2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-22T11:17:13.3314056+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -4511,10 +4346,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130999764799930695" ], "x-ms-request-id": [ - "f10bf06c-7852-4744-85bf-1fa56585a785" + "0f3ee002-1471-4065-8ef4-a9b18a61feb7" ], "Cache-Control": [ "no-cache" @@ -4524,23 +4359,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14776" + "14935" ], "x-ms-correlation-request-id": [ - "0ab3539b-bf13-4fcf-986f-17929f4ac43c" + "ce683d80-ca9a-4057-a436-54a0517ad2a6" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T152647Z:0ab3539b-bf13-4fcf-986f-17929f4ac43c" + "NORTHCENTRALUS:20160222T101744Z:ce683d80-ca9a-4057-a436-54a0517ad2a6" ], "Date": [ - "Tue, 16 Feb 2016 15:26:47 GMT" + "Mon, 22 Feb 2016 10:17:43 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/65deaf1b-fdda-45d0-9102-b586ca528e3b?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNjVkZWFmMWItZmRkYS00NWQwLTkxMDItYjU4NmNhNTI4ZTNiP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/00bfb9cf-4be3-48c9-ab2c-8e5c94902af2?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMDBiZmI5Y2YtNGJlMy00OGM5LWFiMmMtOGU1Yzk0OTAyYWYyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4548,10 +4383,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"65deaf1b-fdda-45d0-9102-b586ca528e3b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T16:26:16.6226732+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"00bfb9cf-4be3-48c9-ab2c-8e5c94902af2\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-02-22T11:17:13.3314056+01:00\",\r\n \"endTime\": \"2016-02-22T11:18:05.0345566+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "191" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4566,10 +4401,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130999764799930695" ], "x-ms-request-id": [ - "12ede86c-e50c-4a5d-8b9f-b0bb591f7936" + "ace200e1-1579-4f5e-9ea7-57e421d3dfdd" ], "Cache-Control": [ "no-cache" @@ -4579,23 +4414,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14774" + "14934" ], "x-ms-correlation-request-id": [ - "4d71aab3-a484-4b9f-b724-3f19cf97b3ff" + "640c2b53-505f-4e5c-a7b7-1641240f8e79" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T152717Z:4d71aab3-a484-4b9f-b724-3f19cf97b3ff" + "NORTHCENTRALUS:20160222T101814Z:640c2b53-505f-4e5c-a7b7-1641240f8e79" ], "Date": [ - "Tue, 16 Feb 2016 15:27:17 GMT" + "Mon, 22 Feb 2016 10:18:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/65deaf1b-fdda-45d0-9102-b586ca528e3b?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNjVkZWFmMWItZmRkYS00NWQwLTkxMDItYjU4NmNhNTI4ZTNiP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Compute/virtualMachines/vmcrptestps9762/extensions/AzureCATExtensionHandler?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczk3NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczk3NjIvZXh0ZW5zaW9ucy9BenVyZUNBVEV4dGVuc2lvbkhhbmRsZXI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4603,10 +4438,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"65deaf1b-fdda-45d0-9102-b586ca528e3b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T16:26:16.6226732+01:00\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"type\": \"AzureCATExtensionHandler\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_A2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"osdisk.connminute\",\r\n \"value\": \"stocrptestps9762.minute\"\r\n },\r\n {\r\n \"key\": \"osdisk.connhour\",\r\n \"value\": \"stocrptestps9762.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.1\",\r\n \"value\": \"stocrptestps9762.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.1\",\r\n \"value\": \"stocrptestps9762.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.2\",\r\n \"value\": \"stocrptestps9762.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.2\",\r\n \"value\": \"stocrptestps9762.hour\"\r\n },\r\n {\r\n \"key\": \"stocrptestps9762.hour.uri\",\r\n \"value\": \"https://stocrptestps9762.table.core.windows.net/$MetricsHourPrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps9762.minute.uri\",\r\n \"value\": \"https://stocrptestps9762.table.core.windows.net/$MetricsMinutePrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps9762.hour.name\",\r\n \"value\": \"stocrptestps9762\"\r\n },\r\n {\r\n \"key\": \"stocrptestps9762.minute.name\",\r\n \"value\": \"stocrptestps9762\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps9762\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps9762.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Compute/virtualMachines/vmcrptestps9762/extensions/AzureCATExtensionHandler\",\r\n \"name\": \"AzureCATExtensionHandler\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "2227" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4621,10 +4456,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130999764799930695" ], "x-ms-request-id": [ - "7235b885-a5c7-4fa2-b1dc-ceaf98c3bb5c" + "38ab2909-3638-4cf8-9605-1b7d68dee80c" ], "Cache-Control": [ "no-cache" @@ -4634,34 +4469,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14773" + "14933" ], "x-ms-correlation-request-id": [ - "85b2938b-8f4e-470b-b6f7-643d83d6bad3" + "49ad83bf-be8b-4995-b117-7603a9664e47" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T152748Z:85b2938b-8f4e-470b-b6f7-643d83d6bad3" + "NORTHCENTRALUS:20160222T101814Z:49ad83bf-be8b-4995-b117-7603a9664e47" ], "Date": [ - "Tue, 16 Feb 2016 15:27:48 GMT" + "Mon, 22 Feb 2016 10:18:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/65deaf1b-fdda-45d0-9102-b586ca528e3b?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNjVkZWFmMWItZmRkYS00NWQwLTkxMDItYjU4NmNhNTI4ZTNiP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Compute/virtualMachines/vmcrptestps9762/extensions/AzureCATExtensionHandler?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczk3NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczk3NjIvZXh0ZW5zaW9ucy9BenVyZUNBVEV4dGVuc2lvbkhhbmRsZXI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4e774f5f-ac95-4f13-bc94-4a1864c1f98d" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"65deaf1b-fdda-45d0-9102-b586ca528e3b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T16:26:16.6226732+01:00\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"type\": \"AzureCATExtensionHandler\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_A2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"osdisk.connminute\",\r\n \"value\": \"stocrptestps9762.minute\"\r\n },\r\n {\r\n \"key\": \"osdisk.connhour\",\r\n \"value\": \"stocrptestps9762.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.1\",\r\n \"value\": \"stocrptestps9762.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.1\",\r\n \"value\": \"stocrptestps9762.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.2\",\r\n \"value\": \"stocrptestps9762.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.2\",\r\n \"value\": \"stocrptestps9762.hour\"\r\n },\r\n {\r\n \"key\": \"stocrptestps9762.hour.uri\",\r\n \"value\": \"https://stocrptestps9762.table.core.windows.net/$MetricsHourPrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps9762.minute.uri\",\r\n \"value\": \"https://stocrptestps9762.table.core.windows.net/$MetricsMinutePrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps9762.hour.name\",\r\n \"value\": \"stocrptestps9762\"\r\n },\r\n {\r\n \"key\": \"stocrptestps9762.minute.name\",\r\n \"value\": \"stocrptestps9762\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps9762\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps9762.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Compute/virtualMachines/vmcrptestps9762/extensions/AzureCATExtensionHandler\",\r\n \"name\": \"AzureCATExtensionHandler\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "2227" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4676,10 +4517,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130999764799930695" ], "x-ms-request-id": [ - "b608ab96-71bf-42e8-90ec-f7a4e95c2458" + "d937dfa4-3288-466b-b26a-d740ff8fce0b" ], "Cache-Control": [ "no-cache" @@ -4689,266 +4530,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14772" + "14929" ], "x-ms-correlation-request-id": [ - "889bdefe-1f6b-475e-a571-d441c417c783" + "4656a29b-f2d8-4ed0-beb4-21f99db62acf" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T152818Z:889bdefe-1f6b-475e-a571-d441c417c783" + "NORTHCENTRALUS:20160222T101940Z:4656a29b-f2d8-4ed0-beb4-21f99db62acf" ], "Date": [ - "Tue, 16 Feb 2016 15:28:17 GMT" + "Mon, 22 Feb 2016 10:19:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/65deaf1b-fdda-45d0-9102-b586ca528e3b?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNjVkZWFmMWItZmRkYS00NWQwLTkxMDItYjU4NmNhNTI4ZTNiP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourceGroups/crptestps9762/providers/Microsoft.Compute/virtualMachines/vmcrptestps9762/extensions/AzureCATExtensionHandler?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczk3NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczk3NjIvZXh0ZW5zaW9ucy9BenVyZUNBVEV4dGVuc2lvbkhhbmRsZXI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "cee048d6-5e91-443c-99e6-f1f1ce313561" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"65deaf1b-fdda-45d0-9102-b586ca528e3b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T16:26:16.6226732+01:00\"\r\n}", + "ResponseBody": "", "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-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" - ], - "x-ms-request-id": [ - "2b9c6960-322c-489b-a2bb-c8ca9a51845e" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14771" - ], - "x-ms-correlation-request-id": [ - "f1c95bde-1ced-4536-bb1f-23a4141fe203" - ], - "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T152848Z:f1c95bde-1ced-4536-bb1f-23a4141fe203" - ], - "Date": [ - "Tue, 16 Feb 2016 15:28:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/65deaf1b-fdda-45d0-9102-b586ca528e3b?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNjVkZWFmMWItZmRkYS00NWQwLTkxMDItYjU4NmNhNTI4ZTNiP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"operationId\": \"65deaf1b-fdda-45d0-9102-b586ca528e3b\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-02-16T16:26:16.6226732+01:00\",\r\n \"endTime\": \"2016-02-16T16:28:50.2310717+01: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-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" - ], - "x-ms-request-id": [ - "c5b863cf-9fbd-4102-9da1-78e0691809a3" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14767" - ], - "x-ms-correlation-request-id": [ - "dcf756fc-facc-4a7d-bd66-969b85e9e1e3" - ], - "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T152918Z:dcf756fc-facc-4a7d-bd66-969b85e9e1e3" - ], - "Date": [ - "Tue, 16 Feb 2016 15:29:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691/extensions/AzureCATExtensionHandler?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczI2OTEvZXh0ZW5zaW9ucy9BenVyZUNBVEV4dGVuc2lvbkhhbmRsZXI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"type\": \"AzureCATExtensionHandler\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_A2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"osdisk.connminute\",\r\n \"value\": \"stocrptestps2691.minute\"\r\n },\r\n {\r\n \"key\": \"osdisk.connhour\",\r\n \"value\": \"stocrptestps2691.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.1\",\r\n \"value\": \"stocrptestps2691.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.1\",\r\n \"value\": \"stocrptestps2691.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.2\",\r\n \"value\": \"stocrptestps2691.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.2\",\r\n \"value\": \"stocrptestps2691.hour\"\r\n },\r\n {\r\n \"key\": \"stocrptestps2691.hour.uri\",\r\n \"value\": \"https://stocrptestps2691.table.core.windows.net/$MetricsHourPrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps2691.minute.uri\",\r\n \"value\": \"https://stocrptestps2691.table.core.windows.net/$MetricsMinutePrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps2691.hour.name\",\r\n \"value\": \"stocrptestps2691\"\r\n },\r\n {\r\n \"key\": \"stocrptestps2691.minute.name\",\r\n \"value\": \"stocrptestps2691\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps2691\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps2691.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691/extensions/AzureCATExtensionHandler\",\r\n \"name\": \"AzureCATExtensionHandler\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "2227" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" - ], - "x-ms-request-id": [ - "412759aa-6937-4bca-8c06-efbe0ab96388" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14766" - ], - "x-ms-correlation-request-id": [ - "a5b95aa5-e61b-4937-bac6-47b4ffff9390" - ], - "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T152918Z:a5b95aa5-e61b-4937-bac6-47b4ffff9390" - ], - "Date": [ - "Tue, 16 Feb 2016 15:29:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691/extensions/AzureCATExtensionHandler?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczI2OTEvZXh0ZW5zaW9ucy9BenVyZUNBVEV4dGVuc2lvbkhhbmRsZXI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "80a4a6c3-7ae4-4f24-a0ad-07c860703be5" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"type\": \"AzureCATExtensionHandler\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_A2\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"osdisk.connminute\",\r\n \"value\": \"stocrptestps2691.minute\"\r\n },\r\n {\r\n \"key\": \"osdisk.connhour\",\r\n \"value\": \"stocrptestps2691.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.1\",\r\n \"value\": \"stocrptestps2691.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.1\",\r\n \"value\": \"stocrptestps2691.hour\"\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Standard\"\r\n },\r\n {\r\n \"key\": \"disk.connminute.2\",\r\n \"value\": \"stocrptestps2691.minute\"\r\n },\r\n {\r\n \"key\": \"disk.connhour.2\",\r\n \"value\": \"stocrptestps2691.hour\"\r\n },\r\n {\r\n \"key\": \"stocrptestps2691.hour.uri\",\r\n \"value\": \"https://stocrptestps2691.table.core.windows.net/$MetricsHourPrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps2691.minute.uri\",\r\n \"value\": \"https://stocrptestps2691.table.core.windows.net/$MetricsMinutePrimaryTransactionsBlob\"\r\n },\r\n {\r\n \"key\": \"stocrptestps2691.hour.name\",\r\n \"value\": \"stocrptestps2691\"\r\n },\r\n {\r\n \"key\": \"stocrptestps2691.minute.name\",\r\n \"value\": \"stocrptestps2691\"\r\n },\r\n {\r\n \"key\": \"wad.name\",\r\n \"value\": \"stocrptestps2691\"\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"key\": \"wad.uri\",\r\n \"value\": \"https://stocrptestps2691.table.core.windows.net/WADPerformanceCountersTable\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691/extensions/AzureCATExtensionHandler\",\r\n \"name\": \"AzureCATExtensionHandler\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "2227" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" - ], - "x-ms-request-id": [ - "625f8f46-a22b-4499-972e-d1a450d44ba1" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14764" - ], - "x-ms-correlation-request-id": [ - "9ed8f12e-2343-4291-9772-20004077890b" - ], - "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T152919Z:9ed8f12e-2343-4291-9772-20004077890b" - ], - "Date": [ - "Tue, 16 Feb 2016 15:29:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691/restart?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczI2OTEvcmVzdGFydD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", - "RequestMethod": "POST", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "be173ef0-9770-44ab-9eff-90db7606c919" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" + "0" ], "Expires": [ "-1" @@ -4957,164 +4572,45 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/8fc10530-ab62-40b3-859a-37231a058096?api-version=2015-06-15" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/89661315-a689-4145-a817-24ebea52c360?api-version=2015-06-15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130999764799930695" ], "x-ms-request-id": [ - "8fc10530-ab62-40b3-859a-37231a058096" + "89661315-a689-4145-a817-24ebea52c360" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/8fc10530-ab62-40b3-859a-37231a058096?monitor=true&api-version=2015-06-15" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/89661315-a689-4145-a817-24ebea52c360?monitor=true&api-version=2015-06-15" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" - ], - "x-ms-correlation-request-id": [ - "9263ef6f-0037-4c7e-9586-be6c9d83ed63" - ], - "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T152921Z:9263ef6f-0037-4c7e-9586-be6c9d83ed63" - ], - "Date": [ - "Tue, 16 Feb 2016 15:29:20 GMT" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/8fc10530-ab62-40b3-859a-37231a058096?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOGZjMTA1MzAtYWI2Mi00MGIzLTg1OWEtMzcyMzFhMDU4MDk2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"operationId\": \"8fc10530-ab62-40b3-859a-37231a058096\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-02-16T16:29:21.0433228+01:00\",\r\n \"endTime\": \"2016-02-16T16:29:40.043203+01: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-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" - ], - "x-ms-request-id": [ - "4c630565-63ad-4819-8735-99b09790ec74" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14762" - ], - "x-ms-correlation-request-id": [ - "595e2365-9896-4aa8-8d4a-c6277930f35b" - ], - "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T152951Z:595e2365-9896-4aa8-8d4a-c6277930f35b" - ], - "Date": [ - "Tue, 16 Feb 2016 15:29:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourceGroups/crptestps2691/providers/Microsoft.Compute/virtualMachines/vmcrptestps2691/extensions/AzureCATExtensionHandler?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczI2OTEvZXh0ZW5zaW9ucy9BenVyZUNBVEV4dGVuc2lvbkhhbmRsZXI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8006bea1-4c6f-4eee-bff1-1761dd9b77c2" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/5410e940-e834-41d8-9653-a4f28008a2eb?api-version=2015-06-15" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" - ], - "x-ms-request-id": [ - "5410e940-e834-41d8-9653-a4f28008a2eb" - ], - "Cache-Control": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/5410e940-e834-41d8-9653-a4f28008a2eb?monitor=true&api-version=2015-06-15" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1195" ], "x-ms-correlation-request-id": [ - "a26aef1e-b376-4a48-bc6e-6f635a9bd1b3" + "a18fe3a8-23c4-44cc-82ca-1db4803afb14" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T160125Z:a26aef1e-b376-4a48-bc6e-6f635a9bd1b3" + "NORTHCENTRALUS:20160222T101958Z:a18fe3a8-23c4-44cc-82ca-1db4803afb14" ], "Date": [ - "Tue, 16 Feb 2016 16:01:25 GMT" + "Mon, 22 Feb 2016 10:19:57 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/5410e940-e834-41d8-9653-a4f28008a2eb?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNTQxMGU5NDAtZTgzNC00MWQ4LTk2NTMtYTRmMjgwMDhhMmViP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/89661315-a689-4145-a817-24ebea52c360?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvODk2NjEzMTUtYTY4OS00MTQ1LWE4MTctMjRlYmVhNTJjMzYwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5122,10 +4618,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"5410e940-e834-41d8-9653-a4f28008a2eb\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-16T17:01:24.765351+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"89661315-a689-4145-a817-24ebea52c360\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-22T11:19:57.9564313+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "140" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5140,10 +4636,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130999764799930695" ], "x-ms-request-id": [ - "219f54f6-c331-4594-8587-31a764000f53" + "3c546f00-b204-4784-9ef9-91cdb2642710" ], "Cache-Control": [ "no-cache" @@ -5153,23 +4649,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14791" + "14928" ], "x-ms-correlation-request-id": [ - "4cade3e6-d109-471d-bb89-2805f8088028" + "60a45414-348c-4629-a30a-9b2db9e8f91a" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T160155Z:4cade3e6-d109-471d-bb89-2805f8088028" + "NORTHCENTRALUS:20160222T102028Z:60a45414-348c-4629-a30a-9b2db9e8f91a" ], "Date": [ - "Tue, 16 Feb 2016 16:01:55 GMT" + "Mon, 22 Feb 2016 10:20:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/providers/Microsoft.Compute/locations/eastus/operations/5410e940-e834-41d8-9653-a4f28008a2eb?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNTQxMGU5NDAtZTgzNC00MWQ4LTk2NTMtYTRmMjgwMDhhMmViP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/providers/Microsoft.Compute/locations/eastus/operations/89661315-a689-4145-a817-24ebea52c360?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvODk2NjEzMTUtYTY4OS00MTQ1LWE4MTctMjRlYmVhNTJjMzYwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5177,10 +4673,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"5410e940-e834-41d8-9653-a4f28008a2eb\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-02-16T17:01:24.765351+01:00\",\r\n \"endTime\": \"2016-02-16T17:02:05.3120184+01:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"89661315-a689-4145-a817-24ebea52c360\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-02-22T11:19:57.9564313+01:00\",\r\n \"endTime\": \"2016-02-22T11:20:42.1751208+01:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "190" + "191" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5195,10 +4691,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130996393152608155" + "677c06ab-4996-4f5c-acbc-169d4b26f1ba_130999764799930695" ], "x-ms-request-id": [ - "2504c35e-6b76-4de8-8d8e-73e8a7954bae" + "1a77d625-bec5-43d8-a662-344f0b13e975" ], "Cache-Control": [ "no-cache" @@ -5208,23 +4704,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14788" + "14925" ], "x-ms-correlation-request-id": [ - "5415bd87-ebae-44ad-a1e9-04e8794d97aa" + "41a1e577-1683-4d9b-8d07-84dad0c93ae6" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T160225Z:5415bd87-ebae-44ad-a1e9-04e8794d97aa" + "NORTHCENTRALUS:20160222T102058Z:41a1e577-1683-4d9b-8d07-84dad0c93ae6" ], "Date": [ - "Tue, 16 Feb 2016 16:02:24 GMT" + "Mon, 22 Feb 2016 10:20:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/resourcegroups/crptestps2691?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczI2OTE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/resourcegroups/crptestps9762?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L3Jlc291cmNlZ3JvdXBzL2NycHRlc3Rwczk3NjI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -5247,16 +4743,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-request-id": [ - "8ba1713f-62ce-4905-9de9-ff0f254517e3" + "ec421a5a-da45-4364-bb01-83f3d07fdc7b" ], "x-ms-correlation-request-id": [ - "8ba1713f-62ce-4905-9de9-ff0f254517e3" + "ec421a5a-da45-4364-bb01-83f3d07fdc7b" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T160226Z:8ba1713f-62ce-4905-9de9-ff0f254517e3" + "NORTHCENTRALUS:20160222T102101Z:ec421a5a-da45-4364-bb01-83f3d07fdc7b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5265,17 +4761,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 16:02:26 GMT" + "Mon, 22 Feb 2016 10:21:00 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NzYyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TmpreExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NzYyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk01TnpZeUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5301,16 +4797,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14342" + "14962" ], "x-ms-request-id": [ - "220d04e9-62e1-4558-ae4e-1dbebe17f0a9" + "ee713a01-878f-43ed-a349-6c2847222816" ], "x-ms-correlation-request-id": [ - "220d04e9-62e1-4558-ae4e-1dbebe17f0a9" + "ee713a01-878f-43ed-a349-6c2847222816" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T160227Z:220d04e9-62e1-4558-ae4e-1dbebe17f0a9" + "NORTHCENTRALUS:20160222T102101Z:ee713a01-878f-43ed-a349-6c2847222816" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5319,17 +4815,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 16:02:26 GMT" + "Mon, 22 Feb 2016 10:21:00 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NzYyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TmpreExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NzYyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk01TnpZeUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5355,16 +4851,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14341" + "14960" ], "x-ms-request-id": [ - "415380a7-a2fe-4cd4-b594-bcaadf0468f5" + "0b0658ad-b357-44d4-ab2d-fe7c92e501db" ], "x-ms-correlation-request-id": [ - "415380a7-a2fe-4cd4-b594-bcaadf0468f5" + "0b0658ad-b357-44d4-ab2d-fe7c92e501db" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T160242Z:415380a7-a2fe-4cd4-b594-bcaadf0468f5" + "NORTHCENTRALUS:20160222T102116Z:0b0658ad-b357-44d4-ab2d-fe7c92e501db" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5373,17 +4869,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 16:02:42 GMT" + "Mon, 22 Feb 2016 10:21:16 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NzYyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TmpreExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NzYyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk01TnpZeUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5409,16 +4905,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14340" + "14958" ], "x-ms-request-id": [ - "7cacd6e5-b830-47a5-8d04-22992025a670" + "4af238af-6872-4fd0-99e0-0308ef156f7b" ], "x-ms-correlation-request-id": [ - "7cacd6e5-b830-47a5-8d04-22992025a670" + "4af238af-6872-4fd0-99e0-0308ef156f7b" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T160257Z:7cacd6e5-b830-47a5-8d04-22992025a670" + "NORTHCENTRALUS:20160222T102131Z:4af238af-6872-4fd0-99e0-0308ef156f7b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5427,17 +4923,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 16:02:57 GMT" + "Mon, 22 Feb 2016 10:21:30 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NzYyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TmpreExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NzYyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk01TnpZeUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5463,16 +4959,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14339" + "14957" ], "x-ms-request-id": [ - "28cec8b5-6f9c-43fd-94bb-74d217fadd8d" + "199f721b-f610-4eb6-8101-e2c2ba26aaaf" ], "x-ms-correlation-request-id": [ - "28cec8b5-6f9c-43fd-94bb-74d217fadd8d" + "199f721b-f610-4eb6-8101-e2c2ba26aaaf" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T160312Z:28cec8b5-6f9c-43fd-94bb-74d217fadd8d" + "NORTHCENTRALUS:20160222T102146Z:199f721b-f610-4eb6-8101-e2c2ba26aaaf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5481,17 +4977,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 16:03:11 GMT" + "Mon, 22 Feb 2016 10:21:46 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NzYyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TmpreExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NzYyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk01TnpZeUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5517,16 +5013,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14336" + "14955" ], "x-ms-request-id": [ - "1ed5179a-4841-4a0a-9300-5032b93f5616" + "38f8b48a-5de6-436b-9f73-0dbf25770e5a" ], "x-ms-correlation-request-id": [ - "1ed5179a-4841-4a0a-9300-5032b93f5616" + "38f8b48a-5de6-436b-9f73-0dbf25770e5a" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T160327Z:1ed5179a-4841-4a0a-9300-5032b93f5616" + "NORTHCENTRALUS:20160222T102202Z:38f8b48a-5de6-436b-9f73-0dbf25770e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5535,17 +5031,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 16:03:27 GMT" + "Mon, 22 Feb 2016 10:22:01 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NzYyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TmpreExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NzYyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk01TnpZeUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5571,16 +5067,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14335" + "14954" ], "x-ms-request-id": [ - "733edec3-cc04-42d0-ab09-140e07b6d886" + "36b5d161-b9cc-41fe-9855-e2fc11eb370b" ], "x-ms-correlation-request-id": [ - "733edec3-cc04-42d0-ab09-140e07b6d886" + "36b5d161-b9cc-41fe-9855-e2fc11eb370b" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T160342Z:733edec3-cc04-42d0-ab09-140e07b6d886" + "NORTHCENTRALUS:20160222T102217Z:36b5d161-b9cc-41fe-9855-e2fc11eb370b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5589,17 +5085,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 16:03:42 GMT" + "Mon, 22 Feb 2016 10:22:17 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NzYyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TmpreExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NzYyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk01TnpZeUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5625,16 +5121,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14334" + "14953" ], "x-ms-request-id": [ - "a9dbcd10-450e-45c8-ad78-49d0b384a0d8" + "7d594a2e-5399-4346-8e5e-1e8392fd3fb4" ], "x-ms-correlation-request-id": [ - "a9dbcd10-450e-45c8-ad78-49d0b384a0d8" + "7d594a2e-5399-4346-8e5e-1e8392fd3fb4" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T160358Z:a9dbcd10-450e-45c8-ad78-49d0b384a0d8" + "NORTHCENTRALUS:20160222T102232Z:7d594a2e-5399-4346-8e5e-1e8392fd3fb4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5643,17 +5139,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 16:03:57 GMT" + "Mon, 22 Feb 2016 10:22:32 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NzYyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TmpreExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NzYyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk01TnpZeUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5679,16 +5175,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14333" + "14952" ], "x-ms-request-id": [ - "667b40d1-81cd-4509-abd3-a2226168bd76" + "8a2a3d8c-b560-4eb4-b00a-8842d3935a8b" ], "x-ms-correlation-request-id": [ - "667b40d1-81cd-4509-abd3-a2226168bd76" + "8a2a3d8c-b560-4eb4-b00a-8842d3935a8b" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T160413Z:667b40d1-81cd-4509-abd3-a2226168bd76" + "NORTHCENTRALUS:20160222T102247Z:8a2a3d8c-b560-4eb4-b00a-8842d3935a8b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5697,17 +5193,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 16:04:12 GMT" + "Mon, 22 Feb 2016 10:22:47 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NzYyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TmpreExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NzYyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk01TnpZeUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5733,16 +5229,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14331" + "14951" ], "x-ms-request-id": [ - "9f3b1ae8-bb87-4402-997b-ef9c4ce47b81" + "dc6f153a-0147-4b3f-8773-60c0d9b4245e" ], "x-ms-correlation-request-id": [ - "9f3b1ae8-bb87-4402-997b-ef9c4ce47b81" + "dc6f153a-0147-4b3f-8773-60c0d9b4245e" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T160428Z:9f3b1ae8-bb87-4402-997b-ef9c4ce47b81" + "NORTHCENTRALUS:20160222T102302Z:dc6f153a-0147-4b3f-8773-60c0d9b4245e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5751,17 +5247,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 16:04:28 GMT" + "Mon, 22 Feb 2016 10:23:02 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NzYyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TmpreExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NzYyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk01TnpZeUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5787,16 +5283,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14330" + "14950" ], "x-ms-request-id": [ - "0a00a8aa-029f-4496-bb1e-c19d696a5188" + "79c1e9f7-5b4a-4c0e-b5ec-fcc1e1735049" ], "x-ms-correlation-request-id": [ - "0a00a8aa-029f-4496-bb1e-c19d696a5188" + "79c1e9f7-5b4a-4c0e-b5ec-fcc1e1735049" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T160443Z:0a00a8aa-029f-4496-bb1e-c19d696a5188" + "NORTHCENTRALUS:20160222T102317Z:79c1e9f7-5b4a-4c0e-b5ec-fcc1e1735049" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5805,17 +5301,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 16:04:43 GMT" + "Mon, 22 Feb 2016 10:23:17 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NzYyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TmpreExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NzYyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk01TnpZeUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5841,16 +5337,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14329" + "14949" ], "x-ms-request-id": [ - "b343a739-09b0-4725-ac12-7d8edbc69c93" + "29eae6f9-eb86-4aaf-b796-436ceb31403c" ], "x-ms-correlation-request-id": [ - "b343a739-09b0-4725-ac12-7d8edbc69c93" + "29eae6f9-eb86-4aaf-b796-436ceb31403c" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T160458Z:b343a739-09b0-4725-ac12-7d8edbc69c93" + "NORTHCENTRALUS:20160222T102333Z:29eae6f9-eb86-4aaf-b796-436ceb31403c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5859,17 +5355,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 16:04:58 GMT" + "Mon, 22 Feb 2016 10:23:32 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NzYyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TmpreExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NzYyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk01TnpZeUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5895,16 +5391,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14355" + "14948" ], "x-ms-request-id": [ - "94060fb5-5652-45de-82c0-d2f4d8f5dbaa" + "ac5d1009-de43-4695-9b7d-5f292c9b4ccf" ], "x-ms-correlation-request-id": [ - "94060fb5-5652-45de-82c0-d2f4d8f5dbaa" + "ac5d1009-de43-4695-9b7d-5f292c9b4ccf" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T160513Z:94060fb5-5652-45de-82c0-d2f4d8f5dbaa" + "NORTHCENTRALUS:20160222T102348Z:ac5d1009-de43-4695-9b7d-5f292c9b4ccf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5913,17 +5409,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 16:05:13 GMT" + "Mon, 22 Feb 2016 10:23:48 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NzYyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TmpreExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NzYyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk01TnpZeUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5949,16 +5445,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14354" + "14947" ], "x-ms-request-id": [ - "55db9497-cce4-49f2-ad80-f63f433cb9c5" + "9de7f7d5-59c7-4812-9569-bdf5403ec089" ], "x-ms-correlation-request-id": [ - "55db9497-cce4-49f2-ad80-f63f433cb9c5" + "9de7f7d5-59c7-4812-9569-bdf5403ec089" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T160529Z:55db9497-cce4-49f2-ad80-f63f433cb9c5" + "NORTHCENTRALUS:20160222T102403Z:9de7f7d5-59c7-4812-9569-bdf5403ec089" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5967,17 +5463,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 16:05:28 GMT" + "Mon, 22 Feb 2016 10:24:02 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NzYyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TmpreExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NzYyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk01TnpZeUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6003,16 +5499,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14353" + "14945" ], "x-ms-request-id": [ - "3fdd7793-5764-4ed3-986f-727bd5a30332" + "dfa309c8-7874-4475-ad9a-c5ea8140e683" ], "x-ms-correlation-request-id": [ - "3fdd7793-5764-4ed3-986f-727bd5a30332" + "dfa309c8-7874-4475-ad9a-c5ea8140e683" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T160544Z:3fdd7793-5764-4ed3-986f-727bd5a30332" + "NORTHCENTRALUS:20160222T102418Z:dfa309c8-7874-4475-ad9a-c5ea8140e683" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6021,17 +5517,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 16:05:44 GMT" + "Mon, 22 Feb 2016 10:24:18 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NzYyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TmpreExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NzYyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk01TnpZeUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6057,16 +5553,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14352" + "14943" ], "x-ms-request-id": [ - "b6295439-3712-4645-8475-dc0b7f7497b4" + "e4a7f6ee-cf61-4019-95e0-6605944e7a01" ], "x-ms-correlation-request-id": [ - "b6295439-3712-4645-8475-dc0b7f7497b4" + "e4a7f6ee-cf61-4019-95e0-6605944e7a01" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T160559Z:b6295439-3712-4645-8475-dc0b7f7497b4" + "NORTHCENTRALUS:20160222T102433Z:e4a7f6ee-cf61-4019-95e0-6605944e7a01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6075,17 +5571,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 16:05:59 GMT" + "Mon, 22 Feb 2016 10:24:33 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NzYyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TmpreExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NzYyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk01TnpZeUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6111,16 +5607,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14351" + "14942" ], "x-ms-request-id": [ - "725ceac7-9c22-4f8e-8c6e-2d85c671448d" + "6b1be12f-ba38-429a-a854-97bad921a8ab" ], "x-ms-correlation-request-id": [ - "725ceac7-9c22-4f8e-8c6e-2d85c671448d" + "6b1be12f-ba38-429a-a854-97bad921a8ab" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T160614Z:725ceac7-9c22-4f8e-8c6e-2d85c671448d" + "NORTHCENTRALUS:20160222T102449Z:6b1be12f-ba38-429a-a854-97bad921a8ab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6129,17 +5625,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 16:06:14 GMT" + "Mon, 22 Feb 2016 10:24:49 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NzYyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TmpreExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NzYyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk01TnpZeUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6165,16 +5661,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14350" + "14941" ], "x-ms-request-id": [ - "ea20127f-5ffd-414a-ae62-110c700f5b8d" + "98b76e1e-3560-42b2-8307-cbfd29f4f4e8" ], "x-ms-correlation-request-id": [ - "ea20127f-5ffd-414a-ae62-110c700f5b8d" + "98b76e1e-3560-42b2-8307-cbfd29f4f4e8" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T160629Z:ea20127f-5ffd-414a-ae62-110c700f5b8d" + "NORTHCENTRALUS:20160222T102504Z:98b76e1e-3560-42b2-8307-cbfd29f4f4e8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6183,17 +5679,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 16:06:29 GMT" + "Mon, 22 Feb 2016 10:25:03 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NzYyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TmpreExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NzYyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk01TnpZeUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6219,16 +5715,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14348" + "14940" ], "x-ms-request-id": [ - "53953f04-7d19-4021-ba9d-c5bd545e0d8b" + "62bcbc81-43e0-4711-bb3f-bc97b1a401b1" ], "x-ms-correlation-request-id": [ - "53953f04-7d19-4021-ba9d-c5bd545e0d8b" + "62bcbc81-43e0-4711-bb3f-bc97b1a401b1" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T160644Z:53953f04-7d19-4021-ba9d-c5bd545e0d8b" + "NORTHCENTRALUS:20160222T102519Z:62bcbc81-43e0-4711-bb3f-bc97b1a401b1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6237,17 +5733,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 16:06:43 GMT" + "Mon, 22 Feb 2016 10:25:19 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NzYyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TmpreExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NzYyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk01TnpZeUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6273,16 +5769,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14347" + "14939" ], "x-ms-request-id": [ - "1edd61c6-87e4-49dc-9764-69c2075e7f85" + "0236b484-fa78-41e2-86f6-bb478a314bfa" ], "x-ms-correlation-request-id": [ - "1edd61c6-87e4-49dc-9764-69c2075e7f85" + "0236b484-fa78-41e2-86f6-bb478a314bfa" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T160700Z:1edd61c6-87e4-49dc-9764-69c2075e7f85" + "NORTHCENTRALUS:20160222T102534Z:0236b484-fa78-41e2-86f6-bb478a314bfa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6291,17 +5787,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 16:06:59 GMT" + "Mon, 22 Feb 2016 10:25:34 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NzYyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TmpreExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NzYyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk01TnpZeUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6327,16 +5823,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14346" + "14938" ], "x-ms-request-id": [ - "6a9cab04-6343-4eef-9516-854d3f5420a9" + "f70796b7-72df-463d-a3a9-4f0cfce01a9a" ], "x-ms-correlation-request-id": [ - "6a9cab04-6343-4eef-9516-854d3f5420a9" + "f70796b7-72df-463d-a3a9-4f0cfce01a9a" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T160715Z:6a9cab04-6343-4eef-9516-854d3f5420a9" + "NORTHCENTRALUS:20160222T102549Z:f70796b7-72df-463d-a3a9-4f0cfce01a9a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6345,17 +5841,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 16:07:14 GMT" + "Mon, 22 Feb 2016 10:25:49 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NzYyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TmpreExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NzYyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk01TnpZeUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6381,16 +5877,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14345" + "14935" ], "x-ms-request-id": [ - "7e57d6be-e424-41af-a2be-946336a43ea1" + "7b0b8bca-863f-49c3-b461-5160576b13eb" ], "x-ms-correlation-request-id": [ - "7e57d6be-e424-41af-a2be-946336a43ea1" + "7b0b8bca-863f-49c3-b461-5160576b13eb" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T160730Z:7e57d6be-e424-41af-a2be-946336a43ea1" + "NORTHCENTRALUS:20160222T102604Z:7b0b8bca-863f-49c3-b461-5160576b13eb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6399,17 +5895,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 16:07:29 GMT" + "Mon, 22 Feb 2016 10:26:04 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NzYyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TmpreExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NzYyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk01TnpZeUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6435,16 +5931,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14344" + "14934" ], "x-ms-request-id": [ - "ceaef857-1bbe-438d-b96f-98f8ed611ebd" + "4eb06b74-3c8f-4105-b835-226f434da8cd" ], "x-ms-correlation-request-id": [ - "ceaef857-1bbe-438d-b96f-98f8ed611ebd" + "4eb06b74-3c8f-4105-b835-226f434da8cd" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T160745Z:ceaef857-1bbe-438d-b96f-98f8ed611ebd" + "NORTHCENTRALUS:20160222T102620Z:4eb06b74-3c8f-4105-b835-226f434da8cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6453,17 +5949,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 16:07:45 GMT" + "Mon, 22 Feb 2016 10:26:19 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NzYyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TmpreExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NzYyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk01TnpZeUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6489,16 +5985,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14343" + "14933" ], "x-ms-request-id": [ - "9d0a53c5-8270-4b51-b584-4fc104a5921c" + "455d443e-2cef-4919-8ae6-af8321af55e5" ], "x-ms-correlation-request-id": [ - "9d0a53c5-8270-4b51-b584-4fc104a5921c" + "455d443e-2cef-4919-8ae6-af8321af55e5" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T160801Z:9d0a53c5-8270-4b51-b584-4fc104a5921c" + "NORTHCENTRALUS:20160222T102635Z:455d443e-2cef-4919-8ae6-af8321af55e5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6507,17 +6003,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 16:08:01 GMT" + "Mon, 22 Feb 2016 10:26:35 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NzYyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TmpreExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NzYyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk01TnpZeUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6543,16 +6039,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14342" + "14932" ], "x-ms-request-id": [ - "35c8c2b0-58b2-454c-8c9f-7f85c6f41549" + "869130f1-7a26-41db-8c54-cfc20e6d4e03" ], "x-ms-correlation-request-id": [ - "35c8c2b0-58b2-454c-8c9f-7f85c6f41549" + "869130f1-7a26-41db-8c54-cfc20e6d4e03" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T160816Z:35c8c2b0-58b2-454c-8c9f-7f85c6f41549" + "NORTHCENTRALUS:20160222T102650Z:869130f1-7a26-41db-8c54-cfc20e6d4e03" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6561,17 +6057,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 16:08:15 GMT" + "Mon, 22 Feb 2016 10:26:49 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NzYyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TmpreExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NzYyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk01TnpZeUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6597,16 +6093,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14341" + "14931" ], "x-ms-request-id": [ - "66ab078f-670a-45bb-8355-758fa6bc6b91" + "d1865ab8-f8fc-4064-8d66-813fe216c045" ], "x-ms-correlation-request-id": [ - "66ab078f-670a-45bb-8355-758fa6bc6b91" + "d1865ab8-f8fc-4064-8d66-813fe216c045" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T160831Z:66ab078f-670a-45bb-8355-758fa6bc6b91" + "NORTHCENTRALUS:20160222T102705Z:d1865ab8-f8fc-4064-8d66-813fe216c045" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6615,17 +6111,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 16:08:31 GMT" + "Mon, 22 Feb 2016 10:27:04 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NzYyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TmpreExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NzYyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk01TnpZeUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6651,16 +6147,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14339" + "14929" ], "x-ms-request-id": [ - "07c77dd5-d1d1-4cb8-b0e5-aaeabce846e2" + "8c7399fc-2ca0-4eae-91f1-d10fdcfe9192" ], "x-ms-correlation-request-id": [ - "07c77dd5-d1d1-4cb8-b0e5-aaeabce846e2" + "8c7399fc-2ca0-4eae-91f1-d10fdcfe9192" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T160846Z:07c77dd5-d1d1-4cb8-b0e5-aaeabce846e2" + "NORTHCENTRALUS:20160222T102720Z:8c7399fc-2ca0-4eae-91f1-d10fdcfe9192" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6669,17 +6165,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 16:08:46 GMT" + "Mon, 22 Feb 2016 10:27:20 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NzYyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/acf8322c-ac5c-4cbd-8907-5f5920784774/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjkxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TmpreExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e663cc2d-722b-4be1-b636-bbd9e4c60fd9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NzYyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY2M2NjMmQtNzIyYi00YmUxLWI2MzYtYmJkOWU0YzYwZmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk01TnpZeUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6702,16 +6198,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14337" + "14927" ], "x-ms-request-id": [ - "efeb2fea-db20-4438-9d1a-504dd6b8102e" + "2d26a2d1-a107-4665-85f2-36ec00b71d20" ], "x-ms-correlation-request-id": [ - "efeb2fea-db20-4438-9d1a-504dd6b8102e" + "2d26a2d1-a107-4665-85f2-36ec00b71d20" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20160216T160901Z:efeb2fea-db20-4438-9d1a-504dd6b8102e" + "NORTHCENTRALUS:20160222T102735Z:2d26a2d1-a107-4665-85f2-36ec00b71d20" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6720,7 +6216,7 @@ "no-cache" ], "Date": [ - "Tue, 16 Feb 2016 16:09:01 GMT" + "Mon, 22 Feb 2016 10:27:35 GMT" ] }, "StatusCode": 200 @@ -6728,10 +6224,10 @@ ], "Names": { "Test-AEMExtensionBasicWindows": [ - "crptestps2691" + "crptestps9762" ] }, "Variables": { - "SubscriptionId": "acf8322c-ac5c-4cbd-8907-5f5920784774" + "SubscriptionId": "e663cc2d-722b-4be1-b636-bbd9e4c60fd9" } } \ No newline at end of file diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/AEMHelper.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/AEMHelper.cs index 7ab3c1213052..cfbae3f33d7f 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/AEMHelper.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/AEMHelper.cs @@ -146,41 +146,49 @@ internal AzureSLA GetVMSLA(VirtualMachine virtualMachine) switch (virtualMachine.HardwareProfile.VmSize) { case "Standard_DS1": + case "Standard_DS1_v2": result.HasSLA = true; result.IOPS = "3200"; result.TP = "32"; break; case "Standard_DS2": + case "Standard_DS2_v2": result.HasSLA = true; result.IOPS = "6400"; result.TP = "64"; break; case "Standard_DS3": + case "Standard_DS3_v2": result.HasSLA = true; result.IOPS = "12800"; result.TP = "128"; break; case "Standard_DS4": + case "Standard_DS4_v2": result.HasSLA = true; result.IOPS = "25600"; result.TP = "256"; break; case "Standard_DS11": + case "Standard_DS11_v2": result.HasSLA = true; result.IOPS = "6400"; result.TP = "64"; break; case "Standard_DS12": + case "Standard_DS12_v2": result.HasSLA = true; result.IOPS = "12800"; result.TP = "128"; break; case "Standard_DS13": + case "Standard_DS13_v2": result.HasSLA = true; result.IOPS = "25600"; result.TP = "256"; break; case "Standard_DS14": + case "Standard_DS14_v2": result.HasSLA = true; result.IOPS = "50000"; result.TP = "512"; diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/SetAzureRmVMAEMExtension.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/SetAzureRmVMAEMExtension.cs index 699fc71f536e..b91b37cfb68e 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/SetAzureRmVMAEMExtension.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/SetAzureRmVMAEMExtension.cs @@ -85,6 +85,13 @@ public class SetAzureRmVMAEMExtension : VirtualMachineExtensionBaseCmdlet HelpMessage = "Operating System Type of the virtual machines. Possible values: Windows | Linux")] public string OSType { get; set; } + [Parameter( + Mandatory = false, + Position = 5, + ValueFromPipelineByPropertyName = false, + HelpMessage = "Disables the settings for table content")] + public SwitchParameter SkipStorage { get; set; } + public SetAzureRmVMAEMExtension() { } @@ -244,22 +251,24 @@ public override void ExecuteCmdlet() if (!this._Helper.IsPremiumStorageAccount(storage)) { - var currentConfig = this._Helper.GetStorageAnalytics(storage.Name); - - if (!this._Helper.CheckStorageAnalytics(storage.Name, currentConfig)) + if (!this.SkipStorage.IsPresent) { - this._Helper.WriteHost("[INFO] Enabling Storage Account Metrics for storage account {0}", storage.Name); + var currentConfig = this._Helper.GetStorageAnalytics(storage.Name); + + if (!this._Helper.CheckStorageAnalytics(storage.Name, currentConfig)) + { + this._Helper.WriteHost("[INFO] Enabling Storage Account Metrics for storage account {0}", storage.Name); - // Enable analytics on storage accounts - this.SetStorageAnalytics(storage.Name); + // Enable analytics on storage accounts + this.SetStorageAnalytics(storage.Name); + } } var endpoint = this._Helper.GetAzureSAPTableEndpoint(storage); var hourUri = endpoint + "$MetricsHourPrimaryTransactionsBlob"; var minuteUri = endpoint + "$MetricsMinutePrimaryTransactionsBlob"; - this._Helper.WriteHost("[INFO] Adding Storage Account Metric information for storage account {0}", storage.Name); sapmonPrivateConfig.Add(new KeyValuePair() { Key = ((storage.Name) + ".hour.key"), Value = account.Value }); diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/TestAzureRmVMAEMExtension.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/TestAzureRmVMAEMExtension.cs index 83333b18db2e..cb4fe11bc5e7 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/TestAzureRmVMAEMExtension.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/TestAzureRmVMAEMExtension.cs @@ -63,7 +63,7 @@ public class TestAzureRmVMAEMExtension : VirtualMachineExtensionBaseCmdlet Position = 4, ValueFromPipelineByPropertyName = false, HelpMessage = "Disables the test for table content")] - public SwitchParameter SkipTableContentCheck { get; set; } + public SwitchParameter SkipStorageCheck { get; set; } public TestAzureRmVMAEMExtension() { @@ -189,61 +189,63 @@ public override void ExecuteCmdlet() this._Helper.WriteHost("Storage Metrics check..."); var metricsResult = new AEMTestResult("Storage Metrics check"); rootResult.PartialResults.Add(metricsResult); - - foreach (var account in accounts) + if (!this.SkipStorageCheck.IsPresent) { - var accountResult = new AEMTestResult("Storage Metrics check for {0}", account); - metricsResult.PartialResults.Add(accountResult); - - this._Helper.WriteHost("\tStorage Metrics check for {0}...", account); - var storage = this._Helper.GetStorageAccountFromCache(account); - - if (!this._Helper.IsPremiumStorageAccount(storage)) + foreach (var account in accounts) { - this._Helper.WriteHost("\t\tStorage Metrics configuration check for {0}...", false, account); - var currentConfig = this._Helper.GetStorageAnalytics(account); + var accountResult = new AEMTestResult("Storage Metrics check for {0}", account); + metricsResult.PartialResults.Add(accountResult); - bool storageConfigOk = false; - if (!this._Helper.CheckStorageAnalytics(account, currentConfig)) - { - accountResult.PartialResults.Add(new AEMTestResult("Storage Metrics configuration check for {0}", false, account)); - this._Helper.WriteHost("NOT OK ", ConsoleColor.Red); + this._Helper.WriteHost("\tStorage Metrics check for {0}...", account); + var storage = this._Helper.GetStorageAccountFromCache(account); - } - else + if (!this._Helper.IsPremiumStorageAccount(storage)) { - accountResult.PartialResults.Add(new AEMTestResult("Storage Metrics configuration check for {0}", true, account)); - this._Helper.WriteHost("OK ", ConsoleColor.Green); - storageConfigOk = true; - } + this._Helper.WriteHost("\t\tStorage Metrics configuration check for {0}...", false, account); + var currentConfig = this._Helper.GetStorageAnalytics(account); - this._Helper.WriteHost("\t\tStorage Metrics data check for {0}...", false, account); - var filterMinute = Microsoft.WindowsAzure.Storage.Table.TableQuery. - GenerateFilterConditionForDate("Timestamp", "gt", DateTime.Now.AddMinutes(AEMExtensionConstants.ContentAgeInMinutes * -1)); + bool storageConfigOk = false; + if (!this._Helper.CheckStorageAnalytics(account, currentConfig)) + { + accountResult.PartialResults.Add(new AEMTestResult("Storage Metrics configuration check for {0}", false, account)); + this._Helper.WriteHost("NOT OK ", ConsoleColor.Red); - if (!this.SkipTableContentCheck.IsPresent && storageConfigOk && this._Helper.CheckTableAndContent(account, "$MetricsMinutePrimaryTransactionsBlob", filterMinute, ".", false, this.WaitTimeInMinutes)) + } + else + { + accountResult.PartialResults.Add(new AEMTestResult("Storage Metrics configuration check for {0}", true, account)); + this._Helper.WriteHost("OK ", ConsoleColor.Green); + storageConfigOk = true; + } - { - this._Helper.WriteHost("OK ", ConsoleColor.Green); - accountResult.PartialResults.Add(new AEMTestResult("Storage Metrics data check for {0}", true, account)); - } - else if (!this.SkipTableContentCheck.IsPresent) - { - accountResult.PartialResults.Add(new AEMTestResult("Storage Metrics data check for {0}", false, account)); - this._Helper.WriteHost("NOT OK ", ConsoleColor.Red); + this._Helper.WriteHost("\t\tStorage Metrics data check for {0}...", false, account); + var filterMinute = Microsoft.WindowsAzure.Storage.Table.TableQuery. + GenerateFilterConditionForDate("Timestamp", "gt", DateTime.Now.AddMinutes(AEMExtensionConstants.ContentAgeInMinutes * -1)); + + if (storageConfigOk && this._Helper.CheckTableAndContent(account, "$MetricsMinutePrimaryTransactionsBlob", filterMinute, ".", false, this.WaitTimeInMinutes)) + + { + this._Helper.WriteHost("OK ", ConsoleColor.Green); + accountResult.PartialResults.Add(new AEMTestResult("Storage Metrics data check for {0}", true, account)); + } + else + { + accountResult.PartialResults.Add(new AEMTestResult("Storage Metrics data check for {0}", false, account)); + this._Helper.WriteHost("NOT OK ", ConsoleColor.Red); + } } else { - this._Helper.WriteHost("Skipped ", ConsoleColor.Yellow); + accountResult.PartialResults.Add(new AEMTestResult("Storage Metrics not available for Premium Storage account {0}", true, account)); + this._Helper.WriteHost("\t\tStorage Metrics not available for Premium Storage account {0}...", false, account); + this._Helper.WriteHost("OK ", ConsoleColor.Green); } } - else - { - accountResult.PartialResults.Add(new AEMTestResult("Storage Metrics not available for Premium Storage account {0}", true, account)); - this._Helper.WriteHost("\t\tStorage Metrics not available for Premium Storage account {0}...", false, account); - this._Helper.WriteHost("OK ", ConsoleColor.Green); - - } + } + else + { + metricsResult.Result = true; + this._Helper.WriteHost("Skipped ", ConsoleColor.Yellow); } //################################################# //################################################# @@ -448,7 +450,7 @@ public override void ExecuteCmdlet() var ok = false; - if (!this.SkipTableContentCheck.IsPresent && (!String.IsNullOrEmpty(deploymentId)) && (!String.IsNullOrEmpty(roleName)) && (!String.IsNullOrEmpty(wadstorage))) + if (!this.SkipStorageCheck.IsPresent && (!String.IsNullOrEmpty(deploymentId)) && (!String.IsNullOrEmpty(roleName)) && (!String.IsNullOrEmpty(wadstorage))) { if (this.OSType.Equals(AEMExtensionConstants.OSTypeLinux, StringComparison.InvariantCultureIgnoreCase)) @@ -467,12 +469,12 @@ public override void ExecuteCmdlet() } - if (ok && !this.SkipTableContentCheck.IsPresent) + if (ok && !this.SkipStorageCheck.IsPresent) { wadConfigResult.PartialResults.Add(new AEMTestResult("IaaSDiagnostics data check", true)); this._Helper.WriteHost("OK ", ConsoleColor.Green); } - else if (!this.SkipTableContentCheck.IsPresent) + else if (!this.SkipStorageCheck.IsPresent) { wadConfigResult.PartialResults.Add(new AEMTestResult("IaaSDiagnostics data check", false)); this._Helper.WriteHost("NOT OK ", ConsoleColor.Red); From 2ebf33d298a4e1b483ca5305c8364c6f245d72b7 Mon Sep 17 00:00:00 2001 From: sedusch Date: Tue, 23 Feb 2016 10:19:21 +0100 Subject: [PATCH 6/7] fix issues found in code review --- .../ScenarioTests/AEMExtensionTests.ps1 | 280 +++++++++--------- .../Extension/AEM/AEMExtensionConstants.cs | 13 - .../Extension/AEM/AEMHelper.cs | 61 +--- .../AEM/RemoveAzureRmVMAEMExtension.cs | 18 +- .../Extension/AEM/SetAzureRmVMAEMExtension.cs | 35 +-- 5 files changed, 153 insertions(+), 254 deletions(-) diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/AEMExtensionTests.ps1 b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/AEMExtensionTests.ps1 index 40dbd07b97b6..6ebbb5d7e275 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/AEMExtensionTests.ps1 +++ b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/AEMExtensionTests.ps1 @@ -28,30 +28,30 @@ function Test-AEMExtensionBasicWindows $vm = Create-AdvancedVM -rgname $rgname -loc $loc $vmname = $vm.Name - # Get with not extension - $extension = Get-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname - Assert-Null $extension - # Test with not extension - $testResult = Test-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname -SkipStorageCheck - Assert-False { $testResult.Result } - - # Set and Get command. - Set-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname -SkipStorage + # Get with not extension + $extension = Get-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname + Assert-Null $extension + # Test with not extension + $testResult = Test-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname -SkipStorageCheck + Assert-False { $testResult.Result } + + # Set and Get command. + Set-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname -SkipStorage $extension = Get-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname - Assert-NotNull $extension + Assert-NotNull $extension Assert-AreEqual $extension.Publisher 'Microsoft.AzureCAT.AzureEnhancedMonitoring' Assert-AreEqual $extension.ExtensionType 'AzureCATExtensionHandler' Assert-AreEqual $extension.Name 'AzureCATExtensionHandler' $settings = $extension.PublicSettings | ConvertFrom-Json Assert-NotNull $settings.cfg - # Test command. - $testResult = Test-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname -WaitTimeInMinutes 50 -SkipStorageCheck - Assert-True { $testResult.Result } - Assert-True { ($testResult.PartialResults.Count -gt 0) } + # Test command. + $testResult = Test-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname -WaitTimeInMinutes 50 -SkipStorageCheck + Assert-True { $testResult.Result } + Assert-True { ($testResult.PartialResults.Count -gt 0) } - # Remove command. + # Remove command. Remove-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname $extension = Get-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname Assert-Null $extension @@ -70,58 +70,58 @@ function Test-AEMExtensionAdvancedWindows try { - Write-Verbose "Start the test Test-AEMExtensionAdvancedWindows" + Write-Verbose "Start the test Test-AEMExtensionAdvancedWindows" # Setup $vm = Create-AdvancedVM -rgname $rgname -loc $loc -vmsize 'Standard_DS2' -stotype 'Premium_LRS' -nicCount 2 $vmname = $vm.Name - Write-Verbose "Test-AEMExtensionAdvancedWindows: VM created" - - # Get with not extension - Write-Verbose "Test-AEMExtensionAdvancedWindows: Get with no extension" - $extension = Get-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname - Assert-Null $extension - - # Test with not extension - Write-Verbose "Test-AEMExtensionAdvancedWindows: Test with no extension" - $res = Test-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname -SkipStorageCheck - Assert-False { $res.Result } - Write-Verbose "Test-AEMExtensionAdvancedWindows: Test done" - - $stoname = 'sto' + $rgname + "2"; - New-AzureRmStorageAccount -ResourceGroupName $rgname -Name $stoname -Location $loc -Type 'Standard_LRS'; - - # Set and Get command. - Write-Verbose "Test-AEMExtensionAdvancedWindows: Set with no extension" - Set-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname -WADStorageAccountName $stoname -SkipStorage - Write-Verbose "Test-AEMExtensionAdvancedWindows: Set done" - Write-Verbose "Test-AEMExtensionAdvancedWindows: Get with extension" + Write-Verbose "Test-AEMExtensionAdvancedWindows: VM created" + + # Get with not extension + Write-Verbose "Test-AEMExtensionAdvancedWindows: Get with no extension" $extension = Get-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname - + Assert-Null $extension + + # Test with not extension + Write-Verbose "Test-AEMExtensionAdvancedWindows: Test with no extension" + $res = Test-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname -SkipStorageCheck + Assert-False { $res.Result } + Write-Verbose "Test-AEMExtensionAdvancedWindows: Test done" + + $stoname = 'sto' + $rgname + "2"; + New-AzureRmStorageAccount -ResourceGroupName $rgname -Name $stoname -Location $loc -Type 'Standard_LRS'; - Assert-NotNull $extension + # Set and Get command. + Write-Verbose "Test-AEMExtensionAdvancedWindows: Set with no extension" + Set-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname -WADStorageAccountName $stoname -SkipStorage + Write-Verbose "Test-AEMExtensionAdvancedWindows: Set done" + Write-Verbose "Test-AEMExtensionAdvancedWindows: Get with extension" + $extension = Get-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname + + + Assert-NotNull $extension Assert-AreEqual $extension.Publisher 'Microsoft.AzureCAT.AzureEnhancedMonitoring' Assert-AreEqual $extension.ExtensionType 'AzureCATExtensionHandler' Assert-AreEqual $extension.Name 'AzureCATExtensionHandler' $settings = $extension.PublicSettings | ConvertFrom-Json Assert-NotNull $settings.cfg - Write-Verbose "Test-AEMExtensionAdvancedWindows: Get done" + Write-Verbose "Test-AEMExtensionAdvancedWindows: Get done" - # Test command. - Write-Verbose "Test-AEMExtensionAdvancedWindows: Test with extension" - $res = Test-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname -SkipStorageCheck - Assert-True { $res.Result } - Assert-True { ($res.PartialResults.Count -gt 0) } - Write-Verbose "Test-AEMExtensionAdvancedWindows: Test done" + # Test command. + Write-Verbose "Test-AEMExtensionAdvancedWindows: Test with extension" + $res = Test-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname -SkipStorageCheck + Assert-True { $res.Result } + Assert-True { ($res.PartialResults.Count -gt 0) } + Write-Verbose "Test-AEMExtensionAdvancedWindows: Test done" - # Remove command. - Write-Verbose "Test-AEMExtensionAdvancedWindows: Remove with extension" + # Remove command. + Write-Verbose "Test-AEMExtensionAdvancedWindows: Remove with extension" Remove-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname - Write-Verbose "Test-AEMExtensionAdvancedWindows: Remove done" + Write-Verbose "Test-AEMExtensionAdvancedWindows: Remove done" - Write-Verbose "Test-AEMExtensionAdvancedWindows: Get after remove" + Write-Verbose "Test-AEMExtensionAdvancedWindows: Get after remove" $extension = Get-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname Assert-Null $extension - Write-Verbose "Test-AEMExtensionAdvancedWindows: Get after remove done" + Write-Verbose "Test-AEMExtensionAdvancedWindows: Get after remove done" } finally { @@ -141,30 +141,30 @@ function Test-AEMExtensionBasicLinux $vm = Create-AdvancedVM -rgname $rgname -loc $loc -linux $vmname = $vm.Name - # Get with not extension - $extension = Get-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname - Assert-Null $extension - # Test with not extension - $testResult = Test-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname -SkipStorageCheck - Assert-False { $testResult.Result } + # Get with not extension + $extension = Get-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname + Assert-Null $extension + # Test with not extension + $testResult = Test-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname -SkipStorageCheck + Assert-False { $testResult.Result } - # Set and Get command. - Set-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname -SkipStorage + # Set and Get command. + Set-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname -SkipStorage $extension = Get-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname - Assert-NotNull $extension + Assert-NotNull $extension Assert-AreEqual $extension.Publisher 'Microsoft.OSTCExtensions' Assert-AreEqual $extension.ExtensionType 'AzureEnhancedMonitorForLinux' Assert-AreEqual $extension.Name 'AzureEnhancedMonitorForLinux' $settings = $extension.PublicSettings | ConvertFrom-Json Assert-NotNull $settings.cfg - # Test command. - $testResult = Test-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname -WaitTimeInMinutes 50 -SkipStorageCheck - Assert-True { $testResult.Result } - Assert-True { ($testResult.PartialResults.Count -gt 0) } + # Test command. + $testResult = Test-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname -WaitTimeInMinutes 50 -SkipStorageCheck + Assert-True { $testResult.Result } + Assert-True { ($testResult.PartialResults.Count -gt 0) } - # Remove command. + # Remove command. Remove-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname $extension = Get-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname Assert-Null $extension @@ -183,59 +183,59 @@ function Test-AEMExtensionAdvancedLinux try { - Write-Verbose "Start the test Test-AEMExtensionAdvancedLinux" + Write-Verbose "Start the test Test-AEMExtensionAdvancedLinux" # Setup $vm = Create-AdvancedVM -rgname $rgname -loc $loc -vmsize 'Standard_DS2' -stotype 'Premium_LRS' -nicCount 2 -linux $vmname = $vm.Name - Write-Verbose "Test-AEMExtensionAdvancedLinux: VM created" - - # Get with not extension - Write-Verbose "Test-AEMExtensionAdvancedLinux: Get with no extension" - $extension = Get-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname - Assert-Null $extension - - # Test with not extension - Write-Verbose "Test-AEMExtensionAdvancedLinux: Test with no extension" - $res = Test-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname -SkipStorageCheck - Write-Verbose ("Test-AEMExtensionAdvancedLinux: Test result " + $res.Result) - Assert-False { $res.Result } - Write-Verbose "Test-AEMExtensionAdvancedLinux: Test done" - - $stoname = 'sto' + $rgname + "2"; - New-AzureRmStorageAccount -ResourceGroupName $rgname -Name $stoname -Location $loc -Type 'Standard_LRS'; - - # Set and Get command. - Write-Verbose "Test-AEMExtensionAdvancedLinux: Set with no extension" - Set-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname -WADStorageAccountName $stoname -SkipStorage - Write-Verbose "Test-AEMExtensionAdvancedLinux: Set done" - Write-Verbose "Test-AEMExtensionAdvancedLinux: Get with extension" + Write-Verbose "Test-AEMExtensionAdvancedLinux: VM created" + + # Get with not extension + Write-Verbose "Test-AEMExtensionAdvancedLinux: Get with no extension" $extension = Get-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname - + Assert-Null $extension - Assert-NotNull $extension + # Test with not extension + Write-Verbose "Test-AEMExtensionAdvancedLinux: Test with no extension" + $res = Test-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname -SkipStorageCheck + Write-Verbose ("Test-AEMExtensionAdvancedLinux: Test result " + $res.Result) + Assert-False { $res.Result } + Write-Verbose "Test-AEMExtensionAdvancedLinux: Test done" + + $stoname = 'sto' + $rgname + "2"; + New-AzureRmStorageAccount -ResourceGroupName $rgname -Name $stoname -Location $loc -Type 'Standard_LRS'; + + # Set and Get command. + Write-Verbose "Test-AEMExtensionAdvancedLinux: Set with no extension" + Set-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname -WADStorageAccountName $stoname -SkipStorage + Write-Verbose "Test-AEMExtensionAdvancedLinux: Set done" + Write-Verbose "Test-AEMExtensionAdvancedLinux: Get with extension" + $extension = Get-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname + + + Assert-NotNull $extension Assert-AreEqual $extension.Publisher 'Microsoft.OSTCExtensions' Assert-AreEqual $extension.ExtensionType 'AzureEnhancedMonitorForLinux' Assert-AreEqual $extension.Name 'AzureEnhancedMonitorForLinux' $settings = $extension.PublicSettings | ConvertFrom-Json Assert-NotNull $settings.cfg - Write-Verbose "Test-AEMExtensionAdvancedLinux: Get done" + Write-Verbose "Test-AEMExtensionAdvancedLinux: Get done" - # Test command. - Write-Verbose "Test-AEMExtensionAdvancedLinux: Test with extension" - $res = Test-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname -SkipStorageCheck - Assert-True { $res.Result } - Assert-True { ($res.PartialResults.Count -gt 0) } - Write-Verbose "Test-AEMExtensionAdvancedLinux: Test done" + # Test command. + Write-Verbose "Test-AEMExtensionAdvancedLinux: Test with extension" + $res = Test-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname -SkipStorageCheck + Assert-True { $res.Result } + Assert-True { ($res.PartialResults.Count -gt 0) } + Write-Verbose "Test-AEMExtensionAdvancedLinux: Test done" - # Remove command. - Write-Verbose "Test-AEMExtensionAdvancedLinux: Remove with extension" + # Remove command. + Write-Verbose "Test-AEMExtensionAdvancedLinux: Remove with extension" Remove-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname - Write-Verbose "Test-AEMExtensionAdvancedLinux: Remove done" + Write-Verbose "Test-AEMExtensionAdvancedLinux: Remove done" - Write-Verbose "Test-AEMExtensionAdvancedLinux: Get after remove" + Write-Verbose "Test-AEMExtensionAdvancedLinux: Get after remove" $extension = Get-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname Assert-Null $extension - Write-Verbose "Test-AEMExtensionAdvancedLinux: Get after remove done" + Write-Verbose "Test-AEMExtensionAdvancedLinux: Get after remove done" } finally { @@ -246,13 +246,13 @@ function Test-AEMExtensionAdvancedLinux function Create-AdvancedVM($rgname, $vmname, $loc, $vmsize, $stotype, $nicCount, [Switch] $linux) { - # Initialize parameters + # Initialize parameters $rgname = if ([string]::IsNullOrEmpty($rgname)) { Get-ComputeTestResourceName } else { $rgname } $vmname = if ([string]::IsNullOrEmpty($vmname)) { 'vm' + $rgname } else { $vmname } $loc = if ([string]::IsNullOrEmpty($loc)) { Get-ComputeVMLocation } else { $loc } - $vmsize = if ([string]::IsNullOrEmpty($vmsize)) { 'Standard_A2' } else { $vmsize } - $stotype = if ([string]::IsNullOrEmpty($stotype)) { 'Standard_LRS' } else { $stotype } - $nicCount = if ([string]::IsNullOrEmpty($nicCount)) { 1 } else { [int]$nicCount } + $vmsize = if ([string]::IsNullOrEmpty($vmsize)) { 'Standard_A2' } else { $vmsize } + $stotype = if ([string]::IsNullOrEmpty($stotype)) { 'Standard_LRS' } else { $stotype } + $nicCount = if ([string]::IsNullOrEmpty($nicCount)) { 1 } else { [int]$nicCount } # Common New-AzureRmResourceGroup -Name $rgname -Location $loc -Force; @@ -269,23 +269,23 @@ function Create-AdvancedVM($rgname, $vmname, $loc, $vmsize, $stotype, $nicCount, $pubip = New-AzureRmPublicIpAddress -Force -Name ('pubip' + $rgname) -ResourceGroupName $rgname -Location $loc -AllocationMethod Dynamic -DomainNameLabel ('pubip' + $rgname); $pubip = Get-AzureRmPublicIpAddress -Name ('pubip' + $rgname) -ResourceGroupName $rgname; $pubipId = $pubip.Id; - - $pibparams = @{} - $pibparams.Add("PublicIpAddressId", $pubip.Id) - $nicPrimParams = @{} - $nicPrimParams.Add("Primary", $true) - for ($i = 0;$i -lt $nicCount;$i++) - { - $nic = New-AzureRmNetworkInterface -Force -Name ('nic' + $i + $rgname) -ResourceGroupName $rgname -Location $loc -SubnetId $subnetId @pibparams - $nic = Get-AzureRmNetworkInterface -Name ('nic' + $i + $rgname) -ResourceGroupName $rgname; - $nicId = $nic.Id; - - $p = Add-AzureRmVMNetworkInterface -VM $p -Id $nicId @nicPrimParams; - Assert-AreEqual $p.NetworkProfile.NetworkInterfaces[$i].Id $nicId; - - $pibparams = @{} - $nicPrimParams = @{} - } + + $pibparams = @{} + $pibparams.Add("PublicIpAddressId", $pubip.Id) + $nicPrimParams = @{} + $nicPrimParams.Add("Primary", $true) + for ($i = 0;$i -lt $nicCount;$i++) + { + $nic = New-AzureRmNetworkInterface -Force -Name ('nic' + $i + $rgname) -ResourceGroupName $rgname -Location $loc -SubnetId $subnetId @pibparams + $nic = Get-AzureRmNetworkInterface -Name ('nic' + $i + $rgname) -ResourceGroupName $rgname; + $nicId = $nic.Id; + + $p = Add-AzureRmVMNetworkInterface -VM $p -Id $nicId @nicPrimParams; + Assert-AreEqual $p.NetworkProfile.NetworkInterfaces[$i].Id $nicId; + + $pibparams = @{} + $nicPrimParams = @{} + } Assert-AreEqual $p.NetworkProfile.NetworkInterfaces.Count $nicCount; # Storage Account (SA) @@ -329,28 +329,28 @@ function Create-AdvancedVM($rgname, $vmname, $loc, $vmsize, $stotype, $nicCount, $computerName = 'test'; $vhdContainer = "https://$stoname.blob.core.windows.net/test"; - if ($linux) - { - $p = Set-AzureRmVMOperatingSystem -VM $p -Linux -ComputerName $computerName -Credential $cred; + if ($linux) + { + $p = Set-AzureRmVMOperatingSystem -VM $p -Linux -ComputerName $computerName -Credential $cred; - $imgRef = Get-LinuxImage; - $p = ($imgRef | Set-AzureRmVMSourceImage -VM $p); - } - else - { - $p = Set-AzureRmVMOperatingSystem -VM $p -Windows -ComputerName $computerName -Credential $cred -ProvisionVMAgent; + $imgRef = Get-LinuxImage; + $p = ($imgRef | Set-AzureRmVMSourceImage -VM $p); + } + else + { + $p = Set-AzureRmVMOperatingSystem -VM $p -Windows -ComputerName $computerName -Credential $cred -ProvisionVMAgent; - $imgRef = Get-DefaultCRPWindowsImageOffline; - $p = ($imgRef | Set-AzureRmVMSourceImage -VM $p); - } + $imgRef = Get-DefaultCRPWindowsImageOffline; + $p = ($imgRef | Set-AzureRmVMSourceImage -VM $p); + } Assert-AreEqual $p.OSProfile.AdminUsername $user; Assert-AreEqual $p.OSProfile.ComputerName $computerName; Assert-AreEqual $p.OSProfile.AdminPassword $password; - if (-not $linux) - { - Assert-AreEqual $p.OSProfile.WindowsConfiguration.ProvisionVMAgent $true; - } + if (-not $linux) + { + Assert-AreEqual $p.OSProfile.WindowsConfiguration.ProvisionVMAgent $true; + } Assert-AreEqual $p.StorageProfile.ImageReference.Offer $imgRef.Offer; Assert-AreEqual $p.StorageProfile.ImageReference.Publisher $imgRef.PublisherName; @@ -358,7 +358,7 @@ function Create-AdvancedVM($rgname, $vmname, $loc, $vmsize, $stotype, $nicCount, Assert-AreEqual $p.StorageProfile.ImageReference.Version $imgRef.Version; # Virtual Machine - $p = Set-AzureRmVMBootDiagnostics -VM $p -Disable + $p = Set-AzureRmVMBootDiagnostics -VM $p -Disable New-AzureRmVM -ResourceGroupName $rgname -Location $loc -VM $p; $vm = Get-AzureRmVM -ResourceGroupName $rgname -VMName $vmname diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/AEMExtensionConstants.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/AEMExtensionConstants.cs index d0f9c2e096c2..ddd479ab9c9c 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/AEMExtensionConstants.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/AEMExtensionConstants.cs @@ -100,18 +100,5 @@ public static class AEMExtensionConstants } } }; - - //internal static string GetStorageAccountFromUri(string uri) - //{ - // var match = Regex.Match(new Uri(uri).Host, "(.*?)\\..*"); - // if (match.Success) - // { - // return match.Groups[1].Value; - // } - // else - // { - // throw new ArgumentException("Could not determine storage account for OS disk. Please contact support"); - // } - //} } } diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/AEMHelper.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/AEMHelper.cs index cfbae3f33d7f..f1d572f240e4 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/AEMHelper.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/AEMHelper.cs @@ -4,6 +4,7 @@ using Microsoft.Azure.Management.Storage; using Microsoft.Azure.Management.Storage.Models; using Microsoft.WindowsAzure.Commands.Sync.Download; +using Microsoft.WindowsAzure.Commands.Utilities.Common; using Microsoft.WindowsAzure.Storage; using Microsoft.WindowsAzure.Storage.Auth; using Microsoft.WindowsAzure.Storage.Blob; @@ -123,11 +124,6 @@ internal bool IsPremiumStorageAccount(string accountName) }); cloudBlob.FetchAttributes(); - //var key = this.GetAzureStorageKeyFromCache(accountName); - //var account = this.GetStorageAccountFromCache(accountName); - //var credentials = new StorageCredentials(account.Name.ToLower(), key); - //var client = new CloudBlobClient(account.PrimaryEndpoints.Blob, credentials); - //var cloudref = blobClient.GetBlobReferenceFromServer(sc.TransformUri(new Uri(sBlobUri))); return (int?)(cloudBlob.Properties.Length / (1024 * 1024 * 1024)); } catch (Exception) @@ -225,8 +221,6 @@ internal AzureSLA GetVMSLA(VirtualMachine virtualMachine) return result; } - - internal string GetAzureStorageKeyFromCache(string accountName) { if (_StorageKeyCache.ContainsKey(accountName)) @@ -246,15 +240,8 @@ internal string GetAzureStorageKeyFromCache(string accountName) internal string GetCoreEndpoint(string storageAccountName) { var storage = this.GetStorageAccountFromCache(storageAccountName); - //var tableendpoint = storage.PrimaryEndpoints.Table.Host; var blobendpoint = storage.PrimaryEndpoints.Blob.Host; - //var tableMatch = Regex.Match(tableendpoint, ".*?\\.table\\.(.*)"); - //if (tableMatch.Success) - //{ - // return tableMatch.Groups[1].Value; - //} - var blobMatch = Regex.Match(blobendpoint, ".*?\\.blob\\.(.*)"); if (blobMatch.Success) { @@ -556,8 +543,6 @@ internal bool CheckTableAndContent(string StorageAccountName, string TableName, if (account != null) { var endpoint = this.GetCoreEndpoint(StorageAccountName); - //var keys = this.GetAzureStorageKeyFromCache(StorageAccountName); - //var context = New - AzureStorageContext - StorageAccountName $StorageAccountName - StorageAccountKey $keys - Endpoint $endpoint var key = this.GetAzureStorageKeyFromCache(StorageAccountName); var credentials = new StorageCredentials(StorageAccountName, key); var cloudStorageAccount = new CloudStorageAccount(credentials, endpoint, true); @@ -597,7 +582,7 @@ internal bool CheckTableAndContent(string StorageAccountName, string TableName, } WriteHost(WaitChar, newLine: false); - Thread.Sleep(5000); + TestMockSupport.Delay(5000); if (UseNewTableNames) { try @@ -621,36 +606,6 @@ internal bool CheckTableAndContent(string StorageAccountName, string TableName, return tableExists; } - //internal bool WaitforTable(CloudTableClient tableClient, string tableName, string waitChar, DateTime checkStart, int timeout) - //{ - // int minRowCount = 3; - // var tableExists = false; - // var wait = true; - // var table = tableClient.GetTableReference(tableName); - // do - // { - // if (table.Exists()) - // { - // var schemaTableResult = table.ExecuteQuery(new - // TableQuery() { SelectColumns = new List() { AEMExtensionConstants.SchemasTablePhysicalTableName } }); - - // if (schemaTableResult.Count() >= minRowCount) - // { - // wait = false; - // tableExists = true; - // } - // } - // else - // { - // WriteHost(waitChar, newLine: false); - // Thread.Sleep(5000); - // wait = ((DateTime.Now) - checkStart).TotalMinutes < timeout; - // } - // } while (wait); - - // return tableExists; - //} - internal bool CheckDiagnosticsTable(string storageAccountName, string resId, string host, string waitChar, string osType, int TimeoutinMinutes = 15) { var tableExists = true; @@ -669,16 +624,6 @@ internal bool CheckDiagnosticsTable(string storageAccountName, string resId, str var checkStart = DateTime.Now; var searchTime = DateTime.UtcNow.AddMinutes(-5); - //if (!this.WaitforTable(tableClient, AEMExtensionConstants.SchemasTable, waitChar, checkStart, TimeoutinMinutes)) - //{ - // this.WriteVerbose("Table SchemaTable not found"); - // return false; - //} - - //var table = tableClient.GetTableReference(AEMExtensionConstants.SchemasTable); - //var schemaTableResult = table.ExecuteQuery(new TableQuery() { SelectColumns = new List() { AEMExtensionConstants.SchemasTablePhysicalTableName } }); - //tableExists = schemaTableResult.Count() > 0; - foreach (var tableName in AEMExtensionConstants.WADTablesV2[osType]) { var query = TableQuery.CombineFilters( @@ -704,7 +649,7 @@ internal bool CheckDiagnosticsTable(string storageAccountName, string resId, str else { WriteHost(waitChar, newLine: false); - Thread.Sleep(5000); + TestMockSupport.Delay(5000); } wait = ((DateTime.Now) - checkStart).TotalMinutes < TimeoutinMinutes; } diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/RemoveAzureRmVMAEMExtension.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/RemoveAzureRmVMAEMExtension.cs index 403ace346b79..414360bb4040 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/RemoveAzureRmVMAEMExtension.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/RemoveAzureRmVMAEMExtension.cs @@ -69,8 +69,7 @@ public override void ExecuteCmdlet() VirtualMachine virtualMachine = null; if (String.IsNullOrEmpty(this.OSType)) { - virtualMachine = ComputeClient.ComputeManagementClient.VirtualMachines.Get( - this.ResourceGroupName, this.VMName); + virtualMachine = ComputeClient.ComputeManagementClient.VirtualMachines.Get(this.ResourceGroupName, this.VMName); this.OSType = virtualMachine.StorageProfile.OsDisk.OsType; } if (String.IsNullOrEmpty(this.OSType)) @@ -84,14 +83,9 @@ public override void ExecuteCmdlet() { if (virtualMachine == null) { - virtualMachine = ComputeClient.ComputeManagementClient.VirtualMachines.Get( - this.ResourceGroupName, this.VMName); + virtualMachine = ComputeClient.ComputeManagementClient.VirtualMachines.Get(this.ResourceGroupName, this.VMName); } - var aemExtension = virtualMachine.Resources != null - ? virtualMachine.Resources.FirstOrDefault(extension => - extension.Publisher.Equals(AEMExtensionConstants.AEMExtensionPublisher[this.OSType], StringComparison.InvariantCultureIgnoreCase) && - extension.VirtualMachineExtensionType.Equals(AEMExtensionConstants.AEMExtensionType[this.OSType], StringComparison.InvariantCultureIgnoreCase)) - : null; + var aemExtension = this._Helper.GetExtension(virtualMachine, AEMExtensionConstants.AEMExtensionType[this.OSType], AEMExtensionConstants.AEMExtensionPublisher[this.OSType]); if (aemExtension == null) { @@ -104,11 +98,7 @@ public override void ExecuteCmdlet() } } - - var op = this.VirtualMachineExtensionClient.DeleteWithHttpMessagesAsync( - this.ResourceGroupName, - this.VMName, - this.Name).GetAwaiter().GetResult(); + var op = this.VirtualMachineExtensionClient.DeleteWithHttpMessagesAsync(this.ResourceGroupName, this.VMName, this.Name).GetAwaiter().GetResult(); var result = Mapper.Map(op); WriteObject(result); }); diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/SetAzureRmVMAEMExtension.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/SetAzureRmVMAEMExtension.cs index b91b37cfb68e..123ab91e6f3f 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/SetAzureRmVMAEMExtension.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/SetAzureRmVMAEMExtension.cs @@ -45,7 +45,7 @@ namespace Microsoft.Azure.Commands.Compute [OutputType(typeof(PSAzureOperationResponse))] public class SetAzureRmVMAEMExtension : VirtualMachineExtensionBaseCmdlet { - private AEMHelper _Helper = null; + private AEMHelper _Helper = null; [Parameter( Mandatory = true, @@ -93,16 +93,13 @@ public class SetAzureRmVMAEMExtension : VirtualMachineExtensionBaseCmdlet public SwitchParameter SkipStorage { get; set; } public SetAzureRmVMAEMExtension() - { + { } public override void ExecuteCmdlet() { this._Helper = new AEMHelper((err) => this.WriteError(err), (msg) => this.WriteVerbose(msg), (msg) => this.WriteWarning(msg), - this.CommandRuntime.Host.UI, - AzureSession.ClientFactory.CreateClient(DefaultProfile.Context, AzureEnvironment.Endpoint.ResourceManager), - this.DefaultContext.Subscription); - + this.CommandRuntime.Host.UI, AzureSession.ClientFactory.CreateClient(DefaultProfile.Context, AzureEnvironment.Endpoint.ResourceManager), this.DefaultContext.Subscription); base.ExecuteCmdlet(); @@ -122,7 +119,6 @@ public override void ExecuteCmdlet() var osdisk = selectedVM.StorageProfile.OsDisk; - if (String.IsNullOrEmpty(this.OSType)) { this.OSType = osdisk.OsType; @@ -177,7 +173,6 @@ public override void ExecuteCmdlet() sapmonPublicConfig.Add(new KeyValuePair() { Key = "vm.sla.iops", Value = vmSLA.IOPS }); } - // Get Disks var accounts = new Dictionary(StringComparer.InvariantCultureIgnoreCase); var accountName = this._Helper.GetStorageAccountFromUri(osdisk.Vhd.Uri); @@ -261,7 +256,6 @@ public override void ExecuteCmdlet() // Enable analytics on storage accounts this.SetStorageAnalytics(storage.Name); - } } @@ -329,11 +323,9 @@ public override void ExecuteCmdlet() ExtensionConfig jsonPublicConfig = new ExtensionConfig(); jsonPublicConfig.Config = sapmonPublicConfig; - //var publicConfString = JsonConvert.SerializeObject(jsonPublicConfig); ExtensionConfig jsonPrivateConfig = new ExtensionConfig(); jsonPrivateConfig.Config = sapmonPrivateConfig; - //var privateConfString = JsonConvert.SerializeObject(jsonPrivateConfig); this._Helper.WriteHost("[INFO] Updating Azure Enhanced Monitoring Extension for SAP configuration - Please wait..."); @@ -353,7 +345,7 @@ public override void ExecuteCmdlet() this._Helper.WriteHost("[INFO] Azure Enhanced Monitoring Extension for SAP configuration updated. It can take up to 15 Minutes for the monitoring data to appear in the SAP system."); this._Helper.WriteHost("[INFO] You can check the configuration of a virtual machine by calling the Test-VMConfigForSAP_GUI commandlet."); - + var result = Mapper.Map(op); WriteObject(result); }); @@ -362,11 +354,10 @@ public override void ExecuteCmdlet() private VirtualMachine SetAzureVMDiagnosticsExtensionC(VirtualMachine selectedVM, string storageAccountName, string storageAccountKey) { System.Xml.XmlDocument xpublicConfig = null; - //var xmlnsConfig = "http://schemas.microsoft.com/ServiceHosting/2010/10/DiagnosticsConfiguration"; var extensionName = AEMExtensionConstants.WADExtensionDefaultName[this.OSType]; - var extTemp = this._Helper.GetExtension(selectedVM, + var extTemp = this._Helper.GetExtension(selectedVM, AEMExtensionConstants.WADExtensionType[this.OSType], AEMExtensionConstants.WADExtensionPublisher[OSType]); object publicConf = null; if (extTemp != null) @@ -413,7 +404,7 @@ private VirtualMachine SetAzureVMDiagnosticsExtensionC(VirtualMachine selectedVM SelectSingleNode("WadCfg/DiagnosticMonitorConfiguration/PerformanceCounters/PerformanceCounterConfiguration[@counterSpecifier = '" + perfCounter.counterSpecifier + "']"); if (currentCounter == null) { - var node = xpublicConfig.CreateElement("PerformanceCounterConfiguration"); //, xmlnsConfig); + var node = xpublicConfig.CreateElement("PerformanceCounterConfiguration"); xpublicConfig.SelectSingleNode("WadCfg/DiagnosticMonitorConfiguration/PerformanceCounters").AppendChild(node); node.SetAttribute("counterSpecifier", perfCounter.counterSpecifier); node.SetAttribute("sampleRate", perfCounter.sampleRate); @@ -434,7 +425,6 @@ private VirtualMachine SetAzureVMDiagnosticsExtensionC(VirtualMachine selectedVM WriteVerbose("Installing WAD extension"); VirtualMachineExtension vmExtParameters = new VirtualMachineExtension(); - //vmExtParameters.Name = AEMExtensionConstants.WADExtensionDefaultName[this.OSType]; vmExtParameters.Publisher = AEMExtensionConstants.WADExtensionPublisher[this.OSType]; vmExtParameters.VirtualMachineExtensionType = AEMExtensionConstants.WADExtensionType[this.OSType]; vmExtParameters.TypeHandlerVersion = AEMExtensionConstants.WADExtensionVersion[this.OSType]; @@ -471,10 +461,6 @@ private void SetStorageAnalytics(string storageAccountName) { props.HourMetrics.RetentionDays = retentionDays; } - //if (props.Metrics != null && props.Metrics.RetentionDays != null) - //{ - // props.Metrics.RetentionDays = retentionDays; - //} var key = this._Helper.GetAzureStorageKeyFromCache(storageAccountName); var credentials = new StorageCredentials(storageAccountName, key); @@ -482,14 +468,5 @@ private void SetStorageAnalytics(string storageAccountName) cloudStorageAccount.CreateCloudBlobClient().SetServiceProperties(props); } - - - - - - - - - } } \ No newline at end of file From bdb8ff5f310c9532285870f9beb7f1ad03069ad9 Mon Sep 17 00:00:00 2001 From: Sebastian Max Dusch Date: Tue, 23 Feb 2016 19:58:45 +0100 Subject: [PATCH 7/7] add license header, remove unused usings --- .../ScenarioTests/AEMExtensionTests.cs | 21 +++++++++++++------ .../Extension/AEM/AEMExtensionConstants.cs | 20 +++++++++++++----- .../Extension/AEM/AEMHelper.cs | 19 +++++++++++++---- .../Extension/AEM/AEMStringExtensions.cs | 19 ++++++++++++----- .../Extension/AEM/AEMTestResult.cs | 19 +++++++++++++---- .../Extension/AEM/AzureSLA.cs | 18 +++++++++++----- .../Extension/AEM/ExtensionConfig.cs | 20 +++++++++++++----- .../Extension/AEM/KeyValuePair.cs | 21 +++++++++++++------ .../Extension/AEM/PerformanceCounter.cs | 18 +++++++++++----- .../AEM/RemoveAzureRmVMAEMExtension.cs | 17 +++++++++++++-- .../Extension/AEM/SetAzureRmVMAEMExtension.cs | 7 ------- .../AEM/TestAzureRmVMAEMExtension.cs | 18 +++++++++++++--- 12 files changed, 160 insertions(+), 57 deletions(-) diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/AEMExtensionTests.cs b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/AEMExtensionTests.cs index 981c8b0c7d0f..5b16aba94bbc 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/AEMExtensionTests.cs +++ b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/AEMExtensionTests.cs @@ -1,9 +1,18 @@ -using Microsoft.WindowsAzure.Commands.ScenarioTest; -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; +// ---------------------------------------------------------------------------------- +// +// 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 diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/AEMExtensionConstants.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/AEMExtensionConstants.cs index ddd479ab9c9c..d3755b4fbaff 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/AEMExtensionConstants.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/AEMExtensionConstants.cs @@ -1,10 +1,20 @@ -using Microsoft.Azure.Commands.Compute.Extension.AEM; +// ---------------------------------------------------------------------------------- +// +// 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.Extension.AEM; using System; using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Text.RegularExpressions; -using System.Threading.Tasks; namespace Microsoft.Azure.Commands.Compute { diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/AEMHelper.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/AEMHelper.cs index f1d572f240e4..df20895addd8 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/AEMHelper.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/AEMHelper.cs @@ -1,4 +1,18 @@ -using Microsoft.Azure.Commands.Common.Authentication.Models; +// ---------------------------------------------------------------------------------- +// +// 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.Common.Authentication.Models; using Microsoft.Azure.Commands.Compute.StorageServices; using Microsoft.Azure.Management.Compute.Models; using Microsoft.Azure.Management.Storage; @@ -17,10 +31,7 @@ using System.Linq; using System.Management.Automation; using System.Management.Automation.Host; -using System.Text; using System.Text.RegularExpressions; -using System.Threading; -using System.Threading.Tasks; namespace Microsoft.Azure.Commands.Compute.Extension.AEM { diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/AEMStringExtensions.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/AEMStringExtensions.cs index ec3e1104ea02..37743914ee7a 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/AEMStringExtensions.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/AEMStringExtensions.cs @@ -1,9 +1,18 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; +// ---------------------------------------------------------------------------------- +// +// 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.Text.RegularExpressions; -using System.Threading.Tasks; namespace Microsoft.Azure.Commands.Compute.Extension.AEM { diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/AEMTestResult.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/AEMTestResult.cs index 059838d8eb86..ad3aa6a1f4dc 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/AEMTestResult.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/AEMTestResult.cs @@ -1,9 +1,20 @@ -using System; +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; using System.Collections.Generic; using System.Diagnostics; -using System.Linq; -using System.Text; -using System.Threading.Tasks; namespace Microsoft.Azure.Commands.Compute.Extension.AEM { diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/AzureSLA.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/AzureSLA.cs index aad6486edf55..055a21e6d10c 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/AzureSLA.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/AzureSLA.cs @@ -1,8 +1,16 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; +// ---------------------------------------------------------------------------------- +// +// 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 { diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/ExtensionConfig.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/ExtensionConfig.cs index 6b6eab90a93d..ec58a90998f2 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/ExtensionConfig.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/ExtensionConfig.cs @@ -1,9 +1,19 @@ -using Newtonsoft.Json; -using System; +// ---------------------------------------------------------------------------------- +// +// 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 Newtonsoft.Json; using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; namespace Microsoft.Azure.Commands.Compute { diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/KeyValuePair.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/KeyValuePair.cs index ef9d3078e4bf..377e14f3820f 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/KeyValuePair.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/KeyValuePair.cs @@ -1,9 +1,18 @@ -using Newtonsoft.Json; -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; +// ---------------------------------------------------------------------------------- +// +// 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 Newtonsoft.Json; namespace Microsoft.Azure.Commands.Compute { diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/PerformanceCounter.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/PerformanceCounter.cs index 331613d6a109..8ffaef4198a3 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/PerformanceCounter.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/PerformanceCounter.cs @@ -1,8 +1,16 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; +// ---------------------------------------------------------------------------------- +// +// 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.Extension.AEM { diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/RemoveAzureRmVMAEMExtension.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/RemoveAzureRmVMAEMExtension.cs index 414360bb4040..695b17edfc40 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/RemoveAzureRmVMAEMExtension.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/RemoveAzureRmVMAEMExtension.cs @@ -1,10 +1,23 @@ -using AutoMapper; +// ---------------------------------------------------------------------------------- +// +// 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 AutoMapper; using Microsoft.Azure.Commands.Compute.Common; using Microsoft.Azure.Commands.Compute.Models; using Microsoft.Azure.Management.Compute.Models; using System; using System.Globalization; -using System.Linq; using System.Management.Automation; using Microsoft.Azure.Management.Compute; using Microsoft.Azure.Management.Storage; diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/SetAzureRmVMAEMExtension.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/SetAzureRmVMAEMExtension.cs index 123ab91e6f3f..5f56806ef259 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/SetAzureRmVMAEMExtension.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/SetAzureRmVMAEMExtension.cs @@ -19,17 +19,10 @@ using System.Linq; using System.Management.Automation; using System.Text; -using System.Threading.Tasks; using Microsoft.Azure.Management.Compute; using Microsoft.Azure.Management.Compute.Models; -using Microsoft.Azure.Management.Storage.Models; -using Newtonsoft.Json; using Microsoft.Azure.Management.Storage; -using System.Text.RegularExpressions; -using System.Net; -using Microsoft.WindowsAzure.Commands.Common.Storage; using Microsoft.WindowsAzure.Storage.Auth; -using Microsoft.WindowsAzure.Storage.Blob; using Microsoft.WindowsAzure.Storage; using Microsoft.WindowsAzure.Storage.Shared.Protocol; using Microsoft.Azure.Commands.Compute.Extension.AEM; diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/TestAzureRmVMAEMExtension.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/TestAzureRmVMAEMExtension.cs index cb4fe11bc5e7..b4ee1bbe285a 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/TestAzureRmVMAEMExtension.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/TestAzureRmVMAEMExtension.cs @@ -1,11 +1,23 @@ -using Microsoft.Azure.Commands.Compute.Common; -using Microsoft.Azure.Commands.Compute.Models; +// ---------------------------------------------------------------------------------- +// +// 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 System; using System.Collections.Generic; using System.Linq; using System.Management.Automation; using System.Text; -using System.Threading.Tasks; using Microsoft.Azure.Management.Compute; using Microsoft.Azure.Commands.Compute.Extension.AEM; using Newtonsoft.Json;